23 lines
1.2 KiB
Python
Executable File
23 lines
1.2 KiB
Python
Executable File
#! /usr/bin/env python
|
|
|
|
# set up parameters that we care about
|
|
PACKAGE = 'pcl_ros'
|
|
|
|
import roslib;
|
|
roslib.load_manifest (PACKAGE);
|
|
from dynamic_reconfigure.parameter_generator import *;
|
|
gen = ParameterGenerator ()
|
|
|
|
enum = gen.enum ([ gen.const("ANN", int_t, 0, "ANN"), gen.const("FLANN", int_t, 1, "FLANN"), gen.const("organized", int_t, 2, "Dense/organized data locator") ], "Set the spatial locator")
|
|
# def add (self, name, paramtype, level, description, default = None, min = None, max = None, edit_method = ""):
|
|
gen.add ("spatial_locator", int_t, 0, "Set the spatial locator", 0, 0, 2, enum)
|
|
gen.add ("search_radius", double_t, 0, "Sphere radius for nearest neighbor search", 0.02, 0.0, 0.5)
|
|
#gen.add ("k_search", int_t, 0, "Number of k-nearest neighbors to search for", 10, 0, 1000)
|
|
gen.add ("use_polynomial_fit", bool_t, 0, "Whether to use polynomial fit", True)
|
|
gen.add ("polynomial_order", int_t, 0, "Set the spatial locator", 2, 0, 5)
|
|
gen.add ("gaussian_parameter", double_t, 0, "How 'flat' should the neighbor weighting gaussian be (the smaller, the more local the fit)", 0.02, 0.0, 0.5)
|
|
#gen.add ("spatial_locator", str_t, 0, "Set the spatial locator", "ANN")
|
|
|
|
exit (gen.generate (PACKAGE, "pcl_ros", "MLS"))
|
|
|