Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update index.rst #24

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tricks to get it work properly are in the pre/post processing steps.
First steps
***********

LINE-MOD requires a mesh in order to train a model. You can either use the :ref:`ORK 3d capture <orkcapture:ork_capture>` or,
LINE-MOD requires a mesh (with its origin in the center of an object) in order to train a model. You can either use the :ref:`ORK 3d capture <orkcapture:ork_capture>` or,
if you already have a mesh around, just create your object:

.. code-block:: sh
Expand Down
6 changes: 3 additions & 3 deletions src/linemod_detect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ struct Detector: public object_recognition_core::db::bases::ModelReaderBase {
params.declare(&Detector::th_obj_dist_, "th_obj_dist", "Threshold on minimal distance between detected objects.", 0.04f);
params.declare(&Detector::verbose_, "verbose", "If True, print.", false);
params.declare(&Detector::depth_frame_id_, "depth_frame_id", "The depth camera frame id.", "camera_depth_optical_frame");
params.declare(&Detector::icp_dist_min_, "icp_dist_min", "", 0.06f);
params.declare(&Detector::px_match_min_, "px_match_min", "", 0.25f);
params.declare(&Detector::icp_dist_min_, "icp_dist_min", "The minimal accepted icp distance.", 0.06f);
params.declare(&Detector::px_match_min_, "px_match_min", "The minimal percentage of pixels with matching depth.", 0.25f);
}

static void
Expand Down Expand Up @@ -499,7 +499,7 @@ struct Detector: public object_recognition_core::db::bases::ModelReaderBase {
ecto::spore<std::string> depth_frame_id_;
/** The minimal accepted icp distance*/
ecto::spore<float> icp_dist_min_;
/** The minimal percetage of pixels with matching depth*/
/** The minimal percentage of pixels with matching depth*/
ecto::spore<float> px_match_min_;
/** The object recognition results */
ecto::spore<std::vector<PoseResult> > pose_results_;
Expand Down