2013-05-11 03:29:09 +09:00
|
|
|
#! /usr/bin/env python
|
|
|
|
|
|
2013-05-20 10:15:46 -06:00
|
|
|
PACKAGE='pcl_ros'
|
2013-05-11 03:29:09 +09:00
|
|
|
|
2013-05-20 10:15:46 -06:00
|
|
|
from dynamic_reconfigure.parameter_generator_catkin import *
|
|
|
|
|
|
|
|
|
|
gen = ParameterGenerator()
|
2013-05-11 03:29:09 +09:00
|
|
|
|
|
|
|
|
# def add (self, name, paramtype, level, description, default = None, min = None, max = None, edit_method = ""):
|
|
|
|
|
gen.add ("height_min", double_t, 0, "The minimum allowed distance to the plane model value a point will be considered from", 0.0, -10.0, 10.0)
|
|
|
|
|
gen.add ("height_max", double_t, 0, "The maximum allowed distance to the plane model value a point will be considered from", 0.5, -10.0, 10.0)
|
|
|
|
|
|
|
|
|
|
exit (gen.generate (PACKAGE, "pcl_ros", "ExtractPolygonalPrismData"))
|