forked from ros-industrial/industrial_calibration
-
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.
removed build of monoxcal, added dynamic reconfigure to grid finder, …
…fixed issues with opencv3 ros-industrial#89
- Loading branch information
1 parent
d35d389
commit f8182e2
Showing
9 changed files
with
388 additions
and
322 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env python | ||
PACKAGE = "industrial_extrinsic_cal" | ||
|
||
from dynamic_reconfigure.parameter_generator_catkin import * | ||
|
||
gen = ParameterGenerator() | ||
|
||
|
||
gen.add("filter_by_area", bool_t, 0, "filter blobs by their area", True) | ||
gen.add("filter_by_circularity", bool_t, 0, "filter blobs by their circularity", False) | ||
gen.add("min_area", int_t, 0, "Minimum area of a blob", 1, 25, 5000) | ||
gen.add("max_area", int_t, 0, "Maximum area of a blob", 1, 5000, 10000) | ||
gen.add("min_circularity", double_t, 0, "The min aspect ratio necessary to be a circlular blob", .1, .8, 3.402823e38) | ||
gen.add("max_circularity", double_t, 0, "The max aspect ratio necessary to be a circlular blob", .1, 3.402823e38, 3.402823e38) | ||
gen.add("min_threshold", int_t, 0, "The contrast minimum threshold to be a blob", 1, 50, 1000) | ||
gen.add("max_threshold", int_t, 0, "The contrast maximum threshold to be a blob", 1, 500, 1000) | ||
gen.add("min_distance", double_t, 0, "The min distance between blobs", 1.0, 5.0, 500) | ||
|
||
exit(gen.generate(PACKAGE, "industrial_extrinsic_cal_node", "circle_grid_finder")) |
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
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.