Skip to content

Modularizing Perception Stack for multiple ROS Packages #40

Modularizing Perception Stack for multiple ROS Packages

Modularizing Perception Stack for multiple ROS Packages #40

Triggered via pull request May 28, 2025 16:28
@conjeevaramconjeevaram
synchronize #7
perception
Status Success
Total duration 16s
Artifacts

linting_auto.yml

on: pull_request
Run C++/Python linters
7s
Run C++/Python linters
Fit to window
Zoom out
Zoom in

Annotations

6 errors
autonomy/samples/python/aggregator/setup.py#L1
+from setuptools import setup import os -from glob install_requires=['setuptools'], - zip_safe=True, - maintainer='eddyzhou, aryanafrouzi', - maintainer_email='e23zhou@watonomous.ca, aafrouzi@watonomous.ca', - description='Sample aggregator node for data collection', - license='Apache2.0', - tests_require=['pytest'], glob -from setuptools import setup +from glob install_requires = ['setuptools'], +zip_safe = True, +maintainer = 'eddyzhou, aryanafrouzi', +maintainer_email = 'e23zhou@watonomous.ca, aafrouzi@watonomous.ca', +description = 'Sample aggregator node for data collection', +license = 'Apache2.0', +tests_require = ['pytest'], glob package_name = 'aggregator'
src/perception/perception_launch/launch/perception.launch.py#L26
'config', 'params.yaml' ) - + # Load pose estimation parameters pose_param_file_path = os.path.join( get_package_share_directory('pose_estimation'),
src/perception/depth_estimation/depth_estimation/depth_estimation_core.py#L33
def serialize_data(self): return "x:" + str(self.__pos_x) + ";y:" + \ str(self.__pos_y) + ";z:" + str(self.__pos_z) + ";" - - -
src/perception/depth_estimation/depth_estimation/depth_estimation_node.py#L27
pass - def main(args=None): rclpy.init(args=args) return + if __name__ == '__main__': main()
src/perception/pose_estimation/pose_estimation/pose_estimation_node.py#L27
pass - def main(args=None): rclpy.init(args=args) return + if __name__ == '__main__': main()
src/perception/pose_estimation/pose_estimation/pose_estimation_core.py#L33
def serialize_data(self): return "x:" + str(self.__pos_x) + ";y:" + \ str(self.__pos_y) + ";z:" + str(self.__pos_z) + ";" - - -