Update multiple files#134
Merged
Merged
Conversation
Silence static type checker complaints by adding a '# type: ignore' comment when converting status.bbox to a tuple of floats. This does not change runtime behavior—only suppresses type errors for the bbox conversion.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request enhances the fall detection tracking system by adding more detailed information about detected falls, including bounding box coordinates and confidence scores. It also updates the way model engine files are referenced, improving platform compatibility.
Fall detection tracking improvements:
FallInfoclass now includesbbox(bounding box for the detected person) andconfidence(fall detection confidence score) attributes, providing more context for each fall event.bboxandconfidencevalues are now populated for eachFallInfoinstance.fallen_now_detailsfield, listing each fallen person with their name, bounding box, and confidence score for improved downstream processing or UI display. [1] [2]Model engine file handling:
run.pyhave been updated to use the correctenginesdirectory and to select the pose model based on platform, improving compatibility across different environments.