forked from AprilRobotics/apriltag_ros
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed parameters for existing april tag detection
- Loading branch information
Showing
3 changed files
with
18 additions
and
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
# AprilTag 3 code parameters | ||
# Find descriptions in apriltag/include/apriltag.h:struct apriltag_detector | ||
# apriltag/include/apriltag.h:struct apriltag_family | ||
tag_family: 'tag36h11' # options: tagStandard52h13, tagStandard41h12, tag36h11, tag25h9, tag16h5, tagCustom48h12, tagCircle21h7, tagCircle49h12 | ||
tag_threads: 2 # default: 2 | ||
tag_decimate: 1.0 # default: 1.0 | ||
tag_blur: 0.0 # default: 0.0 | ||
tag_refine_edges: 1 # default: 1 | ||
tag_debug: 0 # default: 0 | ||
max_hamming_dist: 2 # default: 2 (Tunable parameter with 2 being a good choice - values >=3 consume large amounts of memory. Choose the largest value possible.) | ||
# Other parameters | ||
publish_tf: true # default: false | ||
transport_hint: "raw" # default: raw, see http://wiki.ros.org/image_transport#Known_Transport_Packages for options | ||
tag_family: 'tag36h11' | ||
tag_border: 1 | ||
tag_threads: 2 | ||
tag_decimate: 1.0 | ||
tag_blur: 0.0 | ||
tag_refine_edges: 1 | ||
tag_refine_decode: 0 | ||
tag_refine_pose: 0 | ||
tag_debug: 0 | ||
publish_tf: true |
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,48 +1,10 @@ | ||
# # Definitions of tags to detect | ||
# | ||
# ## General remarks | ||
# | ||
# - All length in meters | ||
# - 'size' refers to the length of the shared border between solid black and solid white rectangle. | ||
# See README.md or https://github.com/AprilRobotics/apriltag/wiki/AprilTag-User-Guide#pose-estimation for details. | ||
# - Ellipsis (...) signifies that the previous element can be repeated multiple times. | ||
# | ||
# ## Standalone tag definitions | ||
# ### Remarks | ||
# | ||
# - name is optional | ||
# | ||
# ### Syntax | ||
# | ||
# standalone_tags: | ||
# [ | ||
# {id: ID, size: SIZE, name: NAME}, | ||
# ... | ||
# ] | ||
standalone_tags: | ||
[ | ||
{id: 0, size: 0.008, name: "tag0"}, | ||
{id: 1, size: 0.0065, name: "tag1"}, | ||
# {id: 2, size: 0.007, name: "tag2"}, | ||
] | ||
# ## Tag bundle definitions | ||
# ### Remarks | ||
# | ||
# - name is optional | ||
# - x, y, z have default values of 0 thus they are optional | ||
# - qw has default value of 1 and qx, qy, qz have default values of 0 thus they are optional | ||
# | ||
# ### Syntax | ||
# | ||
# tag_bundles: | ||
# [ | ||
# { | ||
# name: 'CUSTOM_BUNDLE_NAME', | ||
# layout: | ||
# [ | ||
# {id: ID, size: SIZE, x: X_POS, y: Y_POS, z: Z_POS, qw: QUAT_W_VAL, qx: QUAT_X_VAL, qy: QUAT_Y_VAL, qz: QUAT_Z_VAL}, | ||
# ... | ||
# ] | ||
# }, | ||
# ... | ||
# ] | ||
tag_bundles: | ||
[ | ||
|
||
] |
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