Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update README.md
  • Loading branch information
Myzhar authored Nov 9, 2018
commit ae2f13e5349f31a0ffef880e7e1dd7dd087d8b65
10 changes: 5 additions & 5 deletions examples/zed_ar_track_alvar_example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ To use the ZED wrapper with the `ar_track_alvar` node we need to correctly set t
- `camera_info` -> the name of the topic of camera parameters used to correctly localize the tag in the 3D world
- `output_frame` -> the name of the TF frame associated to the camera position

It is important that the `zed_wrapper` node and the `ar_track_alvar` node use the same values for the these three parameters to be able to correctly interface.
It is important that the `zed_wrapper` node and the `ar_track_alvar` node use the same values for these three parameters to be able to correctly communicate.

The values associated to the above parameters are the following:

Expand All @@ -63,12 +63,12 @@ It is also important to set the correct `marker_size` in centimeters. Better if
<arg name="marker_size" default="5.0" />

Other parameters that can be tuned:
* `max_new_marker_error` (double) -- A threshold determining when new markers can be detected under uncertainty
* `max_new_marker_error` -> A threshold determining when new markers can be detected under uncertainty
* `max_track_error` -> A threshold determining how much tracking error can be observed before an tag is considered to have disappeared

<arg name="max_new_marker_error" default="0.08" />

* `max_track_error` (double) -- A threshold determining how much tracking error can be observed before an tag is considered to have disappeared
Their values in the launch file:

<arg name="max_new_marker_error" default="0.08" />
<arg name="max_track_error" default="0.2" />

## Markers
Expand Down