-
Notifications
You must be signed in to change notification settings - Fork 7.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implemented CameraX and Data Binding in Object Detection App #341
Open
sayannath
wants to merge
10
commits into
tensorflow:master
Choose a base branch
from
sayannath:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
a008ebd
Implemented CameraX and Data Binding
sayannath 8bd41b9
Suggestions Implemented
sayannath 494cd5e
Incorporated the feedbacks, TODO: Writing the test
sayannath 30fa3b8
Merge branch 'tensorflow:master' into master
sayannath ccdbd90
Depricated Code Improved! TODO: To write the test
sayannath 7c18d5e
Merge branch 'master' of https://github.com/sayannath/examples
sayannath 1828a33
Feedback Round II TODO: Working on Test
sayannath fb09e0e
TODO: Refactoring the Test
sayannath d37ea72
Adding Test for Object Detection
sayannath 26e77b3
Merge branch 'tensorflow:master' into master
sayannath File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
8 changes: 4 additions & 4 deletions
8
lite/examples/object_detection/android/app/src/androidTest/assets/table_results.txt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
dining_table 27.492085 97.94615 623.1435 444.8627 0.48828125 | ||
knife 342.53433 243.71082 583.89185 416.34595 0.4765625 | ||
cup 68.025925 197.5857 202.02031 374.2206 0.4375 | ||
book 185.43098 139.64153 244.51149 203.37737 0.3125 | ||
knife 345.29675 242.38895 585.65424 415.0241 0.54 | ||
dining_table 24.836613 95.182755 620.488 447.6261 0.55 | ||
wine_glass 63.532368 202.38976 204.03336 387.60184 0.51 | ||
book 186.38379 138.98523 242.53781 205.76802 0.32 |
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't delete the test, but make it work. We need to test the change and make sure it works as intended.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check this example if it can help you:
https://android.googlesource.com/platform/frameworks/support/+/refs/heads/androidx-arch-core-release/camera/camera2/src/androidTest/java/androidx/camera/camera2/UseCaseCombinationTest.java
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, will add this asap!