You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In gelsight_groundtruth_gen.cpp (and likely soon in gelsight_depth_driver) there are macros declared for the expected detected ball size:
#define BALL_RADIUS_GUESS 45 // radius of detected ball. TODO: Make this a CL argument
#define BALL_RADIUS_GUESS_MARGIN (BALL_RADIUS_GUESS + 20) // margin of error on ball radius, for HoughCircle
#define SNAPSHOT_WIDTH (2*BALL_RADIUS_GUESS_MARGIN)`
These should be moved into A) command line arguments in groundtruth_gen and B) parameters automatically read from the groundtruth output by depth_driver
The text was updated successfully, but these errors were encountered:
In gelsight_groundtruth_gen.cpp (and likely soon in gelsight_depth_driver) there are macros declared for the expected detected ball size:
, and for the grid size of the lookup table:
These should be moved into A) command line arguments in
groundtruth_gen
and B) parameters automatically read from the groundtruth output bydepth_driver
The text was updated successfully, but these errors were encountered: