14 lines
271 B
Python
Executable File
14 lines
271 B
Python
Executable File
#! /usr/bin/env python
|
|
|
|
PACKAGE='pcl_ros'
|
|
|
|
from dynamic_reconfigure.parameter_generator_catkin import *
|
|
|
|
import SACSegmentation_common as common
|
|
|
|
gen = ParameterGenerator ()
|
|
common.add_common_parameters (gen)
|
|
|
|
exit (gen.generate (PACKAGE, "pcl_ros", "SACSegmentation"))
|
|
|