-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [WIP] FoodOnForkDetector class, dummy instantiation, and node are in place but untested * Tested dummy food on fork detector * Deleted mistakenly added fork handle masks * [WIP] added and tested train-test script * Added PointCloudTTestDetector and tested on offline data * Retrained with new dataset * Fix config file * Fix imports * Re-add wrongly removed masks * Retrained with new rosbag * Added filters, retrained with only the new rosbag * Have a great, working detector * Formatting, cleaning up code * Updated README * Added launchfile * Moved to forkTip frame and changed distance aggregator to 90th percentile * Fixes from in-person testing * Overlaid stored noFof points on camera image --------- Co-authored-by: Ethan K. Gordon <[email protected]>
- Loading branch information
1 parent
6fc8907
commit ff82cb6
Showing
15 changed files
with
2,937 additions
and
23 deletions.
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
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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# A message with the results of food on fork detection on a single frame. | ||
|
||
# The header for the image the detection corresponds to | ||
std_msgs/Header header | ||
|
||
# The status of the food-on-fork detector. | ||
int32 status | ||
int32 SUCCESS=1 | ||
int32 ERROR_TOO_FEW_POINTS=-1 | ||
int32 ERROR_NO_TRANSFORM=-2 | ||
int32 UNKNOWN_ERROR=-99 | ||
|
||
# A probability in [0,1] that indicates the likelihood that there is food on the | ||
# fork in the image. Only relevant if status == FoodOnForkDetection.SUCCESS | ||
float64 probability | ||
|
||
# Contains more details of the result, including any error messages that were encountered | ||
string message |
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
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
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.