Fixing catkin python imports

This commit is contained in:
Julius Kammerl 2013-05-20 09:22:00 -07:00 committed by Paul Bovbel
parent e6122e2b87
commit 3327eb6a20

View File

@ -3,11 +3,11 @@
# set up parameters that we care about # set up parameters that we care about
PACKAGE='pcl_ros' PACKAGE='pcl_ros'
import roslib; from dynamic_reconfigure.parameter_generator_catkin import *
roslib.load_manifest (PACKAGE);
from dynamic_reconfigure.parameter_generator import *;
gen = ParameterGenerator() gen = ParameterGenerator()
# enabling/disabling the unit limits # enabling/disabling the unit limits
# def add (self, name, paramtype, level, description, default = None, min = None, max = None, edit_method = ""): # def add (self, name, paramtype, level, description, default = None, min = None, max = None, edit_method = ""):
gen.add ("distance_threshold", double_t, 0, "The distance tolerance as a measure in the L2 Euclidean space between corresponding points.", 0.0, 0.0, 2.0) gen.add ("distance_threshold", double_t, 0, "The distance tolerance as a measure in the L2 Euclidean space between corresponding points.", 0.0, 0.0, 2.0)