Skip to content

Commit

Permalink
Set properly the parameters for TabletopTableDetector
Browse files Browse the repository at this point in the history
  • Loading branch information
corot committed May 4, 2015
1 parent 11d040f commit 1069768
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions thorp_obj_rec/config/tabletop/thorp.detection.object.ros.ork
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
#
# Parameters for the object recognition pipeline
#

source1:
type: RosKinect
module: 'object_recognition_ros.io'
#
# Example parameters to set (the default settings are using the ros topics starting with /camera/....)
#
parameters:
rgb_frame_id: senz3d_camera_rgb_optical_frame
rgb_image_topic: senz3d/rgb/image_color
Expand Down Expand Up @@ -36,12 +37,16 @@ pipeline1:
inputs: [source1]
outputs: [sink1]
parameters:
table_detector:
min_table_size: 4000
plane_threshold: 0.01
#clusterer:
# table_z_filter_max: 0.35
# table_z_filter_min: 0.025
# table detector
min_table_size: 5000
plane_threshold: 0.01
table_cluster_tolerance: 0.01
vertical_frame_id: '/map'
# clusterer
z_crop: 0.25 # The amount to keep in the z direction relative to the coordinate frame defined by the pose (def. 0.5)
z_min: 0.002 # The amount to crop above the plane, in meters (def. 0.0075)
cluster_distance: 0.01 # The maximum distance between a point and the cluster it belongs to (def. 0.02)
min_cluster_size: 300 # Min number of points for a cluster (def. 300)

pipeline2:
type: TabletopObjectDetector
Expand Down

0 comments on commit 1069768

Please sign in to comment.