greenhouse/pcl_ros/cfg/ExtractIndices.cfg

13 lines
436 B
INI
Raw Normal View History

#! /usr/bin/env python
# set up parameters that we care about
PACKAGE = 'pcl_ros'
2012-12-19 15:22:05 -08:00
from dynamic_reconfigure.parameter_generator_catkin import *;
gen = ParameterGenerator ()
# def add (self, name, paramtype, level, description, default = None, min = None, max = None, edit_method = ""):
gen.add ("negative", bool_t, 0, "Extract indices or the negative (all-indices)", False)
exit (gen.generate (PACKAGE, "pcl_ros", "ExtractIndices"))