diff --git a/Piper_ros_private-ros-noetic/src/piper/CMakeLists.txt b/Piper_ros_private-ros-noetic/src/piper/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9364d7707bf9bf23b08bd35192c5b39f9845c00 --- /dev/null +++ b/Piper_ros_private-ros-noetic/src/piper/CMakeLists.txt @@ -0,0 +1,220 @@ +cmake_minimum_required(VERSION 3.0.2) +project(piper) + +## Compile as C++11, supported in ROS Kinetic and newer +# add_compile_options(-std=c++11) + +## Find catkin macros and libraries +## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) +## is used, also find other catkin packages +find_package(catkin REQUIRED COMPONENTS + actionlib + actionlib_msgs + control_msgs + roscpp + rospy + sensor_msgs + std_msgs + trajectory_msgs + message_generation + geometry_msgs +) + +## System dependencies are found with CMake's conventions +# find_package(Boost REQUIRED COMPONENTS system) + + +## Uncomment this if the package has a setup.py. This macro ensures +## modules and global scripts declared therein get installed +## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html +# catkin_python_setup() + +################################################ +## Declare ROS messages, services and actions ## +################################################ + +## To declare and build messages, services or actions from within this +## package, follow these steps: +## * Let MSG_DEP_SET be the set of packages whose message types you use in +## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). +## * In the file package.xml: +## * add a build_depend tag for "message_generation" +## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET +## * If MSG_DEP_SET isn't empty the following dependency has been pulled in +## but can be declared for certainty nonetheless: +## * add a exec_depend tag for "message_runtime" +## * In this file (CMakeLists.txt): +## * add "message_generation" and every package in MSG_DEP_SET to +## find_package(catkin REQUIRED COMPONENTS ...) +## * add "message_runtime" and every package in MSG_DEP_SET to +## catkin_package(CATKIN_DEPENDS ...) +## * uncomment the add_*_files sections below as needed +## and list every .msg/.srv/.action file to be processed +## * uncomment the generate_messages entry below +## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) + +## Generate messages in the 'msg' folder +# add_message_files( +# FILES +# Message1.msg +# Message2.msg +# ) + +## Generate services in the 'srv' folder +# add_service_files( +# FILES +# Service1.srv +# Service2.srv +# ) + +## Generate actions in the 'action' folder +# add_action_files( +# FILES +# Action1.action +# Action2.action +# ) + +# add_message_files( +# FILES +# AgxArmStatusMsg.msg +# Joint.msg +# PosCmd.msg +# ) +## Generate added messages and services with any dependencies listed here +# generate_messages( +# DEPENDENCIES +# actionlib_msgs# control_msgs# sensor_msgs# +# std_msgs# trajectory_msgs +# ) + +################################################ +## Declare ROS dynamic reconfigure parameters ## +################################################ + +## To declare and build dynamic reconfigure parameters within this +## package, follow these steps: +## * In the file package.xml: +## * add a build_depend and a exec_depend tag for "dynamic_reconfigure" +## * In this file (CMakeLists.txt): +## * add "dynamic_reconfigure" to +## find_package(catkin REQUIRED COMPONENTS ...) +## * uncomment the "generate_dynamic_reconfigure_options" section below +## and list every .cfg file to be processed + +## Generate dynamic reconfigure parameters in the 'cfg' folder +# generate_dynamic_reconfigure_options( +# cfg/DynReconf1.cfg +# cfg/DynReconf2.cfg +# ) + +################################### +## catkin specific configuration ## +################################### +## The catkin_package macro generates cmake config files for your package +## Declare things to be passed to dependent projects +## INCLUDE_DIRS: uncomment this if your package contains header files +## LIBRARIES: libraries you create in this project that dependent projects also need +## CATKIN_DEPENDS: catkin_packages dependent projects also need +## DEPENDS: system dependencies of this project that dependent projects also need +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES piper + CATKIN_DEPENDS actionlib actionlib_msgs control_msgs roscpp rospy sensor_msgs std_msgs trajectory_msgs message_generation geometry_msgs +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +include_directories( +include + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/piper.cpp +# ) + +## Add cmake target dependencies of the library +## as an example, code may need to be generated before libraries +## either from message generation or dynamic reconfigure +# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +## With catkin_make all packages are built within a single CMake context +## The recommended prefix ensures that target names across packages don't collide +# add_executable(${PROJECT_NAME}_node src/piper_node.cpp) + +## Rename C++ executable without prefix +## The above recommended prefix causes long target names, the following renames the +## target back to the shorter version for ease of user use +## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" +# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(${PROJECT_NAME}_node +# ${catkin_LIBRARIES} +# ) + +############# +## Install ## +############# + +# all install targets should use catkin DESTINATION variables +# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html + +## Mark executable scripts (Python etc.) for installation +## in contrast to setup.py, you can choose the destination +# catkin_install_python(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html +# install(TARGETS ${PROJECT_NAME}_node +# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark libraries for installation +## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html +# install(TARGETS ${PROJECT_NAME} +# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} +# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +# ) + +## Mark cpp header files for installation +# install(DIRECTORY include/${PROJECT_NAME}/ +# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} +# FILES_MATCHING PATTERN "*.h" +# PATTERN ".svn" EXCLUDE +# ) + +## Mark other files for installation (e.g. launch and bag files, etc.) +# install(FILES +# # myfile1 +# # myfile2 +# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +# ) + +############# +## Testing ## +############# + +## Add gtest based cpp test target and link libraries +# catkin_add_gtest(${PROJECT_NAME}-test test/test_piper.cpp) +# if(TARGET ${PROJECT_NAME}-test) +# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) +# endif() + +## Add folders to be run by python nosetests +# catkin_add_nosetests(test) diff --git a/Piper_ros_private-ros-noetic/src/piper/launch/start_ms_piper.launch b/Piper_ros_private-ros-noetic/src/piper/launch/start_ms_piper.launch new file mode 100644 index 0000000000000000000000000000000000000000..bd29b33c773c2534fd3ec1c5569ba5024380836c --- /dev/null +++ b/Piper_ros_private-ros-noetic/src/piper/launch/start_ms_piper.launch @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Piper_ros_private-ros-noetic/src/piper/package.xml b/Piper_ros_private-ros-noetic/src/piper/package.xml new file mode 100644 index 0000000000000000000000000000000000000000..0eb8d8d7efa179165e7159c9c93aa47ade4ef545 --- /dev/null +++ b/Piper_ros_private-ros-noetic/src/piper/package.xml @@ -0,0 +1,92 @@ + + + piper + 0.0.0 + The piper package + + + + + agilex + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + actionlib + actionlib_msgs + control_msgs + roscpp + rospy + sensor_msgs + std_msgs + trajectory_msgs + actionlib + actionlib_msgs + control_msgs + roscpp + rospy + sensor_msgs + std_msgs + trajectory_msgs + actionlib + actionlib_msgs + control_msgs + roscpp + rospy + sensor_msgs + std_msgs + trajectory_msgs + + message_generation + message_runtime + + message_generation + message_runtime + + geometry_msgs + geometry_msgs + geometry_msgs + + + + + + + diff --git a/Piper_ros_private-ros-noetic/src/piper/scripts/__pycache__/piper_control.cpython-39.pyc b/Piper_ros_private-ros-noetic/src/piper/scripts/__pycache__/piper_control.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..036b37f6aafbcadd89c22b7b2be9a979147c3df3 Binary files /dev/null and b/Piper_ros_private-ros-noetic/src/piper/scripts/__pycache__/piper_control.cpython-39.pyc differ diff --git a/Piper_ros_private-ros-noetic/src/piper/scripts/piper_read_master_node.py b/Piper_ros_private-ros-noetic/src/piper/scripts/piper_read_master_node.py new file mode 100644 index 0000000000000000000000000000000000000000..776c27b2f3c0f1cae942c31beefe9cae34722f12 --- /dev/null +++ b/Piper_ros_private-ros-noetic/src/piper/scripts/piper_read_master_node.py @@ -0,0 +1,73 @@ +#!/usr/bin/env python3 +# -*-coding:utf8-*- +# 本文件为读取主臂发送的消息,当机械臂设置为主臂,主臂只发送关节角消息和控制指令 +from typing import ( + Optional, +) +from piper_sdk import * + +import rospy +import rosnode +from sensor_msgs.msg import JointState +from std_msgs.msg import Bool + +def check_ros_master(): + try: + rosnode.rosnode_ping('rosout', max_count=1, verbose=False) + rospy.loginfo("ROS Master is running.") + except rosnode.ROSNodeIOException: + rospy.logerr("ROS Master is not running.") + raise RuntimeError("ROS Master is not running.") + +class C_PiperRosNode(): + """机械臂ros节点 + """ + def __init__(self) -> None: + check_ros_master() + rospy.init_node('piper_read_master_node', anonymous=True) + + self.can_port = "can0" + if rospy.has_param('~can_port'): + self.can_port = rospy.get_param("~can_port") + rospy.loginfo("%s is %s", rospy.resolve_name('~can_port'), self.can_port) + else: + rospy.loginfo("未找到can_port参数,请输入 _can_port:=can0 类似的格式") + exit(0) + + self.joint_std_pub_master = rospy.Publisher('/master/joint_states', JointState, queue_size=1) + + self.joint_state_master = JointState() + self.joint_state_master.name = ['joint0', 'joint1', 'joint2', 'joint3', 'joint4', 'joint5', 'joint6'] + self.joint_state_master.position = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0] + self.joint_state_master.velocity = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0] + self.joint_state_master.effort = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0] + + self.piper = C_PiperInterface(can_name=self.can_port) + self.piper.ConnectPort() + + def Pubilsh(self): + """机械臂消息发布 + """ + rate = rospy.Rate(200) # 200 Hz + while not rospy.is_shutdown(): + self.joint_state_master.header.stamp = rospy.Time.now() + # Here, you can set the joint positions to any value you want + joint_0 = self.piper.GetArmJointCtrl().joint_ctrl.joint_1/1000 * 0.017444 + joint_1 = self.piper.GetArmJointCtrl().joint_ctrl.joint_2/1000 * 0.017444 + joint_2 = self.piper.GetArmJointCtrl().joint_ctrl.joint_3/1000 * 0.017444 + joint_3 = self.piper.GetArmJointCtrl().joint_ctrl.joint_4/1000 * 0.017444 + joint_4 = self.piper.GetArmJointCtrl().joint_ctrl.joint_5/1000 * 0.017444 + joint_5 = self.piper.GetArmJointCtrl().joint_ctrl.joint_6/1000 * 0.017444 + joint_6 = self.piper.GetArmGripperCtrl().gripper_ctrl.grippers_angle/1000000 + self.joint_state_master.position = [joint_0,joint_1, joint_2, joint_3, joint_4, joint_5,joint_6] # Example values + + self.joint_std_pub_master.publish(self.joint_state_master) + rate.sleep() + +if __name__ == '__main__': + try: + piper_all = C_PiperRosNode() + piper_all.Pubilsh() + except rospy.ROSInterruptException: + pass + diff --git a/Piper_ros_private-ros-noetic/src/piper_description/launch/display_xacro.launch b/Piper_ros_private-ros-noetic/src/piper_description/launch/display_xacro.launch new file mode 100644 index 0000000000000000000000000000000000000000..346024ad554582bdbf1d069c018c8e6b3f3c07ed --- /dev/null +++ b/Piper_ros_private-ros-noetic/src/piper_description/launch/display_xacro.launch @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/Piper_ros_private-ros-noetic/src/piper_description/launch/piper_world.launch b/Piper_ros_private-ros-noetic/src/piper_description/launch/piper_world.launch new file mode 100644 index 0000000000000000000000000000000000000000..7d1b88d74a4303dd4305b299333a44736fc72dd3 --- /dev/null +++ b/Piper_ros_private-ros-noetic/src/piper_description/launch/piper_world.launch @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/build.make b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..f2f4fceda662eddace3a9a47b2d674f4d311533b --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/agilex/cobot_magic/camera_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/agilex/cobot_magic/camera_ws/build + +# Utility rule file for _astra_camera_generate_messages_check_deps_Extrinsics. + +# Include the progress variables for this target. +include ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/progress.make + +ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics: + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && ../catkin_generated/env_cached.sh /home/agilex/miniconda3/envs/aloha/bin/python3 /opt/ros/noetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py astra_camera /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/msg/Extrinsics.msg std_msgs/Header + +_astra_camera_generate_messages_check_deps_Extrinsics: ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics +_astra_camera_generate_messages_check_deps_Extrinsics: ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/build.make + +.PHONY : _astra_camera_generate_messages_check_deps_Extrinsics + +# Rule to build all files generated by this target. +ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/build: _astra_camera_generate_messages_check_deps_Extrinsics + +.PHONY : ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/build + +ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/clean: + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && $(CMAKE_COMMAND) -P CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/cmake_clean.cmake +.PHONY : ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/clean + +ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/depend: + cd /home/agilex/cobot_magic/camera_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/agilex/cobot_magic/camera_ws/src /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/depend + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/cmake_clean.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..097164b64d382f5b92b3d6bb2c0e482bf45e2dd9 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/progress.make b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_Extrinsics.dir/progress.make @@ -0,0 +1 @@ + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetBool.dir/DependInfo.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetBool.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetBool.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetBool.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetBool.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetBool.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetBool.dir/depend.make b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetBool.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetBool.dir/depend.make @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetCameraParams.dir/DependInfo.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetCameraParams.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetCameraParams.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetInt32.dir/DependInfo.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetInt32.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetInt32.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetInt32.dir/cmake_clean.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetInt32.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3cd218b27dbd516d861405f89fd7fe125c5cb612 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetInt32.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/_astra_camera_generate_messages_check_deps_GetInt32" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/_astra_camera_generate_messages_check_deps_GetInt32.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetInt32.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetInt32.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/_astra_camera_generate_messages_check_deps_GetInt32.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_eus.dir/cmake_clean.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..6bdc0a3cf1ea562d9d65c0093bc62b9cd84c2180 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/actionlib_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_eus.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_eus.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_eus.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_eus.dir/progress.make b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_lisp.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_lisp.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_lisp.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_lisp.dir/progress.make b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/build.make b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..2851874a1bd5bf8ffa1237dd15c1e9a5ffada9f2 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/agilex/cobot_magic/camera_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/agilex/cobot_magic/camera_ws/build + +# Utility rule file for actionlib_generate_messages_py. + +# Include the progress variables for this target. +include ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/progress.make + +actionlib_generate_messages_py: ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/build.make + +.PHONY : actionlib_generate_messages_py + +# Rule to build all files generated by this target. +ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/build: actionlib_generate_messages_py + +.PHONY : ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/build + +ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/clean: + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && $(CMAKE_COMMAND) -P CMakeFiles/actionlib_generate_messages_py.dir/cmake_clean.cmake +.PHONY : ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/clean + +ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/depend: + cd /home/agilex/cobot_magic/camera_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/agilex/cobot_magic/camera_ws/src /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/depend + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/depend.make b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_generate_messages_py.dir/depend.make @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_msgs_generate_messages_eus.dir/DependInfo.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_msgs_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_msgs_generate_messages_eus.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/depend.make b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/depend.make @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/build.make b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..1b3b9af84562beb9e72bcbe810a221a5498a4a3a --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/build.make @@ -0,0 +1,100 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/agilex/cobot_magic/camera_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/agilex/cobot_magic/camera_ws/build + +# Utility rule file for astra_camera_gencfg. + +# Include the progress variables for this target. +include ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/progress.make + +ros_astra_camera/CMakeFiles/astra_camera_gencfg: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/AstraConfig.h +ros_astra_camera/CMakeFiles/astra_camera_gencfg: /home/agilex/cobot_magic/camera_ws/devel/lib/python3/dist-packages/astra_camera/cfg/AstraConfig.py + + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/AstraConfig.h: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/cfg/Astra.cfg +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/AstraConfig.h: /opt/ros/noetic/share/dynamic_reconfigure/templates/ConfigType.py.template +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/AstraConfig.h: /opt/ros/noetic/share/dynamic_reconfigure/templates/ConfigType.h.template + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/agilex/cobot_magic/camera_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating dynamic reconfigure files from cfg/Astra.cfg: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/AstraConfig.h /home/agilex/cobot_magic/camera_ws/devel/lib/python3/dist-packages/astra_camera/cfg/AstraConfig.py" + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && ../catkin_generated/env_cached.sh /home/agilex/miniconda3/envs/aloha/bin/python3 /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/cfg/Astra.cfg /opt/ros/noetic/share/dynamic_reconfigure/cmake/.. /home/agilex/cobot_magic/camera_ws/devel/share/astra_camera /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera /home/agilex/cobot_magic/camera_ws/devel/lib/python3/dist-packages/astra_camera + +/home/agilex/cobot_magic/camera_ws/devel/share/astra_camera/docs/AstraConfig.dox: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/AstraConfig.h + @$(CMAKE_COMMAND) -E touch_nocreate /home/agilex/cobot_magic/camera_ws/devel/share/astra_camera/docs/AstraConfig.dox + +/home/agilex/cobot_magic/camera_ws/devel/share/astra_camera/docs/AstraConfig-usage.dox: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/AstraConfig.h + @$(CMAKE_COMMAND) -E touch_nocreate /home/agilex/cobot_magic/camera_ws/devel/share/astra_camera/docs/AstraConfig-usage.dox + +/home/agilex/cobot_magic/camera_ws/devel/lib/python3/dist-packages/astra_camera/cfg/AstraConfig.py: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/AstraConfig.h + @$(CMAKE_COMMAND) -E touch_nocreate /home/agilex/cobot_magic/camera_ws/devel/lib/python3/dist-packages/astra_camera/cfg/AstraConfig.py + +/home/agilex/cobot_magic/camera_ws/devel/share/astra_camera/docs/AstraConfig.wikidoc: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/AstraConfig.h + @$(CMAKE_COMMAND) -E touch_nocreate /home/agilex/cobot_magic/camera_ws/devel/share/astra_camera/docs/AstraConfig.wikidoc + +astra_camera_gencfg: ros_astra_camera/CMakeFiles/astra_camera_gencfg +astra_camera_gencfg: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/AstraConfig.h +astra_camera_gencfg: /home/agilex/cobot_magic/camera_ws/devel/share/astra_camera/docs/AstraConfig.dox +astra_camera_gencfg: /home/agilex/cobot_magic/camera_ws/devel/share/astra_camera/docs/AstraConfig-usage.dox +astra_camera_gencfg: /home/agilex/cobot_magic/camera_ws/devel/lib/python3/dist-packages/astra_camera/cfg/AstraConfig.py +astra_camera_gencfg: /home/agilex/cobot_magic/camera_ws/devel/share/astra_camera/docs/AstraConfig.wikidoc +astra_camera_gencfg: ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/build.make + +.PHONY : astra_camera_gencfg + +# Rule to build all files generated by this target. +ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/build: astra_camera_gencfg + +.PHONY : ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/build + +ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/clean: + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && $(CMAKE_COMMAND) -P CMakeFiles/astra_camera_gencfg.dir/cmake_clean.cmake +.PHONY : ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/clean + +ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/depend: + cd /home/agilex/cobot_magic/camera_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/agilex/cobot_magic/camera_ws/src /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/depend + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/depend.make b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/depend.make @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/progress.make b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..d61796b1938e81e1e78b8660e1f6f5dc2a318000 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_gencfg.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 10 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/CXX.includecache b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/CXX.includecache new file mode 100644 index 0000000000000000000000000000000000000000..7544bf0b18b8c5dec125e1d617c2b98d5cd61975 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/CXX.includecache @@ -0,0 +1,4358 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/AstraConfig.h +dynamic_reconfigure/config_tools.h +- +limits +- +ros/node_handle.h +- +dynamic_reconfigure/ConfigDescription.h +- +dynamic_reconfigure/ParamDescription.h +- +dynamic_reconfigure/Group.h +- +dynamic_reconfigure/config_init_mutex.h +- +boost/any.hpp +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/DeviceInfo.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +std_msgs/Header.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/Extrinsics.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +std_msgs/Header.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetBool.h +ros/service_traits.h +- +astra_camera/GetBoolRequest.h +- +astra_camera/GetBoolResponse.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetBoolRequest.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetBoolResponse.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraInfo.h +ros/service_traits.h +- +astra_camera/GetCameraInfoRequest.h +- +astra_camera/GetCameraInfoResponse.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraInfoRequest.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraInfoResponse.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +sensor_msgs/CameraInfo.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraParams.h +ros/service_traits.h +- +astra_camera/GetCameraParamsRequest.h +- +astra_camera/GetCameraParamsResponse.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraParamsRequest.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraParamsResponse.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDeviceInfo.h +ros/service_traits.h +- +astra_camera/GetDeviceInfoRequest.h +- +astra_camera/GetDeviceInfoResponse.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDeviceInfoRequest.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDeviceInfoResponse.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +astra_camera/DeviceInfo.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDouble.h +ros/service_traits.h +- +astra_camera/GetDoubleRequest.h +- +astra_camera/GetDoubleResponse.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDoubleRequest.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDoubleResponse.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetInt32.h +ros/service_traits.h +- +astra_camera/GetInt32Request.h +- +astra_camera/GetInt32Response.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetInt32Request.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetInt32Response.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetString.h +ros/service_traits.h +- +astra_camera/GetStringRequest.h +- +astra_camera/GetStringResponse.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetStringRequest.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetStringResponse.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/Metadata.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +std_msgs/Header.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetInt32.h +ros/service_traits.h +- +astra_camera/SetInt32Request.h +- +astra_camera/SetInt32Response.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetInt32Request.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetInt32Response.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetString.h +ros/service_traits.h +- +astra_camera/SetStringRequest.h +- +astra_camera/SetStringResponse.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetStringRequest.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetStringResponse.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/constants.h +cstdlib +- +string +- + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/d2c_viewer.h +ros/ros.h +- +message_filters/subscriber.h +- +message_filters/sync_policies/approximate_time.h +- +message_filters/synchronizer.h +- +message_filters/time_synchronizer.h +- +types.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/types.h +utils.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/utils.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/json.hpp +algorithm +- +cstddef +- +functional +- +initializer_list +- +iosfwd +- +iterator +- +memory +- +numeric +- +string +- +utility +- +vector +- +utility +- +algorithm +- +array +- +forward_list +- +iterator +- +map +- +string +- +tuple +- +type_traits +- +unordered_map +- +utility +- +valarray +- +cstddef +- +exception +- +stdexcept +- +string +- +vector +- +array +- +cstddef +- +cstdint +- +string +- +utility +- +type_traits +- +stdint.h +- +stdint.h +- +version +- +cstdlib +- +cassert +- +compare +- +cstddef +- +cstddef +- +type_traits +- +utility +- +limits +- +type_traits +- +utility +- +tuple +- +iterator +- +cstdint +- +map +- +memory +- +string +- +vector +- +cstring +- +string +- +utility +- +experimental/filesystem +- +filesystem +- +algorithm +- +iterator +- +string +- +tuple +- +type_traits +- +utility +- +valarray +- +vector +- +cstddef +- +iterator +- +string +- +tuple +- +utility +- +ranges +- +cstdint +- +tuple +- +utility +- +cstdint +- +cstddef +- +functional +- +algorithm +- +array +- +cmath +- +cstddef +- +cstdint +- +cstdio +- +cstring +- +iterator +- +limits +- +string +- +utility +- +vector +- +map +- +array +- +cstddef +- +cstring +- +iterator +- +memory +- +numeric +- +string +- +type_traits +- +utility +- +cstdio +- +istream +- +cstddef +- +string +- +utility +- +vector +- +array +- +clocale +- +cstddef +- +cstdio +- +cstdlib +- +initializer_list +- +string +- +utility +- +vector +- +cstdint +- +utility +- +string +- +cmath +- +cstdint +- +functional +- +string +- +utility +- +vector +- +cstddef +- +limits +- +iterator +- +type_traits +- +cstddef +- +iterator +- +utility +- +algorithm +- +cctype +- +cerrno +- +cstdlib +- +iosfwd +- +limits +- +numeric +- +string +- +utility +- +vector +- +initializer_list +- +utility +- +algorithm +- +array +- +map +- +cmath +- +cstdint +- +cstring +- +limits +- +string +- +utility +- +vector +- +algorithm +- +cstddef +- +iterator +- +memory +- +string +- +vector +- +ios +- +ostream +- +algorithm +- +array +- +clocale +- +cmath +- +cstddef +- +cstdint +- +cstdio +- +limits +- +string +- +iomanip +- +type_traits +- +utility +- +array +- +cmath +- +cstdint +- +cstring +- +limits +- +type_traits +- +functional +- +initializer_list +- +iterator +- +memory +- +stdexcept +- +type_traits +- +utility +- +vector +- +any +- +string_view +- + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/ob_camera_node.h +astra_camera/AstraConfig.h +- +camera_info_manager/camera_info_manager.h +- +cv_bridge/cv_bridge.h +- +dynamic_reconfigure/server.h +- +image_transport/image_transport.h +- +openni2/OpenNI.h +- +openni2/PS1080.h +- +ros/ros.h +- +sensor_msgs/CameraInfo.h +- +sensor_msgs/PointCloud2.h +- +sensor_msgs/distortion_models.h +- +sensor_msgs/point_cloud2_iterator.h +- +tf2/LinearMath/Quaternion.h +- +tf2/LinearMath/Transform.h +- +tf2/LinearMath/Vector3.h +- +tf2_ros/static_transform_broadcaster.h +- +tf2_ros/transform_broadcaster.h +- +boost/optional.hpp +- +condition_variable +- +mutex +- +opencv2/opencv.hpp +- +thread +- +constants.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/constants.h +d2c_viewer.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/d2c_viewer.h +point_cloud_proc/point_cloud_proc.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/point_cloud_proc.h +types.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/types.h +utils.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/utils.h +uvc_camera_driver.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/uvc_camera_driver.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/ob_camera_node_factory.h +dynamic_reconfigure/server.h +- +openni2/OpenNI.h +- +pthread.h +- +ros/ros.h +- +semaphore.h +- +sys/shm.h +- +sys/types.h +- +sys/wait.h +- +atomic +- +cerrno +- +thread +- +ob_camera_node.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/ob_camera_node.h +ob_context.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/ob_context.h +std_msgs/Empty.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/std_msgs/Empty.h +uvc_camera_driver.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/uvc_camera_driver.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/ob_context.h +openni2/OpenNI.h +- +ros/ros.h +- +mutex +- + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/depth_conversions.h +image_geometry/pinhole_camera_model.h +- +sensor_msgs/Image.h +- +sensor_msgs/point_cloud2_iterator.h +- +limits +- +depth_traits.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/depth_traits.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/depth_traits.h +algorithm +- +cmath +- +cstdint +- +limits +- +vector +- + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/point_cloud_proc.h +point_cloud_xyz.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/point_cloud_xyz.h +point_cloud_xyzrgb.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/point_cloud_xyzrgb.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/point_cloud_xyz.h +cv_bridge/cv_bridge.h +- +image_geometry/pinhole_camera_model.h +- +image_transport/image_transport.h +- +image_transport/subscriber_filter.h +- +message_filters/subscriber.h +- +message_filters/sync_policies/approximate_time.h +- +message_filters/sync_policies/exact_time.h +- +message_filters/synchronizer.h +- +nodelet/nodelet.h +- +ros/ros.h +- +sensor_msgs/PointCloud2.h +- +sensor_msgs/image_encodings.h +- +sensor_msgs/point_cloud2_iterator.h +- +opencv2/imgproc/imgproc.hpp +- +depth_conversions.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/depth_conversions.h +depth_traits.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/depth_traits.h +astra_camera/utils.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/astra_camera/utils.h +astra_camera/types.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/astra_camera/types.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/point_cloud_xyzrgb.h +cv_bridge/cv_bridge.h +- +image_geometry/pinhole_camera_model.h +- +image_transport/image_transport.h +- +image_transport/subscriber_filter.h +- +message_filters/subscriber.h +- +message_filters/sync_policies/approximate_time.h +- +message_filters/sync_policies/exact_time.h +- +message_filters/synchronizer.h +- +nodelet/nodelet.h +- +ros/ros.h +- +sensor_msgs/PointCloud2.h +- +sensor_msgs/image_encodings.h +- +sensor_msgs/point_cloud2_iterator.h +- +opencv2/imgproc/imgproc.hpp +- +depth_traits.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/depth_traits.h +astra_camera/utils.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/astra_camera/utils.h +astra_camera/types.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/astra_camera/types.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/types.h +glog/logging.h +- +openni2/OpenNI.h +- +sensor_msgs/Image.h +- +sensor_msgs/image_encodings.h +- +boost/version.hpp +- +mutex +- +atomic +- +cstdlib +- +chrono +- +ctime +- +boost/filesystem.hpp +- +astra_camera/DeviceInfo.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/astra_camera/DeviceInfo.h +astra_camera/Extrinsics.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/astra_camera/Extrinsics.h +astra_camera/GetBool.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/astra_camera/GetBool.h +astra_camera/GetCameraInfo.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/astra_camera/GetCameraInfo.h +astra_camera/GetDeviceInfo.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/astra_camera/GetDeviceInfo.h +astra_camera/GetDouble.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/astra_camera/GetDouble.h +astra_camera/GetInt32.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/astra_camera/GetInt32.h +astra_camera/GetString.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/astra_camera/GetString.h +astra_camera/Metadata.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/astra_camera/Metadata.h +astra_camera/SetInt32.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/astra_camera/SetInt32.h +std_srvs/SetBool.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/std_srvs/SetBool.h +std_srvs/Empty.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/std_srvs/Empty.h +astra_camera/SetString.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/astra_camera/SetString.h +astra_camera/GetCameraParams.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/astra_camera/GetCameraParams.h +std_msgs/Empty.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/std_msgs/Empty.h +json.hpp +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/json.hpp + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/utils.h +glog/logging.h +- +openni2/OpenNI.h +- +ros/ros.h +- +sensor_msgs/CameraInfo.h +- +sensor_msgs/Image.h +- +tf2/LinearMath/Quaternion.h +- +eigen3/Eigen/Dense +- +functional +- +sensor_msgs/distortion_models.h +- +sensor_msgs/PointCloud2.h +- +astra_camera/Extrinsics.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/astra_camera/Extrinsics.h +constants.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/constants.h +types.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/types.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/uvc_camera_driver.h +camera_info_manager/camera_info_manager.h +- +image_transport/image_transport.h +- +libuvc/libuvc.h +- +openni2/OpenNI.h +- +sensor_msgs/CameraInfo.h +- +boost/optional.hpp +- +constants.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/constants.h +types.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/types.h +utils.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/utils.h +rga/RgaApi.h +- +rockchip/mpp_buffer.h +- +rockchip/mpp_err.h +- +rockchip/mpp_frame.h +- +rockchip/mpp_log.h +- +rockchip/mpp_packet.h +- +rockchip/mpp_rc_defs.h +- +rockchip/mpp_task.h +- +rockchip/rk_mpi.h +- + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Android-Arm/OniPlatformAndroid-Arm.h +../Linux-x86/OniPlatformLinux-x86.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Linux-x86/OniPlatformLinux-x86.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Linux-Arm/OniPlatformLinux-Arm.h +../Linux-x86/OniPlatformLinux-x86.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Linux-x86/OniPlatformLinux-x86.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Linux-x86/OniPlatformLinux-x86.h +unistd.h +- +stdlib.h +- +stdio.h +- +string.h +- +assert.h +- +limits.h +- +stdint.h +- + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/MacOSX/OniPlatformMacOSX.h +../Linux-x86/OniPlatformLinux-x86.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Linux-x86/OniPlatformLinux-x86.h +sys/time.h +- +TargetConditionals.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/MacOSX/TargetConditionals.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCAPI.h +OniPlatform.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniPlatform.h +OniCTypes.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCTypes.h +OniCProperties.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCProperties.h +OniVersion.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniVersion.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCEnums.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCProperties.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCTypes.h +OniPlatform.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniPlatform.h +OniCEnums.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCEnums.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniEnums.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniPlatform.h +Win32/OniPlatformWin32.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Win32/OniPlatformWin32.h +Android-Arm/OniPlatformAndroid-Arm.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Android-Arm/OniPlatformAndroid-Arm.h +Linux-x86/OniPlatformLinux-x86.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Linux-x86/OniPlatformLinux-x86.h +Linux-Arm/OniPlatformLinux-Arm.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Linux-Arm/OniPlatformLinux-Arm.h +ARC/OniPlaformARC.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/ARC/OniPlaformARC.h +MacOSX/OniPlatformMacOSX.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/MacOSX/OniPlatformMacOSX.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniProperties.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniVersion.h +OniPlatform.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniPlatform.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OpenNI.h +OniPlatform.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniPlatform.h +OniProperties.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniProperties.h +OniEnums.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniEnums.h +OniCAPI.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCAPI.h +OniCProperties.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCProperties.h +OniCTypes.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCTypes.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/PS1080.h +OniCTypes.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCTypes.h + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Win32/OniPlatformWin32.h +windows.h +- +stdlib.h +- +stdio.h +- +malloc.h +- +io.h +- +time.h +- +assert.h +- +float.h +- +crtdbg.h +- +stdint.h +- + +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/src/main.cpp +ros/ros.h +- +astra_camera/ob_camera_node_factory.h +/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/src/astra_camera/ob_camera_node_factory.h + +/opt/ros/noetic/include/camera_info_manager/camera_info_manager.h +ros/ros.h +- +boost/thread/mutex.hpp +- +sensor_msgs/CameraInfo.h +- +sensor_msgs/SetCameraInfo.h +- +ros/macros.h +- + +/opt/ros/noetic/include/cv_bridge/cv_bridge.h +sensor_msgs/Image.h +- +sensor_msgs/CompressedImage.h +- +sensor_msgs/image_encodings.h +- +ros/static_assert.h +- +opencv2/core/core.hpp +- +opencv2/imgproc/imgproc.hpp +- +opencv2/imgproc/types_c.h +- +stdexcept +- + +/opt/ros/noetic/include/dynamic_reconfigure/BoolParameter.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/Config.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +dynamic_reconfigure/BoolParameter.h +- +dynamic_reconfigure/IntParameter.h +- +dynamic_reconfigure/StrParameter.h +- +dynamic_reconfigure/DoubleParameter.h +- +dynamic_reconfigure/GroupState.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/ConfigDescription.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +dynamic_reconfigure/Group.h +- +dynamic_reconfigure/Config.h +- +dynamic_reconfigure/Config.h +- +dynamic_reconfigure/Config.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/DoubleParameter.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/Group.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +dynamic_reconfigure/ParamDescription.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/GroupState.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/IntParameter.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/ParamDescription.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/Reconfigure.h +ros/service_traits.h +- +dynamic_reconfigure/ReconfigureRequest.h +- +dynamic_reconfigure/ReconfigureResponse.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/ReconfigureRequest.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +dynamic_reconfigure/Config.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/ReconfigureResponse.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +dynamic_reconfigure/Config.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/StrParameter.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/config_init_mutex.h +boost/thread/mutex.hpp +- +ros/macros.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/config_tools.h +string +- +vector +- +dynamic_reconfigure/Config.h +- +dynamic_reconfigure/Group.h +- + +/opt/ros/noetic/include/dynamic_reconfigure/server.h +boost/function.hpp +- +boost/thread/recursive_mutex.hpp +- +ros/node_handle.h +- +dynamic_reconfigure/ConfigDescription.h +- +dynamic_reconfigure/Reconfigure.h +- + +/opt/ros/noetic/include/geometry_msgs/Quaternion.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/geometry_msgs/Transform.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +geometry_msgs/Vector3.h +- +geometry_msgs/Quaternion.h +- + +/opt/ros/noetic/include/geometry_msgs/TransformStamped.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +std_msgs/Header.h +- +geometry_msgs/Transform.h +- + +/opt/ros/noetic/include/geometry_msgs/Vector3.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/image_geometry/pinhole_camera_model.h +sensor_msgs/CameraInfo.h +- +opencv2/core/mat.hpp +- +opencv2/imgproc/imgproc.hpp +- +stdexcept +- +string +- +math.h +- +exports.h +/opt/ros/noetic/include/image_geometry/exports.h + +/opt/ros/noetic/include/image_transport/camera_publisher.h +ros/ros.h +- +sensor_msgs/Image.h +- +sensor_msgs/CameraInfo.h +- +image_transport/single_subscriber_publisher.h +/opt/ros/noetic/include/image_transport/image_transport/single_subscriber_publisher.h +exports.h +/opt/ros/noetic/include/image_transport/exports.h + +/opt/ros/noetic/include/image_transport/camera_subscriber.h +ros/ros.h +- +sensor_msgs/CameraInfo.h +- +sensor_msgs/Image.h +- +image_transport/transport_hints.h +/opt/ros/noetic/include/image_transport/image_transport/transport_hints.h +exports.h +/opt/ros/noetic/include/image_transport/exports.h + +/opt/ros/noetic/include/image_transport/exception.h +stdexcept +- + +/opt/ros/noetic/include/image_transport/exports.h +ros/macros.h +- + +/opt/ros/noetic/include/image_transport/image_transport.h +image_transport/publisher.h +/opt/ros/noetic/include/image_transport/image_transport/publisher.h +image_transport/subscriber.h +/opt/ros/noetic/include/image_transport/image_transport/subscriber.h +image_transport/camera_publisher.h +/opt/ros/noetic/include/image_transport/image_transport/camera_publisher.h +image_transport/camera_subscriber.h +/opt/ros/noetic/include/image_transport/image_transport/camera_subscriber.h +exports.h +/opt/ros/noetic/include/image_transport/exports.h + +/opt/ros/noetic/include/image_transport/loader_fwds.h + +/opt/ros/noetic/include/image_transport/publisher.h +ros/ros.h +- +sensor_msgs/Image.h +- +image_transport/single_subscriber_publisher.h +/opt/ros/noetic/include/image_transport/image_transport/single_subscriber_publisher.h +image_transport/exception.h +/opt/ros/noetic/include/image_transport/image_transport/exception.h +image_transport/loader_fwds.h +/opt/ros/noetic/include/image_transport/image_transport/loader_fwds.h +exports.h +/opt/ros/noetic/include/image_transport/exports.h + +/opt/ros/noetic/include/image_transport/single_subscriber_publisher.h +boost/noncopyable.hpp +- +boost/function.hpp +- +sensor_msgs/Image.h +- +exports.h +/opt/ros/noetic/include/image_transport/exports.h + +/opt/ros/noetic/include/image_transport/subscriber.h +ros/ros.h +- +sensor_msgs/Image.h +- +image_transport/transport_hints.h +/opt/ros/noetic/include/image_transport/image_transport/transport_hints.h +image_transport/exception.h +/opt/ros/noetic/include/image_transport/image_transport/exception.h +image_transport/loader_fwds.h +/opt/ros/noetic/include/image_transport/image_transport/loader_fwds.h +exports.h +/opt/ros/noetic/include/image_transport/exports.h + +/opt/ros/noetic/include/image_transport/subscriber_filter.h +ros/ros.h +- +message_filters/simple_filter.h +- +image_transport/image_transport.h +/opt/ros/noetic/include/image_transport/image_transport/image_transport.h + +/opt/ros/noetic/include/image_transport/transport_hints.h +ros/ros.h +- + +/opt/ros/noetic/include/message_filters/connection.h +boost/function.hpp +- +boost/signals2/connection.hpp +- +macros.h +/opt/ros/noetic/include/message_filters/macros.h + +/opt/ros/noetic/include/message_filters/macros.h +ros/macros.h +- + +/opt/ros/noetic/include/message_filters/null_types.h +connection.h +/opt/ros/noetic/include/message_filters/connection.h +boost/shared_ptr.hpp +- +ros/time.h +- +ros/message_traits.h +- + +/opt/ros/noetic/include/message_filters/signal1.h +boost/noncopyable.hpp +- +connection.h +/opt/ros/noetic/include/message_filters/connection.h +ros/message_event.h +- +ros/parameter_adapter.h +- +boost/bind.hpp +- +boost/thread/mutex.hpp +- + +/opt/ros/noetic/include/message_filters/signal9.h +boost/noncopyable.hpp +- +connection.h +/opt/ros/noetic/include/message_filters/connection.h +null_types.h +/opt/ros/noetic/include/message_filters/null_types.h +ros/message_event.h +- +ros/parameter_adapter.h +- +boost/bind.hpp +- +boost/thread/mutex.hpp +- + +/opt/ros/noetic/include/message_filters/simple_filter.h +boost/noncopyable.hpp +- +connection.h +/opt/ros/noetic/include/message_filters/connection.h +signal1.h +/opt/ros/noetic/include/message_filters/signal1.h +ros/message_event.h +- +ros/subscription_callback_helper.h +- +boost/bind.hpp +- +string +- + +/opt/ros/noetic/include/message_filters/subscriber.h +ros/ros.h +- +boost/thread/mutex.hpp +- +connection.h +/opt/ros/noetic/include/message_filters/connection.h +simple_filter.h +/opt/ros/noetic/include/message_filters/simple_filter.h + +/opt/ros/noetic/include/message_filters/sync_policies/approximate_time.h +message_filters/synchronizer.h +/opt/ros/noetic/include/message_filters/sync_policies/message_filters/synchronizer.h +message_filters/connection.h +/opt/ros/noetic/include/message_filters/sync_policies/message_filters/connection.h +message_filters/null_types.h +/opt/ros/noetic/include/message_filters/sync_policies/message_filters/null_types.h +message_filters/signal9.h +/opt/ros/noetic/include/message_filters/sync_policies/message_filters/signal9.h +boost/tuple/tuple.hpp +- +boost/shared_ptr.hpp +- +boost/function.hpp +- +boost/thread/mutex.hpp +- +boost/bind.hpp +- +boost/type_traits/is_same.hpp +- +boost/noncopyable.hpp +- +boost/mpl/or.hpp +- +boost/mpl/at.hpp +- +boost/mpl/vector.hpp +- +ros/assert.h +- +ros/message_traits.h +- +ros/message_event.h +- +deque +- +vector +- +string +- + +/opt/ros/noetic/include/message_filters/sync_policies/exact_time.h +message_filters/synchronizer.h +/opt/ros/noetic/include/message_filters/sync_policies/message_filters/synchronizer.h +message_filters/connection.h +/opt/ros/noetic/include/message_filters/sync_policies/message_filters/connection.h +message_filters/null_types.h +/opt/ros/noetic/include/message_filters/sync_policies/message_filters/null_types.h +message_filters/signal9.h +/opt/ros/noetic/include/message_filters/sync_policies/message_filters/signal9.h +boost/tuple/tuple.hpp +- +boost/shared_ptr.hpp +- +boost/function.hpp +- +boost/thread/mutex.hpp +- +boost/bind.hpp +- +boost/type_traits/is_same.hpp +- +boost/noncopyable.hpp +- +boost/mpl/or.hpp +- +boost/mpl/at.hpp +- +boost/mpl/vector.hpp +- +ros/assert.h +- +ros/message_traits.h +- +ros/message_event.h +- +deque +- +vector +- +string +- + +/opt/ros/noetic/include/message_filters/synchronizer.h +boost/tuple/tuple.hpp +- +boost/shared_ptr.hpp +- +boost/function.hpp +- +boost/thread/mutex.hpp +- +boost/bind.hpp +- +boost/type_traits/is_same.hpp +- +boost/noncopyable.hpp +- +boost/mpl/or.hpp +- +boost/mpl/at.hpp +- +boost/mpl/vector.hpp +- +boost/function_types/function_arity.hpp +- +boost/function_types/is_nonmember_callable_builtin.hpp +- +connection.h +/opt/ros/noetic/include/message_filters/connection.h +null_types.h +/opt/ros/noetic/include/message_filters/null_types.h +signal9.h +/opt/ros/noetic/include/message_filters/signal9.h +ros/message_traits.h +- +ros/message_event.h +- +deque +- +vector +- +string +- + +/opt/ros/noetic/include/message_filters/time_synchronizer.h +synchronizer.h +/opt/ros/noetic/include/message_filters/synchronizer.h +sync_policies/exact_time.h +/opt/ros/noetic/include/message_filters/sync_policies/exact_time.h +boost/shared_ptr.hpp +- +ros/message_event.h +- + +/opt/ros/noetic/include/nodelet/exception.h +stdexcept +- + +/opt/ros/noetic/include/nodelet/nodelet.h +nodeletdecl.h +/opt/ros/noetic/include/nodelet/nodeletdecl.h +exception.h +/opt/ros/noetic/include/nodelet/exception.h +string +- +vector +- +map +- +ros/console.h +- +boost/shared_ptr.hpp +- + +/opt/ros/noetic/include/nodelet/nodeletdecl.h +ros/macros.h +- + +/opt/ros/noetic/include/ros/advertise_options.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +ros/message_traits.h +/opt/ros/noetic/include/ros/ros/message_traits.h +common.h +/opt/ros/noetic/include/ros/common.h + +/opt/ros/noetic/include/ros/advertise_service_options.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +ros/service_callback_helper.h +/opt/ros/noetic/include/ros/ros/service_callback_helper.h +ros/service_traits.h +/opt/ros/noetic/include/ros/ros/service_traits.h +ros/message_traits.h +/opt/ros/noetic/include/ros/ros/message_traits.h +common.h +/opt/ros/noetic/include/ros/common.h + +/opt/ros/noetic/include/ros/assert.h +ros/console.h +/opt/ros/noetic/include/ros/ros/console.h +ros/static_assert.h +/opt/ros/noetic/include/ros/ros/static_assert.h +ros/platform.h +- +stdlib.h +- + +/opt/ros/noetic/include/ros/builtin_message_traits.h +message_traits.h +/opt/ros/noetic/include/ros/message_traits.h +ros/time.h +/opt/ros/noetic/include/ros/ros/time.h + +/opt/ros/noetic/include/ros/common.h +stdint.h +- +assert.h +- +stddef.h +- +string +- +ros/assert.h +/opt/ros/noetic/include/ros/ros/assert.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +ros/serialized_message.h +/opt/ros/noetic/include/ros/ros/serialized_message.h +boost/shared_array.hpp +- +ros/macros.h +- + +/opt/ros/noetic/include/ros/console.h +console_backend.h +/opt/ros/noetic/include/ros/console_backend.h +cstdio +- +sstream +- +ros/time.h +- +cstdarg +- +ros/macros.h +- +map +- +vector +- +log4cxx/level.h +/opt/ros/noetic/include/ros/log4cxx/level.h +rosconsole/macros_generated.h +/opt/ros/noetic/include/ros/rosconsole/macros_generated.h + +/opt/ros/noetic/include/ros/console_backend.h +ros/macros.h +- + +/opt/ros/noetic/include/ros/datatypes.h +string +- +vector +- +map +- +set +- +list +- +boost/shared_ptr.hpp +- + +/opt/ros/noetic/include/ros/duration.h +iostream +- +math.h +- +stdexcept +- +climits +- +stdint.h +- +rostime_decl.h +/opt/ros/noetic/include/ros/rostime_decl.h + +/opt/ros/noetic/include/ros/exception.h +stdexcept +- + +/opt/ros/noetic/include/ros/exceptions.h +ros/exception.h +- + +/opt/ros/noetic/include/ros/forwards.h +string +- +vector +- +map +- +set +- +list +- +boost/shared_ptr.hpp +- +boost/make_shared.hpp +- +boost/weak_ptr.hpp +- +boost/function.hpp +- +ros/time.h +- +ros/macros.h +- +exceptions.h +/opt/ros/noetic/include/ros/exceptions.h +ros/datatypes.h +/opt/ros/noetic/include/ros/ros/datatypes.h + +/opt/ros/noetic/include/ros/init.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +ros/spinner.h +/opt/ros/noetic/include/ros/ros/spinner.h +common.h +/opt/ros/noetic/include/ros/common.h + +/opt/ros/noetic/include/ros/macros.h + +/opt/ros/noetic/include/ros/master.h +forwards.h +/opt/ros/noetic/include/ros/forwards.h +xmlrpcpp/XmlRpcValue.h +/opt/ros/noetic/include/ros/xmlrpcpp/XmlRpcValue.h +common.h +/opt/ros/noetic/include/ros/common.h + +/opt/ros/noetic/include/ros/message.h +ros/macros.h +/opt/ros/noetic/include/ros/ros/macros.h +ros/assert.h +/opt/ros/noetic/include/ros/ros/assert.h +string +- +string.h +- +boost/shared_ptr.hpp +- +boost/array.hpp +- +stdint.h +- + +/opt/ros/noetic/include/ros/message_event.h +ros/time.h +/opt/ros/noetic/include/ros/ros/time.h +ros/datatypes.h +- +ros/message_traits.h +- +boost/type_traits/is_void.hpp +- +boost/type_traits/is_base_of.hpp +- +boost/type_traits/is_const.hpp +- +boost/type_traits/add_const.hpp +- +boost/type_traits/remove_const.hpp +- +boost/utility/enable_if.hpp +- +boost/function.hpp +- +boost/make_shared.hpp +- + +/opt/ros/noetic/include/ros/message_forward.h +cstddef +- +memory +- + +/opt/ros/noetic/include/ros/message_operations.h +ostream +- + +/opt/ros/noetic/include/ros/message_traits.h +message_forward.h +/opt/ros/noetic/include/ros/message_forward.h +ros/time.h +- +string +- +boost/utility/enable_if.hpp +- +boost/type_traits/remove_const.hpp +- +boost/type_traits/remove_reference.hpp +- + +/opt/ros/noetic/include/ros/names.h +forwards.h +/opt/ros/noetic/include/ros/forwards.h +common.h +/opt/ros/noetic/include/ros/common.h + +/opt/ros/noetic/include/ros/node_handle.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +ros/publisher.h +/opt/ros/noetic/include/ros/ros/publisher.h +ros/subscriber.h +/opt/ros/noetic/include/ros/ros/subscriber.h +ros/service_server.h +/opt/ros/noetic/include/ros/ros/service_server.h +ros/service_client.h +/opt/ros/noetic/include/ros/ros/service_client.h +ros/timer.h +/opt/ros/noetic/include/ros/ros/timer.h +ros/rate.h +/opt/ros/noetic/include/ros/ros/rate.h +ros/wall_timer.h +/opt/ros/noetic/include/ros/ros/wall_timer.h +ros/steady_timer.h +/opt/ros/noetic/include/ros/ros/steady_timer.h +ros/advertise_options.h +/opt/ros/noetic/include/ros/ros/advertise_options.h +ros/advertise_service_options.h +/opt/ros/noetic/include/ros/ros/advertise_service_options.h +ros/subscribe_options.h +/opt/ros/noetic/include/ros/ros/subscribe_options.h +ros/service_client_options.h +/opt/ros/noetic/include/ros/ros/service_client_options.h +ros/timer_options.h +/opt/ros/noetic/include/ros/ros/timer_options.h +ros/wall_timer_options.h +/opt/ros/noetic/include/ros/ros/wall_timer_options.h +ros/spinner.h +/opt/ros/noetic/include/ros/ros/spinner.h +ros/init.h +/opt/ros/noetic/include/ros/ros/init.h +common.h +/opt/ros/noetic/include/ros/common.h +boost/bind.hpp +- +xmlrpcpp/XmlRpcValue.h +- + +/opt/ros/noetic/include/ros/param.h +forwards.h +/opt/ros/noetic/include/ros/forwards.h +common.h +/opt/ros/noetic/include/ros/common.h +xmlrpcpp/XmlRpcValue.h +/opt/ros/noetic/include/ros/xmlrpcpp/XmlRpcValue.h +vector +- +map +- + +/opt/ros/noetic/include/ros/parameter_adapter.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +ros/message_event.h +/opt/ros/noetic/include/ros/ros/message_event.h +ros/static_assert.h +- +boost/type_traits/add_const.hpp +- +boost/type_traits/remove_const.hpp +- +boost/type_traits/remove_reference.hpp +- + +/opt/ros/noetic/include/ros/platform.h +stdlib.h +- +string +- + +/opt/ros/noetic/include/ros/publisher.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +ros/common.h +/opt/ros/noetic/include/ros/ros/common.h +ros/message.h +/opt/ros/noetic/include/ros/ros/message.h +ros/serialization.h +/opt/ros/noetic/include/ros/ros/serialization.h +boost/bind.hpp +- +boost/thread/mutex.hpp +- + +/opt/ros/noetic/include/ros/rate.h +ros/time.h +/opt/ros/noetic/include/ros/ros/time.h +rostime_decl.h +/opt/ros/noetic/include/ros/rostime_decl.h + +/opt/ros/noetic/include/ros/ros.h +ros/time.h +/opt/ros/noetic/include/ros/ros/time.h +ros/rate.h +/opt/ros/noetic/include/ros/ros/rate.h +ros/console.h +/opt/ros/noetic/include/ros/ros/console.h +ros/assert.h +/opt/ros/noetic/include/ros/ros/assert.h +ros/common.h +/opt/ros/noetic/include/ros/ros/common.h +ros/types.h +/opt/ros/noetic/include/ros/ros/types.h +ros/node_handle.h +/opt/ros/noetic/include/ros/ros/node_handle.h +ros/publisher.h +/opt/ros/noetic/include/ros/ros/publisher.h +ros/single_subscriber_publisher.h +/opt/ros/noetic/include/ros/ros/single_subscriber_publisher.h +ros/service_server.h +/opt/ros/noetic/include/ros/ros/service_server.h +ros/subscriber.h +/opt/ros/noetic/include/ros/ros/subscriber.h +ros/service.h +/opt/ros/noetic/include/ros/ros/service.h +ros/init.h +/opt/ros/noetic/include/ros/ros/init.h +ros/master.h +/opt/ros/noetic/include/ros/ros/master.h +ros/this_node.h +/opt/ros/noetic/include/ros/ros/this_node.h +ros/param.h +/opt/ros/noetic/include/ros/ros/param.h +ros/topic.h +/opt/ros/noetic/include/ros/ros/topic.h +ros/names.h +/opt/ros/noetic/include/ros/ros/names.h + +/opt/ros/noetic/include/ros/roscpp_serialization_macros.h +ros/macros.h +- + +/opt/ros/noetic/include/ros/rostime_decl.h +ros/macros.h +- + +/opt/ros/noetic/include/ros/serialization.h +roscpp_serialization_macros.h +/opt/ros/noetic/include/ros/roscpp_serialization_macros.h +ros/types.h +- +ros/time.h +- +serialized_message.h +/opt/ros/noetic/include/ros/serialized_message.h +ros/message_traits.h +/opt/ros/noetic/include/ros/ros/message_traits.h +ros/builtin_message_traits.h +/opt/ros/noetic/include/ros/ros/builtin_message_traits.h +ros/exception.h +/opt/ros/noetic/include/ros/ros/exception.h +ros/datatypes.h +/opt/ros/noetic/include/ros/ros/datatypes.h +vector +- +map +- +memory +- +boost/array.hpp +- +boost/call_traits.hpp +- +boost/utility/enable_if.hpp +- +boost/mpl/and.hpp +- +boost/mpl/or.hpp +- +boost/mpl/not.hpp +- +cstring +- + +/opt/ros/noetic/include/ros/serialized_message.h +roscpp_serialization_macros.h +/opt/ros/noetic/include/ros/roscpp_serialization_macros.h +boost/shared_array.hpp +- +boost/shared_ptr.hpp +- + +/opt/ros/noetic/include/ros/service.h +string +- +ros/common.h +/opt/ros/noetic/include/ros/ros/common.h +ros/message.h +/opt/ros/noetic/include/ros/ros/message.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +ros/node_handle.h +/opt/ros/noetic/include/ros/ros/node_handle.h +ros/service_traits.h +/opt/ros/noetic/include/ros/ros/service_traits.h +ros/names.h +/opt/ros/noetic/include/ros/ros/names.h +boost/shared_ptr.hpp +- + +/opt/ros/noetic/include/ros/service_callback_helper.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +ros/common.h +/opt/ros/noetic/include/ros/ros/common.h +ros/message.h +/opt/ros/noetic/include/ros/ros/message.h +ros/message_traits.h +/opt/ros/noetic/include/ros/ros/message_traits.h +ros/service_traits.h +/opt/ros/noetic/include/ros/ros/service_traits.h +ros/serialization.h +/opt/ros/noetic/include/ros/ros/serialization.h +boost/type_traits/is_base_of.hpp +- +boost/utility/enable_if.hpp +- + +/opt/ros/noetic/include/ros/service_client.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +ros/common.h +/opt/ros/noetic/include/ros/ros/common.h +ros/service_traits.h +/opt/ros/noetic/include/ros/ros/service_traits.h +ros/serialization.h +/opt/ros/noetic/include/ros/ros/serialization.h + +/opt/ros/noetic/include/ros/service_client_options.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +common.h +/opt/ros/noetic/include/ros/common.h +ros/service_traits.h +/opt/ros/noetic/include/ros/ros/service_traits.h + +/opt/ros/noetic/include/ros/service_server.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +common.h +/opt/ros/noetic/include/ros/common.h + +/opt/ros/noetic/include/ros/service_traits.h +boost/type_traits/remove_reference.hpp +- +boost/type_traits/remove_const.hpp +- + +/opt/ros/noetic/include/ros/single_subscriber_publisher.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +ros/serialization.h +/opt/ros/noetic/include/ros/ros/serialization.h +common.h +/opt/ros/noetic/include/ros/common.h +boost/utility.hpp +- + +/opt/ros/noetic/include/ros/spinner.h +ros/types.h +/opt/ros/noetic/include/ros/ros/types.h +common.h +/opt/ros/noetic/include/ros/common.h +boost/shared_ptr.hpp +- + +/opt/ros/noetic/include/ros/static_assert.h +boost/static_assert.hpp +- + +/opt/ros/noetic/include/ros/steady_timer.h +common.h +/opt/ros/noetic/include/ros/common.h +forwards.h +/opt/ros/noetic/include/ros/forwards.h +steady_timer_options.h +/opt/ros/noetic/include/ros/steady_timer_options.h + +/opt/ros/noetic/include/ros/steady_timer_options.h +common.h +/opt/ros/noetic/include/ros/common.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h + +/opt/ros/noetic/include/ros/subscribe_options.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +common.h +/opt/ros/noetic/include/ros/common.h +ros/transport_hints.h +/opt/ros/noetic/include/ros/ros/transport_hints.h +ros/message_traits.h +/opt/ros/noetic/include/ros/ros/message_traits.h +subscription_callback_helper.h +/opt/ros/noetic/include/ros/subscription_callback_helper.h + +/opt/ros/noetic/include/ros/subscriber.h +common.h +/opt/ros/noetic/include/ros/common.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +ros/subscription_callback_helper.h +/opt/ros/noetic/include/ros/ros/subscription_callback_helper.h + +/opt/ros/noetic/include/ros/subscription_callback_helper.h +typeinfo +- +common.h +/opt/ros/noetic/include/ros/common.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +ros/parameter_adapter.h +/opt/ros/noetic/include/ros/ros/parameter_adapter.h +ros/message_traits.h +/opt/ros/noetic/include/ros/ros/message_traits.h +ros/builtin_message_traits.h +/opt/ros/noetic/include/ros/ros/builtin_message_traits.h +ros/serialization.h +/opt/ros/noetic/include/ros/ros/serialization.h +ros/message_event.h +/opt/ros/noetic/include/ros/ros/message_event.h +ros/static_assert.h +- +boost/type_traits/add_const.hpp +- +boost/type_traits/remove_const.hpp +- +boost/type_traits/remove_reference.hpp +- +boost/type_traits/is_base_of.hpp +- +boost/utility/enable_if.hpp +- +boost/make_shared.hpp +- + +/opt/ros/noetic/include/ros/this_node.h +common.h +/opt/ros/noetic/include/ros/common.h +forwards.h +/opt/ros/noetic/include/ros/forwards.h + +/opt/ros/noetic/include/ros/time.h +ros/platform.h +- +iostream +- +cmath +- +ros/exception.h +- +duration.h +/opt/ros/noetic/include/ros/duration.h +boost/math/special_functions/round.hpp +- +rostime_decl.h +/opt/ros/noetic/include/ros/rostime_decl.h +sys/timeb.h +- +sys/time.h +- + +/opt/ros/noetic/include/ros/timer.h +common.h +/opt/ros/noetic/include/ros/common.h +forwards.h +/opt/ros/noetic/include/ros/forwards.h +timer_options.h +/opt/ros/noetic/include/ros/timer_options.h + +/opt/ros/noetic/include/ros/timer_options.h +common.h +/opt/ros/noetic/include/ros/common.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h + +/opt/ros/noetic/include/ros/topic.h +common.h +/opt/ros/noetic/include/ros/common.h +node_handle.h +/opt/ros/noetic/include/ros/node_handle.h +boost/shared_ptr.hpp +- + +/opt/ros/noetic/include/ros/transport_hints.h +common.h +/opt/ros/noetic/include/ros/common.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h +boost/lexical_cast.hpp +- + +/opt/ros/noetic/include/ros/types.h +stdint.h +- + +/opt/ros/noetic/include/ros/wall_timer.h +common.h +/opt/ros/noetic/include/ros/common.h +forwards.h +/opt/ros/noetic/include/ros/forwards.h +wall_timer_options.h +/opt/ros/noetic/include/ros/wall_timer_options.h + +/opt/ros/noetic/include/ros/wall_timer_options.h +common.h +/opt/ros/noetic/include/ros/common.h +ros/forwards.h +/opt/ros/noetic/include/ros/ros/forwards.h + +/opt/ros/noetic/include/rosconsole/macros_generated.h + +/opt/ros/noetic/include/sensor_msgs/CameraInfo.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +std_msgs/Header.h +- +sensor_msgs/RegionOfInterest.h +- + +/opt/ros/noetic/include/sensor_msgs/CompressedImage.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +std_msgs/Header.h +- + +/opt/ros/noetic/include/sensor_msgs/Image.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +std_msgs/Header.h +- + +/opt/ros/noetic/include/sensor_msgs/PointCloud2.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +std_msgs/Header.h +- +sensor_msgs/PointField.h +- + +/opt/ros/noetic/include/sensor_msgs/PointField.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/sensor_msgs/RegionOfInterest.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/sensor_msgs/SetCameraInfo.h +ros/service_traits.h +- +sensor_msgs/SetCameraInfoRequest.h +- +sensor_msgs/SetCameraInfoResponse.h +- + +/opt/ros/noetic/include/sensor_msgs/SetCameraInfoRequest.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +sensor_msgs/CameraInfo.h +- + +/opt/ros/noetic/include/sensor_msgs/SetCameraInfoResponse.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/sensor_msgs/distortion_models.h +string +- + +/opt/ros/noetic/include/sensor_msgs/image_encodings.h +cstdlib +- +stdexcept +- +string +- + +/opt/ros/noetic/include/sensor_msgs/impl/point_cloud2_iterator.h +sensor_msgs/PointCloud2.h +- +cstdarg +- +sstream +- +string +- +vector +- + +/opt/ros/noetic/include/sensor_msgs/point_cloud2_iterator.h +sensor_msgs/PointCloud2.h +- +cstdarg +- +string +- +vector +- +sensor_msgs/impl/point_cloud2_iterator.h +- + +/opt/ros/noetic/include/std_msgs/Empty.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/std_msgs/Header.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/std_srvs/Empty.h +ros/service_traits.h +- +std_srvs/EmptyRequest.h +- +std_srvs/EmptyResponse.h +- + +/opt/ros/noetic/include/std_srvs/EmptyRequest.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/std_srvs/EmptyResponse.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/std_srvs/SetBool.h +ros/service_traits.h +- +std_srvs/SetBoolRequest.h +- +std_srvs/SetBoolResponse.h +- + +/opt/ros/noetic/include/std_srvs/SetBoolRequest.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/std_srvs/SetBoolResponse.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- + +/opt/ros/noetic/include/tf2/LinearMath/Matrix3x3.h +Vector3.h +/opt/ros/noetic/include/tf2/LinearMath/Vector3.h +Quaternion.h +/opt/ros/noetic/include/tf2/LinearMath/Quaternion.h +ros/macros.h +- + +/opt/ros/noetic/include/tf2/LinearMath/MinMax.h + +/opt/ros/noetic/include/tf2/LinearMath/QuadWord.h +Scalar.h +/opt/ros/noetic/include/tf2/LinearMath/Scalar.h +MinMax.h +/opt/ros/noetic/include/tf2/LinearMath/MinMax.h +altivec.h +- + +/opt/ros/noetic/include/tf2/LinearMath/Quaternion.h +Vector3.h +/opt/ros/noetic/include/tf2/LinearMath/Vector3.h +QuadWord.h +/opt/ros/noetic/include/tf2/LinearMath/QuadWord.h +ros/macros.h +- + +/opt/ros/noetic/include/tf2/LinearMath/Scalar.h +math.h +- +stdlib.h +- +cstdlib +- +cfloat +- +float.h +- +ppcintrinsics.h +- +assert.h +- +assert.h +- +assert.h +- +assert.h +- + +/opt/ros/noetic/include/tf2/LinearMath/Transform.h +Matrix3x3.h +/opt/ros/noetic/include/tf2/LinearMath/Matrix3x3.h + +/opt/ros/noetic/include/tf2/LinearMath/Vector3.h +Scalar.h +/opt/ros/noetic/include/tf2/LinearMath/Scalar.h +MinMax.h +/opt/ros/noetic/include/tf2/LinearMath/MinMax.h + +/opt/ros/noetic/include/tf2_msgs/TFMessage.h +string +- +vector +- +memory +- +ros/types.h +- +ros/serialization.h +- +ros/builtin_message_traits.h +- +ros/message_operations.h +- +geometry_msgs/TransformStamped.h +- + +/opt/ros/noetic/include/tf2_ros/static_transform_broadcaster.h +ros/ros.h +/opt/ros/noetic/include/tf2_ros/ros/ros.h +geometry_msgs/TransformStamped.h +/opt/ros/noetic/include/tf2_ros/geometry_msgs/TransformStamped.h +tf2_msgs/TFMessage.h +/opt/ros/noetic/include/tf2_ros/tf2_msgs/TFMessage.h + +/opt/ros/noetic/include/tf2_ros/transform_broadcaster.h +ros/ros.h +/opt/ros/noetic/include/tf2_ros/ros/ros.h +geometry_msgs/TransformStamped.h +/opt/ros/noetic/include/tf2_ros/geometry_msgs/TransformStamped.h + +/opt/ros/noetic/include/xmlrpcpp/XmlRpcDecl.h +ros/macros.h +- + +/opt/ros/noetic/include/xmlrpcpp/XmlRpcValue.h +xmlrpcpp/XmlRpcDecl.h +/opt/ros/noetic/include/xmlrpcpp/xmlrpcpp/XmlRpcDecl.h +map +- +string +- +vector +- +time.h +- + +/usr/include/opencv4/opencv2/calib3d.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/opencv2/core.hpp +opencv2/features2d.hpp +/usr/include/opencv4/opencv2/opencv2/features2d.hpp +opencv2/core/affine.hpp +/usr/include/opencv4/opencv2/opencv2/core/affine.hpp + +/usr/include/opencv4/opencv2/core.hpp +opencv2/core/cvdef.h +/usr/include/opencv4/opencv2/opencv2/core/cvdef.h +opencv2/core/version.hpp +/usr/include/opencv4/opencv2/opencv2/core/version.hpp +opencv2/core/base.hpp +/usr/include/opencv4/opencv2/opencv2/core/base.hpp +opencv2/core/cvstd.hpp +/usr/include/opencv4/opencv2/opencv2/core/cvstd.hpp +opencv2/core/traits.hpp +/usr/include/opencv4/opencv2/opencv2/core/traits.hpp +opencv2/core/matx.hpp +/usr/include/opencv4/opencv2/opencv2/core/matx.hpp +opencv2/core/types.hpp +/usr/include/opencv4/opencv2/opencv2/core/types.hpp +opencv2/core/mat.hpp +/usr/include/opencv4/opencv2/opencv2/core/mat.hpp +opencv2/core/persistence.hpp +/usr/include/opencv4/opencv2/opencv2/core/persistence.hpp +opencv2/core/operations.hpp +/usr/include/opencv4/opencv2/opencv2/core/operations.hpp +opencv2/core/cvstd.inl.hpp +/usr/include/opencv4/opencv2/opencv2/core/cvstd.inl.hpp +opencv2/core/utility.hpp +/usr/include/opencv4/opencv2/opencv2/core/utility.hpp +opencv2/core/optim.hpp +/usr/include/opencv4/opencv2/opencv2/core/optim.hpp +opencv2/core/ovx.hpp +/usr/include/opencv4/opencv2/opencv2/core/ovx.hpp + +/usr/include/opencv4/opencv2/core/affine.hpp +opencv2/core.hpp +- + +/usr/include/opencv4/opencv2/core/async.hpp +opencv2/core/mat.hpp +- +chrono +- + +/usr/include/opencv4/opencv2/core/base.hpp +opencv2/opencv_modules.hpp +/usr/include/opencv4/opencv2/core/opencv2/opencv_modules.hpp +climits +- +algorithm +- +opencv2/core/cvdef.h +/usr/include/opencv4/opencv2/core/opencv2/core/cvdef.h +opencv2/core/cvstd.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/cvstd.hpp +opencv2/core/neon_utils.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/neon_utils.hpp +opencv2/core/vsx_utils.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/vsx_utils.hpp +opencv2/core/check.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/check.hpp + +/usr/include/opencv4/opencv2/core/bufferpool.hpp + +/usr/include/opencv4/opencv2/core/check.hpp +opencv2/core/base.hpp +- + +/usr/include/opencv4/opencv2/core/core.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/core/opencv2/core.hpp + +/usr/include/opencv4/opencv2/core/core_c.h +opencv2/core/types_c.h +/usr/include/opencv4/opencv2/core/opencv2/core/types_c.h +cxcore.h +/usr/include/opencv4/opencv2/core/cxcore.h +cxcore.h +/usr/include/opencv4/opencv2/core/cxcore.h +opencv2/core/utility.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/utility.hpp + +/usr/include/opencv4/opencv2/core/cuda.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/core/opencv2/core.hpp +opencv2/core/cuda_types.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/cuda_types.hpp +opencv2/opencv.hpp +- +opencv2/core/cuda.inl.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/cuda.inl.hpp + +/usr/include/opencv4/opencv2/core/cuda.inl.hpp +opencv2/core/cuda.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/cuda.hpp + +/usr/include/opencv4/opencv2/core/cuda_types.hpp + +/usr/include/opencv4/opencv2/core/cv_cpu_dispatch.h +cv_cpu_config.h +/usr/include/opencv4/opencv2/core/cv_cpu_config.h +cv_cpu_helper.h +/usr/include/opencv4/opencv2/core/cv_cpu_helper.h +emmintrin.h +- +pmmintrin.h +- +tmmintrin.h +- +smmintrin.h +- +nmmintrin.h +- +nmmintrin.h +- +popcntintrin.h +- +immintrin.h +- +arm_neon.h +- +immintrin.h +- +immintrin.h +- +immintrin.h +- +Intrin.h +- +arm_neon.h +- +arm_neon.h +- +arm_neon.h +- +altivec.h +- +hal/msa_macros.h +/usr/include/opencv4/opencv2/core/hal/msa_macros.h +wasm_simd128.h +- +emmintrin.h +- +Intrin.h +- +arm_neon.h +- +arm_neon.h +- +altivec.h +- + +/usr/include/opencv4/opencv2/core/cv_cpu_helper.h + +/usr/include/opencv4/opencv2/core/cvdef.h +cvconfig.h +/usr/include/opencv4/opencv2/core/cvconfig.h +limits.h +- +opencv2/core/hal/interface.h +/usr/include/opencv4/opencv2/core/opencv2/core/hal/interface.h +cv_cpu_dispatch.h +/usr/include/opencv4/opencv2/core/cv_cpu_dispatch.h +intrin.h +- +array +- +cstdint +- +stdint.h +- +stdint.h +- +opencv2/core/fast_math.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/fast_math.hpp + +/usr/include/opencv4/opencv2/core/cvstd.hpp +opencv2/core/cvdef.h +/usr/include/opencv4/opencv2/core/opencv2/core/cvdef.h +cstddef +- +cstring +- +cctype +- +string +- +algorithm +- +utility +- +cstdlib +- +cmath +- +cvstd_wrapper.hpp +/usr/include/opencv4/opencv2/core/cvstd_wrapper.hpp + +/usr/include/opencv4/opencv2/core/cvstd.inl.hpp +complex +- +ostream +- + +/usr/include/opencv4/opencv2/core/cvstd_wrapper.hpp +opencv2/core/cvdef.h +/usr/include/opencv4/opencv2/core/opencv2/core/cvdef.h +string +- +memory +- +type_traits +- + +/usr/include/opencv4/opencv2/core/fast_math.hpp +opencv2/core/cvdef.h +/usr/include/opencv4/opencv2/core/opencv2/core/cvdef.h +cmath +- +fastmath.h +- +math.h +- +emmintrin.h +- +altivec.h +- + +/usr/include/opencv4/opencv2/core/hal/interface.h +cstddef +- +stddef.h +- +stdbool.h +- +cstdint +- +stdint.h +- + +/usr/include/opencv4/opencv2/core/hal/msa_macros.h +msa.h +/usr/include/opencv4/opencv2/core/hal/msa.h +stdint.h +- + +/usr/include/opencv4/opencv2/core/mat.hpp +opencv2/core/matx.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/matx.hpp +opencv2/core/types.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/types.hpp +opencv2/core/bufferpool.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/bufferpool.hpp +type_traits +- +opencv2/core/mat.inl.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/mat.inl.hpp + +/usr/include/opencv4/opencv2/core/mat.inl.hpp + +/usr/include/opencv4/opencv2/core/matx.hpp +opencv2/core/cvdef.h +/usr/include/opencv4/opencv2/core/opencv2/core/cvdef.h +opencv2/core/base.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/base.hpp +opencv2/core/traits.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/traits.hpp +opencv2/core/saturate.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/saturate.hpp +initializer_list +- + +/usr/include/opencv4/opencv2/core/neon_utils.hpp +opencv2/core/cvdef.h +/usr/include/opencv4/opencv2/core/opencv2/core/cvdef.h + +/usr/include/opencv4/opencv2/core/operations.hpp +cstdio +- + +/usr/include/opencv4/opencv2/core/optim.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/core/opencv2/core.hpp + +/usr/include/opencv4/opencv2/core/ovx.hpp +cvdef.h +/usr/include/opencv4/opencv2/core/cvdef.h + +/usr/include/opencv4/opencv2/core/persistence.hpp +opencv2/core/types.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/types.hpp +opencv2/core/mat.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/mat.hpp +opencv2/opencv.hpp +/usr/include/opencv4/opencv2/core/opencv2/opencv.hpp +time.h +- + +/usr/include/opencv4/opencv2/core/saturate.hpp +opencv2/core/cvdef.h +/usr/include/opencv4/opencv2/core/opencv2/core/cvdef.h +opencv2/core/fast_math.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/fast_math.hpp + +/usr/include/opencv4/opencv2/core/traits.hpp +opencv2/core/cvdef.h +/usr/include/opencv4/opencv2/core/opencv2/core/cvdef.h + +/usr/include/opencv4/opencv2/core/types.hpp +climits +- +cfloat +- +vector +- +limits +- +opencv2/core/cvdef.h +/usr/include/opencv4/opencv2/core/opencv2/core/cvdef.h +opencv2/core/cvstd.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/cvstd.hpp +opencv2/core/matx.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/matx.hpp + +/usr/include/opencv4/opencv2/core/types_c.h +ipl.h +- +ipl/ipl.h +- +opencv2/core/cvdef.h +/usr/include/opencv4/opencv2/core/opencv2/core/cvdef.h +assert.h +- +stdlib.h +- +string.h +- +float.h +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/core/opencv2/core.hpp + +/usr/include/opencv4/opencv2/core/utility.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/core/opencv2/core.hpp +ostream +- +functional +- +mutex +- +opencv2/core/utils/instrumentation.hpp +/usr/include/opencv4/opencv2/core/opencv2/core/utils/instrumentation.hpp + +/usr/include/opencv4/opencv2/core/utils/instrumentation.hpp +opencv2/core/utility.hpp +- +opencv2/core/utils/tls.hpp +- + +/usr/include/opencv4/opencv2/core/utils/tls.hpp +opencv2/core/utility.hpp +- + +/usr/include/opencv4/opencv2/core/version.hpp + +/usr/include/opencv4/opencv2/core/vsx_utils.hpp +opencv2/core/cvdef.h +/usr/include/opencv4/opencv2/core/opencv2/core/cvdef.h +assert.h +- + +/usr/include/opencv4/opencv2/dnn.hpp +opencv2/dnn/dnn.hpp +- + +/usr/include/opencv4/opencv2/dnn/dict.hpp +opencv2/core.hpp +- +map +- +ostream +- +opencv2/dnn/dnn.hpp +- + +/usr/include/opencv4/opencv2/dnn/dnn.hpp +vector +- +opencv2/core.hpp +- +opencv2/core/async.hpp +/usr/include/opencv4/opencv2/dnn/opencv2/core/async.hpp +../dnn/version.hpp +/usr/include/opencv4/opencv2/dnn/version.hpp +opencv2/dnn/dict.hpp +- +opencv2/dnn/layer.hpp +- +opencv2/dnn/dnn.inl.hpp +- +opencv2/dnn/utils/inference_engine.hpp +- + +/usr/include/opencv4/opencv2/dnn/dnn.inl.hpp +opencv2/dnn.hpp +- + +/usr/include/opencv4/opencv2/dnn/layer.hpp +opencv2/dnn.hpp +- + +/usr/include/opencv4/opencv2/dnn/utils/inference_engine.hpp +../dnn.hpp +/usr/include/opencv4/opencv2/dnn/dnn.hpp + +/usr/include/opencv4/opencv2/dnn/version.hpp + +/usr/include/opencv4/opencv2/features2d.hpp +opencv2/opencv_modules.hpp +/usr/include/opencv4/opencv2/opencv2/opencv_modules.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/opencv2/core.hpp +opencv2/flann/miniflann.hpp +/usr/include/opencv4/opencv2/opencv2/flann/miniflann.hpp + +/usr/include/opencv4/opencv2/flann.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/opencv2/core.hpp +opencv2/flann/miniflann.hpp +/usr/include/opencv4/opencv2/opencv2/flann/miniflann.hpp +opencv2/flann/flann_base.hpp +/usr/include/opencv4/opencv2/opencv2/flann/flann_base.hpp + +/usr/include/opencv4/opencv2/flann/all_indices.h +general.h +/usr/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/include/opencv4/opencv2/flann/nn_index.h +kdtree_index.h +/usr/include/opencv4/opencv2/flann/kdtree_index.h +kdtree_single_index.h +/usr/include/opencv4/opencv2/flann/kdtree_single_index.h +kmeans_index.h +/usr/include/opencv4/opencv2/flann/kmeans_index.h +composite_index.h +/usr/include/opencv4/opencv2/flann/composite_index.h +linear_index.h +/usr/include/opencv4/opencv2/flann/linear_index.h +hierarchical_clustering_index.h +/usr/include/opencv4/opencv2/flann/hierarchical_clustering_index.h +lsh_index.h +/usr/include/opencv4/opencv2/flann/lsh_index.h +autotuned_index.h +/usr/include/opencv4/opencv2/flann/autotuned_index.h + +/usr/include/opencv4/opencv2/flann/allocator.h +stdlib.h +- +stdio.h +- + +/usr/include/opencv4/opencv2/flann/any.h +defines.h +/usr/include/opencv4/opencv2/flann/defines.h +stdexcept +- +ostream +- +typeinfo +- + +/usr/include/opencv4/opencv2/flann/autotuned_index.h +sstream +- +general.h +/usr/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/include/opencv4/opencv2/flann/nn_index.h +ground_truth.h +/usr/include/opencv4/opencv2/flann/ground_truth.h +index_testing.h +/usr/include/opencv4/opencv2/flann/index_testing.h +sampling.h +/usr/include/opencv4/opencv2/flann/sampling.h +kdtree_index.h +/usr/include/opencv4/opencv2/flann/kdtree_index.h +kdtree_single_index.h +/usr/include/opencv4/opencv2/flann/kdtree_single_index.h +kmeans_index.h +/usr/include/opencv4/opencv2/flann/kmeans_index.h +composite_index.h +/usr/include/opencv4/opencv2/flann/composite_index.h +linear_index.h +/usr/include/opencv4/opencv2/flann/linear_index.h +logger.h +/usr/include/opencv4/opencv2/flann/logger.h + +/usr/include/opencv4/opencv2/flann/composite_index.h +general.h +/usr/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/include/opencv4/opencv2/flann/nn_index.h +kdtree_index.h +/usr/include/opencv4/opencv2/flann/kdtree_index.h +kmeans_index.h +/usr/include/opencv4/opencv2/flann/kmeans_index.h + +/usr/include/opencv4/opencv2/flann/config.h + +/usr/include/opencv4/opencv2/flann/defines.h +config.h +/usr/include/opencv4/opencv2/flann/config.h + +/usr/include/opencv4/opencv2/flann/dist.h +cmath +- +cstdlib +- +string.h +- +stdint.h +- +defines.h +/usr/include/opencv4/opencv2/flann/defines.h +Intrin.h +- +arm_neon.h +/usr/include/opencv4/opencv2/flann/arm_neon.h + +/usr/include/opencv4/opencv2/flann/dynamic_bitset.h +boost/dynamic_bitset.hpp +- +limits.h +- +dist.h +/usr/include/opencv4/opencv2/flann/dist.h + +/usr/include/opencv4/opencv2/flann/flann_base.hpp +vector +- +cassert +- +cstdio +- +general.h +/usr/include/opencv4/opencv2/flann/general.h +matrix.h +/usr/include/opencv4/opencv2/flann/matrix.h +params.h +/usr/include/opencv4/opencv2/flann/params.h +saving.h +/usr/include/opencv4/opencv2/flann/saving.h +all_indices.h +/usr/include/opencv4/opencv2/flann/all_indices.h + +/usr/include/opencv4/opencv2/flann/general.h +opencv2/core.hpp +/usr/include/opencv4/opencv2/flann/opencv2/core.hpp + +/usr/include/opencv4/opencv2/flann/ground_truth.h +dist.h +/usr/include/opencv4/opencv2/flann/dist.h +matrix.h +/usr/include/opencv4/opencv2/flann/matrix.h + +/usr/include/opencv4/opencv2/flann/heap.h +algorithm +- +vector +- + +/usr/include/opencv4/opencv2/flann/hierarchical_clustering_index.h +algorithm +- +map +- +cassert +- +limits +- +cmath +- +general.h +/usr/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/include/opencv4/opencv2/flann/nn_index.h +dist.h +/usr/include/opencv4/opencv2/flann/dist.h +matrix.h +/usr/include/opencv4/opencv2/flann/matrix.h +result_set.h +/usr/include/opencv4/opencv2/flann/result_set.h +heap.h +/usr/include/opencv4/opencv2/flann/heap.h +allocator.h +/usr/include/opencv4/opencv2/flann/allocator.h +random.h +/usr/include/opencv4/opencv2/flann/random.h +saving.h +/usr/include/opencv4/opencv2/flann/saving.h + +/usr/include/opencv4/opencv2/flann/index_testing.h +cstring +- +cassert +- +cmath +- +matrix.h +/usr/include/opencv4/opencv2/flann/matrix.h +nn_index.h +/usr/include/opencv4/opencv2/flann/nn_index.h +result_set.h +/usr/include/opencv4/opencv2/flann/result_set.h +logger.h +/usr/include/opencv4/opencv2/flann/logger.h +timer.h +/usr/include/opencv4/opencv2/flann/timer.h + +/usr/include/opencv4/opencv2/flann/kdtree_index.h +algorithm +- +map +- +cassert +- +cstring +- +general.h +/usr/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/include/opencv4/opencv2/flann/nn_index.h +dynamic_bitset.h +/usr/include/opencv4/opencv2/flann/dynamic_bitset.h +matrix.h +/usr/include/opencv4/opencv2/flann/matrix.h +result_set.h +/usr/include/opencv4/opencv2/flann/result_set.h +heap.h +/usr/include/opencv4/opencv2/flann/heap.h +allocator.h +/usr/include/opencv4/opencv2/flann/allocator.h +random.h +/usr/include/opencv4/opencv2/flann/random.h +saving.h +/usr/include/opencv4/opencv2/flann/saving.h + +/usr/include/opencv4/opencv2/flann/kdtree_single_index.h +algorithm +- +map +- +cassert +- +cstring +- +general.h +/usr/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/include/opencv4/opencv2/flann/nn_index.h +matrix.h +/usr/include/opencv4/opencv2/flann/matrix.h +result_set.h +/usr/include/opencv4/opencv2/flann/result_set.h +heap.h +/usr/include/opencv4/opencv2/flann/heap.h +allocator.h +/usr/include/opencv4/opencv2/flann/allocator.h +random.h +/usr/include/opencv4/opencv2/flann/random.h +saving.h +/usr/include/opencv4/opencv2/flann/saving.h + +/usr/include/opencv4/opencv2/flann/kmeans_index.h +algorithm +- +map +- +cassert +- +limits +- +cmath +- +general.h +/usr/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/include/opencv4/opencv2/flann/nn_index.h +dist.h +/usr/include/opencv4/opencv2/flann/dist.h +matrix.h +/usr/include/opencv4/opencv2/flann/matrix.h +result_set.h +/usr/include/opencv4/opencv2/flann/result_set.h +heap.h +/usr/include/opencv4/opencv2/flann/heap.h +allocator.h +/usr/include/opencv4/opencv2/flann/allocator.h +random.h +/usr/include/opencv4/opencv2/flann/random.h +saving.h +/usr/include/opencv4/opencv2/flann/saving.h +logger.h +/usr/include/opencv4/opencv2/flann/logger.h + +/usr/include/opencv4/opencv2/flann/linear_index.h +general.h +/usr/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/include/opencv4/opencv2/flann/nn_index.h + +/usr/include/opencv4/opencv2/flann/logger.h +stdio.h +- +stdarg.h +- +defines.h +/usr/include/opencv4/opencv2/flann/defines.h + +/usr/include/opencv4/opencv2/flann/lsh_index.h +algorithm +- +cassert +- +cstring +- +map +- +vector +- +general.h +/usr/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/include/opencv4/opencv2/flann/nn_index.h +matrix.h +/usr/include/opencv4/opencv2/flann/matrix.h +result_set.h +/usr/include/opencv4/opencv2/flann/result_set.h +heap.h +/usr/include/opencv4/opencv2/flann/heap.h +lsh_table.h +/usr/include/opencv4/opencv2/flann/lsh_table.h +allocator.h +/usr/include/opencv4/opencv2/flann/allocator.h +random.h +/usr/include/opencv4/opencv2/flann/random.h +saving.h +/usr/include/opencv4/opencv2/flann/saving.h + +/usr/include/opencv4/opencv2/flann/lsh_table.h +algorithm +- +iostream +- +iomanip +- +limits.h +- +unordered_map +- +map +- +math.h +- +stddef.h +- +dynamic_bitset.h +/usr/include/opencv4/opencv2/flann/dynamic_bitset.h +matrix.h +/usr/include/opencv4/opencv2/flann/matrix.h + +/usr/include/opencv4/opencv2/flann/matrix.h +stdio.h +- +general.h +/usr/include/opencv4/opencv2/flann/general.h + +/usr/include/opencv4/opencv2/flann/miniflann.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/flann/opencv2/core.hpp +opencv2/flann/defines.h +/usr/include/opencv4/opencv2/flann/opencv2/flann/defines.h + +/usr/include/opencv4/opencv2/flann/nn_index.h +general.h +/usr/include/opencv4/opencv2/flann/general.h +matrix.h +/usr/include/opencv4/opencv2/flann/matrix.h +result_set.h +/usr/include/opencv4/opencv2/flann/result_set.h +params.h +/usr/include/opencv4/opencv2/flann/params.h + +/usr/include/opencv4/opencv2/flann/params.h +any.h +/usr/include/opencv4/opencv2/flann/any.h +general.h +/usr/include/opencv4/opencv2/flann/general.h +iostream +- +map +- + +/usr/include/opencv4/opencv2/flann/random.h +algorithm +- +cstdlib +- +vector +- +general.h +/usr/include/opencv4/opencv2/flann/general.h + +/usr/include/opencv4/opencv2/flann/result_set.h +algorithm +- +cstring +- +iostream +- +limits +- +set +- +vector +- + +/usr/include/opencv4/opencv2/flann/sampling.h +matrix.h +/usr/include/opencv4/opencv2/flann/matrix.h +random.h +/usr/include/opencv4/opencv2/flann/random.h + +/usr/include/opencv4/opencv2/flann/saving.h +cstring +- +vector +- +general.h +/usr/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/include/opencv4/opencv2/flann/nn_index.h + +/usr/include/opencv4/opencv2/flann/timer.h +time.h +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/flann/opencv2/core.hpp +opencv2/core/utility.hpp +/usr/include/opencv4/opencv2/flann/opencv2/core/utility.hpp + +/usr/include/opencv4/opencv2/highgui.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/opencv2/core.hpp +opencv2/imgcodecs.hpp +/usr/include/opencv4/opencv2/opencv2/imgcodecs.hpp +opencv2/videoio.hpp +/usr/include/opencv4/opencv2/opencv2/videoio.hpp + +/usr/include/opencv4/opencv2/imgcodecs.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/opencv2/core.hpp + +/usr/include/opencv4/opencv2/imgproc.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/opencv2/core.hpp + +/usr/include/opencv4/opencv2/imgproc/imgproc.hpp +opencv2/imgproc.hpp +/usr/include/opencv4/opencv2/imgproc/opencv2/imgproc.hpp + +/usr/include/opencv4/opencv2/imgproc/types_c.h +opencv2/core/core_c.h +/usr/include/opencv4/opencv2/imgproc/opencv2/core/core_c.h + +/usr/include/opencv4/opencv2/ml.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/opencv2/core.hpp +float.h +- +map +- +iostream +- +opencv2/ml/ml.inl.hpp +- + +/usr/include/opencv4/opencv2/ml/ml.inl.hpp + +/usr/include/opencv4/opencv2/objdetect.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/opencv2/core.hpp +opencv2/objdetect/detection_based_tracker.hpp +/usr/include/opencv4/opencv2/opencv2/objdetect/detection_based_tracker.hpp + +/usr/include/opencv4/opencv2/objdetect/detection_based_tracker.hpp +opencv2/core.hpp +- +vector +- + +/usr/include/opencv4/opencv2/opencv.hpp +opencv2/opencv_modules.hpp +/usr/include/opencv4/opencv2/opencv2/opencv_modules.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/opencv2/core.hpp +opencv2/calib3d.hpp +/usr/include/opencv4/opencv2/opencv2/calib3d.hpp +opencv2/features2d.hpp +/usr/include/opencv4/opencv2/opencv2/features2d.hpp +opencv2/dnn.hpp +/usr/include/opencv4/opencv2/opencv2/dnn.hpp +opencv2/flann.hpp +/usr/include/opencv4/opencv2/opencv2/flann.hpp +opencv2/highgui.hpp +/usr/include/opencv4/opencv2/opencv2/highgui.hpp +opencv2/imgcodecs.hpp +/usr/include/opencv4/opencv2/opencv2/imgcodecs.hpp +opencv2/imgproc.hpp +/usr/include/opencv4/opencv2/opencv2/imgproc.hpp +opencv2/ml.hpp +/usr/include/opencv4/opencv2/opencv2/ml.hpp +opencv2/objdetect.hpp +/usr/include/opencv4/opencv2/opencv2/objdetect.hpp +opencv2/photo.hpp +/usr/include/opencv4/opencv2/opencv2/photo.hpp +opencv2/shape.hpp +/usr/include/opencv4/opencv2/opencv2/shape.hpp +opencv2/stitching.hpp +/usr/include/opencv4/opencv2/opencv2/stitching.hpp +opencv2/superres.hpp +/usr/include/opencv4/opencv2/opencv2/superres.hpp +opencv2/video.hpp +/usr/include/opencv4/opencv2/opencv2/video.hpp +opencv2/videoio.hpp +/usr/include/opencv4/opencv2/opencv2/videoio.hpp +opencv2/videostab.hpp +/usr/include/opencv4/opencv2/opencv2/videostab.hpp +opencv2/viz.hpp +/usr/include/opencv4/opencv2/opencv2/viz.hpp +opencv2/cudaarithm.hpp +/usr/include/opencv4/opencv2/opencv2/cudaarithm.hpp +opencv2/cudabgsegm.hpp +/usr/include/opencv4/opencv2/opencv2/cudabgsegm.hpp +opencv2/cudacodec.hpp +/usr/include/opencv4/opencv2/opencv2/cudacodec.hpp +opencv2/cudafeatures2d.hpp +/usr/include/opencv4/opencv2/opencv2/cudafeatures2d.hpp +opencv2/cudafilters.hpp +/usr/include/opencv4/opencv2/opencv2/cudafilters.hpp +opencv2/cudaimgproc.hpp +/usr/include/opencv4/opencv2/opencv2/cudaimgproc.hpp +opencv2/cudaobjdetect.hpp +/usr/include/opencv4/opencv2/opencv2/cudaobjdetect.hpp +opencv2/cudaoptflow.hpp +/usr/include/opencv4/opencv2/opencv2/cudaoptflow.hpp +opencv2/cudastereo.hpp +/usr/include/opencv4/opencv2/opencv2/cudastereo.hpp +opencv2/cudawarping.hpp +/usr/include/opencv4/opencv2/opencv2/cudawarping.hpp + +/usr/include/opencv4/opencv2/opencv_modules.hpp + +/usr/include/opencv4/opencv2/photo.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/include/opencv4/opencv2/opencv2/imgproc.hpp + +/usr/include/opencv4/opencv2/shape.hpp +opencv2/shape/emdL1.hpp +/usr/include/opencv4/opencv2/opencv2/shape/emdL1.hpp +opencv2/shape/shape_transformer.hpp +/usr/include/opencv4/opencv2/opencv2/shape/shape_transformer.hpp +opencv2/shape/hist_cost.hpp +/usr/include/opencv4/opencv2/opencv2/shape/hist_cost.hpp +opencv2/shape/shape_distance.hpp +/usr/include/opencv4/opencv2/opencv2/shape/shape_distance.hpp + +/usr/include/opencv4/opencv2/shape/emdL1.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/shape/opencv2/core.hpp + +/usr/include/opencv4/opencv2/shape/hist_cost.hpp +opencv2/imgproc.hpp +/usr/include/opencv4/opencv2/shape/opencv2/imgproc.hpp + +/usr/include/opencv4/opencv2/shape/shape_distance.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/shape/opencv2/core.hpp +opencv2/shape/hist_cost.hpp +/usr/include/opencv4/opencv2/shape/opencv2/shape/hist_cost.hpp +opencv2/shape/shape_transformer.hpp +/usr/include/opencv4/opencv2/shape/opencv2/shape/shape_transformer.hpp + +/usr/include/opencv4/opencv2/shape/shape_transformer.hpp +vector +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/shape/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/include/opencv4/opencv2/shape/opencv2/imgproc.hpp + +/usr/include/opencv4/opencv2/stitching.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/opencv2/core.hpp +opencv2/features2d.hpp +/usr/include/opencv4/opencv2/opencv2/features2d.hpp +opencv2/stitching/warpers.hpp +/usr/include/opencv4/opencv2/opencv2/stitching/warpers.hpp +opencv2/stitching/detail/matchers.hpp +/usr/include/opencv4/opencv2/opencv2/stitching/detail/matchers.hpp +opencv2/stitching/detail/motion_estimators.hpp +/usr/include/opencv4/opencv2/opencv2/stitching/detail/motion_estimators.hpp +opencv2/stitching/detail/exposure_compensate.hpp +/usr/include/opencv4/opencv2/opencv2/stitching/detail/exposure_compensate.hpp +opencv2/stitching/detail/seam_finders.hpp +/usr/include/opencv4/opencv2/opencv2/stitching/detail/seam_finders.hpp +opencv2/stitching/detail/blenders.hpp +/usr/include/opencv4/opencv2/opencv2/stitching/detail/blenders.hpp +opencv2/stitching/detail/camera.hpp +/usr/include/opencv4/opencv2/opencv2/stitching/detail/camera.hpp + +/usr/include/opencv4/opencv2/stitching/detail/blenders.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +opencv2/core/cuda.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/core/cuda.hpp + +/usr/include/opencv4/opencv2/stitching/detail/camera.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp + +/usr/include/opencv4/opencv2/stitching/detail/exposure_compensate.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp + +/usr/include/opencv4/opencv2/stitching/detail/matchers.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +opencv2/features2d.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/features2d.hpp +opencv2/opencv_modules.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/opencv_modules.hpp + +/usr/include/opencv4/opencv2/stitching/detail/motion_estimators.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +matchers.hpp +/usr/include/opencv4/opencv2/stitching/detail/matchers.hpp +util.hpp +/usr/include/opencv4/opencv2/stitching/detail/util.hpp +camera.hpp +/usr/include/opencv4/opencv2/stitching/detail/camera.hpp + +/usr/include/opencv4/opencv2/stitching/detail/seam_finders.hpp +set +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +opencv2/opencv_modules.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/opencv_modules.hpp + +/usr/include/opencv4/opencv2/stitching/detail/util.hpp +list +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +util_inl.hpp +/usr/include/opencv4/opencv2/stitching/detail/util_inl.hpp + +/usr/include/opencv4/opencv2/stitching/detail/util_inl.hpp +queue +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +util.hpp +/usr/include/opencv4/opencv2/stitching/detail/util.hpp + +/usr/include/opencv4/opencv2/stitching/detail/warpers.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +opencv2/core/cuda.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/core/cuda.hpp +opencv2/imgproc.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/imgproc.hpp +opencv2/opencv_modules.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/opencv_modules.hpp +warpers_inl.hpp +/usr/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp + +/usr/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +warpers.hpp +/usr/include/opencv4/opencv2/stitching/detail/warpers.hpp +limits +- + +/usr/include/opencv4/opencv2/stitching/warpers.hpp +opencv2/stitching/detail/warpers.hpp +/usr/include/opencv4/opencv2/stitching/opencv2/stitching/detail/warpers.hpp +string +- + +/usr/include/opencv4/opencv2/superres.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/opencv2/core.hpp +opencv2/superres/optical_flow.hpp +/usr/include/opencv4/opencv2/opencv2/superres/optical_flow.hpp + +/usr/include/opencv4/opencv2/superres/optical_flow.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/superres/opencv2/core.hpp + +/usr/include/opencv4/opencv2/video.hpp +opencv2/video/tracking.hpp +/usr/include/opencv4/opencv2/opencv2/video/tracking.hpp +opencv2/video/background_segm.hpp +/usr/include/opencv4/opencv2/opencv2/video/background_segm.hpp + +/usr/include/opencv4/opencv2/video/background_segm.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/video/opencv2/core.hpp + +/usr/include/opencv4/opencv2/video/tracking.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/video/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/include/opencv4/opencv2/video/opencv2/imgproc.hpp + +/usr/include/opencv4/opencv2/videoio.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/opencv2/core.hpp + +/usr/include/opencv4/opencv2/videostab.hpp +opencv2/videostab/stabilizer.hpp +/usr/include/opencv4/opencv2/opencv2/videostab/stabilizer.hpp +opencv2/videostab/ring_buffer.hpp +/usr/include/opencv4/opencv2/opencv2/videostab/ring_buffer.hpp + +/usr/include/opencv4/opencv2/videostab/deblurring.hpp +vector +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/core.hpp + +/usr/include/opencv4/opencv2/videostab/fast_marching.hpp +cmath +- +queue +- +algorithm +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/core.hpp +fast_marching_inl.hpp +/usr/include/opencv4/opencv2/videostab/fast_marching_inl.hpp + +/usr/include/opencv4/opencv2/videostab/fast_marching_inl.hpp +opencv2/videostab/fast_marching.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/fast_marching.hpp + +/usr/include/opencv4/opencv2/videostab/frame_source.hpp +vector +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/core.hpp + +/usr/include/opencv4/opencv2/videostab/global_motion.hpp +vector +- +fstream +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/core.hpp +opencv2/features2d.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/features2d.hpp +opencv2/opencv_modules.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/opencv_modules.hpp +opencv2/videostab/optical_flow.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/optical_flow.hpp +opencv2/videostab/motion_core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/motion_core.hpp +opencv2/videostab/outlier_rejection.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/outlier_rejection.hpp +opencv2/cudaimgproc.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/cudaimgproc.hpp + +/usr/include/opencv4/opencv2/videostab/inpainting.hpp +vector +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/core.hpp +opencv2/videostab/optical_flow.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/optical_flow.hpp +opencv2/videostab/fast_marching.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/fast_marching.hpp +opencv2/videostab/global_motion.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/global_motion.hpp +opencv2/photo.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/photo.hpp + +/usr/include/opencv4/opencv2/videostab/log.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/core.hpp + +/usr/include/opencv4/opencv2/videostab/motion_core.hpp +cmath +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/core.hpp + +/usr/include/opencv4/opencv2/videostab/motion_stabilizing.hpp +vector +- +utility +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/core.hpp +opencv2/videostab/global_motion.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/global_motion.hpp + +/usr/include/opencv4/opencv2/videostab/optical_flow.hpp +opencv2/core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/core.hpp +opencv2/opencv_modules.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/opencv_modules.hpp +opencv2/cudaoptflow.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/cudaoptflow.hpp + +/usr/include/opencv4/opencv2/videostab/outlier_rejection.hpp +vector +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/core.hpp +opencv2/videostab/motion_core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/motion_core.hpp + +/usr/include/opencv4/opencv2/videostab/ring_buffer.hpp +vector +- +opencv2/imgproc.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/imgproc.hpp + +/usr/include/opencv4/opencv2/videostab/stabilizer.hpp +vector +- +ctime +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/imgproc.hpp +opencv2/videostab/global_motion.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/global_motion.hpp +opencv2/videostab/motion_stabilizing.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/motion_stabilizing.hpp +opencv2/videostab/frame_source.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/frame_source.hpp +opencv2/videostab/log.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/log.hpp +opencv2/videostab/inpainting.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/inpainting.hpp +opencv2/videostab/deblurring.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/deblurring.hpp +opencv2/videostab/wobble_suppression.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/wobble_suppression.hpp + +/usr/include/opencv4/opencv2/videostab/wobble_suppression.hpp +vector +- +opencv2/core.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/core.hpp +opencv2/core/cuda.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/core/cuda.hpp +opencv2/videostab/global_motion.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/global_motion.hpp +opencv2/videostab/log.hpp +/usr/include/opencv4/opencv2/videostab/opencv2/videostab/log.hpp + +/usr/include/opencv4/opencv2/viz.hpp +opencv2/viz/types.hpp +- +opencv2/viz/widgets.hpp +- +opencv2/viz/viz3d.hpp +- +opencv2/viz/vizcore.hpp +- + +/usr/include/opencv4/opencv2/viz/types.hpp +string +- +opencv2/core.hpp +- +opencv2/core/affine.hpp +- + +/usr/include/opencv4/opencv2/viz/viz3d.hpp +opencv2/core.hpp +- +opencv2/viz/types.hpp +- +opencv2/viz/widgets.hpp +- + +/usr/include/opencv4/opencv2/viz/vizcore.hpp +opencv2/viz/types.hpp +- +opencv2/viz/widgets.hpp +- +opencv2/viz/viz3d.hpp +- + +/usr/include/opencv4/opencv2/viz/widgets.hpp +opencv2/viz/types.hpp +- + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/DependInfo.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..3e185fe4dc8b5893f66e2c347d7e883bd508d85a --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/DependInfo.cmake @@ -0,0 +1,38 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_CXX + "/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/src/main.cpp" "/home/agilex/cobot_magic/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "ROSCONSOLE_BACKEND_LOG4CXX" + "ROS_BUILD_SHARED_LIBS=1" + "ROS_PACKAGE_NAME=\"astra_camera\"" + "libuvc_VERSION_MAJOR=" + "libuvc_VERSION_MINOR=" + "libuvc_VERSION_PATCH=" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/home/agilex/cobot_magic/camera_ws/devel/include" + "ros_astra_camera/include" + "/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include" + "/opt/ros/noetic/include" + "/opt/ros/noetic/share/xmlrpcpp/cmake/../../../include/xmlrpcpp" + "/usr/include/libusb-1.0" + "/usr/include/opencv4" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/agilex/cobot_magic/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/build.make b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..c84da17591597a54a6d881199a4403df981689fc --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/build.make @@ -0,0 +1,313 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/agilex/cobot_magic/camera_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/agilex/cobot_magic/camera_ws/build + +# Include any dependencies generated for this target. +include ros_astra_camera/CMakeFiles/astra_camera_node.dir/depend.make + +# Include the progress variables for this target. +include ros_astra_camera/CMakeFiles/astra_camera_node.dir/progress.make + +# Include the compile flags for this target's objects. +include ros_astra_camera/CMakeFiles/astra_camera_node.dir/flags.make + +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: ros_astra_camera/CMakeFiles/astra_camera_node.dir/flags.make +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/src/main.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/agilex/cobot_magic/camera_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o" + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/astra_camera_node.dir/src/main.cpp.o -c /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/src/main.cpp + +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/astra_camera_node.dir/src/main.cpp.i" + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/src/main.cpp > CMakeFiles/astra_camera_node.dir/src/main.cpp.i + +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/astra_camera_node.dir/src/main.cpp.s" + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/src/main.cpp -o CMakeFiles/astra_camera_node.dir/src/main.cpp.s + +# Object files for target astra_camera_node +astra_camera_node_OBJECTS = \ +"CMakeFiles/astra_camera_node.dir/src/main.cpp.o" + +# External object files for target astra_camera_node +astra_camera_node_EXTERNAL_OBJECTS = + +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: ros_astra_camera/CMakeFiles/astra_camera_node.dir/build.make +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /home/agilex/cobot_magic/camera_ws/devel/lib/libastra_camera.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libcv_bridge.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libdynamic_reconfigure_config_init_mutex.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libimage_geometry.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_calib3d.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_core.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_dnn.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_features2d.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_flann.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_highgui.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_imgcodecs.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_imgproc.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_ml.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_objdetect.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_photo.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_stitching.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_video.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_videoio.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_aruco.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_bgsegm.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_bioinspired.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_ccalib.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_datasets.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_dnn_objdetect.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_dnn_superres.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_dpm.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_face.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_freetype.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_fuzzy.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_hdf.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_hfs.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_img_hash.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_line_descriptor.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_optflow.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_phase_unwrapping.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_plot.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_quality.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_reg.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_rgbd.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_saliency.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_shape.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_stereo.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_structured_light.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_superres.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_surface_matching.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_text.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_tracking.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_videostab.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_viz.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_ximgproc.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_xobjdetect.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_xphoto.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libimage_transport.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libclass_loader.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libPocoFoundation.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libdl.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libroslib.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/librospack.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libpython3.8.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libtinyxml2.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libtf2_ros.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libactionlib.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libtf2.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libmessage_filters.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libcamera_info_manager.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libcamera_calibration_parsers.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libroscpp.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libpthread.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/librosconsole.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/librosconsole_log4cxx.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/librosconsole_backend_interface.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/liblog4cxx.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libxmlrpcpp.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libroscpp_serialization.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/librostime.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_date_time.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libcpp_common.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_system.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libconsole_bridge.so.0.4 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_stitching.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_aruco.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_bgsegm.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_bioinspired.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_ccalib.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_dnn_objdetect.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_dnn_superres.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_dpm.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_face.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_freetype.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_fuzzy.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_hdf.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_hfs.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_img_hash.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_line_descriptor.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_quality.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_reg.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_rgbd.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_saliency.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_shape.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_stereo.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_structured_light.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_superres.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_surface_matching.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_tracking.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_videostab.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_viz.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_xobjdetect.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_xphoto.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libcv_bridge.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libdynamic_reconfigure_config_init_mutex.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libimage_geometry.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_calib3d.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_core.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_dnn.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_features2d.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_flann.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_highgui.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_imgcodecs.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_imgproc.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_ml.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_objdetect.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_photo.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_stitching.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_video.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_videoio.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_aruco.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_bgsegm.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_bioinspired.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_ccalib.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_datasets.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_dnn_objdetect.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_dnn_superres.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_dpm.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_face.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_freetype.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_fuzzy.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_hdf.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_hfs.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_img_hash.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_line_descriptor.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_optflow.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_phase_unwrapping.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_plot.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_quality.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_reg.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_rgbd.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_saliency.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_shape.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_stereo.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_structured_light.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_superres.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_surface_matching.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_text.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_tracking.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_videostab.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_viz.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_ximgproc.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_xobjdetect.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_xphoto.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libimage_transport.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libclass_loader.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libPocoFoundation.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libdl.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libroslib.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/librospack.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libpython3.8.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libtinyxml2.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libtf2_ros.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libactionlib.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libtf2.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libmessage_filters.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libcamera_info_manager.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libcamera_calibration_parsers.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libroscpp.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libpthread.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/librosconsole.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/librosconsole_log4cxx.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/librosconsole_backend_interface.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/liblog4cxx.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libxmlrpcpp.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libroscpp_serialization.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/librostime.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_date_time.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /opt/ros/noetic/lib/libcpp_common.so +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_system.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.71.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libconsole_bridge.so.0.4 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_highgui.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_phase_unwrapping.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_optflow.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_datasets.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_plot.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_text.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_dnn.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_ml.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_videoio.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_ximgproc.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_video.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_imgcodecs.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_objdetect.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_calib3d.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_features2d.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_flann.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_photo.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_imgproc.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: /usr/lib/x86_64-linux-gnu/libopencv_core.so.4.2.0 +/home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node: ros_astra_camera/CMakeFiles/astra_camera_node.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/agilex/cobot_magic/camera_ws/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable /home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node" + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/astra_camera_node.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +ros_astra_camera/CMakeFiles/astra_camera_node.dir/build: /home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node + +.PHONY : ros_astra_camera/CMakeFiles/astra_camera_node.dir/build + +ros_astra_camera/CMakeFiles/astra_camera_node.dir/clean: + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && $(CMAKE_COMMAND) -P CMakeFiles/astra_camera_node.dir/cmake_clean.cmake +.PHONY : ros_astra_camera/CMakeFiles/astra_camera_node.dir/clean + +ros_astra_camera/CMakeFiles/astra_camera_node.dir/depend: + cd /home/agilex/cobot_magic/camera_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/agilex/cobot_magic/camera_ws/src /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : ros_astra_camera/CMakeFiles/astra_camera_node.dir/depend + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..a46e0eab50e7c8fc4639f6b42e037f12188317c5 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/depend.internal @@ -0,0 +1,334 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/AstraConfig.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/DeviceInfo.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/Extrinsics.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetBool.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetBoolRequest.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetBoolResponse.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraInfo.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraInfoRequest.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraInfoResponse.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraParams.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraParamsRequest.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraParamsResponse.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDeviceInfo.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDeviceInfoRequest.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDeviceInfoResponse.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDouble.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDoubleRequest.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDoubleResponse.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetInt32.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetInt32Request.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetInt32Response.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetString.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetStringRequest.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetStringResponse.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/Metadata.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetInt32.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetInt32Request.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetInt32Response.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetString.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetStringRequest.h + /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetStringResponse.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/constants.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/d2c_viewer.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/json.hpp + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/ob_camera_node.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/ob_camera_node_factory.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/ob_context.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/depth_conversions.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/depth_traits.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/point_cloud_proc.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/point_cloud_xyz.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/point_cloud_xyzrgb.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/types.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/utils.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/uvc_camera_driver.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Android-Arm/OniPlatformAndroid-Arm.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Linux-Arm/OniPlatformLinux-Arm.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Linux-x86/OniPlatformLinux-x86.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/MacOSX/OniPlatformMacOSX.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCAPI.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCEnums.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCProperties.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCTypes.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniEnums.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniPlatform.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniProperties.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniVersion.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OpenNI.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/PS1080.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Win32/OniPlatformWin32.h + /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/src/main.cpp + /opt/ros/noetic/include/camera_info_manager/camera_info_manager.h + /opt/ros/noetic/include/cv_bridge/cv_bridge.h + /opt/ros/noetic/include/dynamic_reconfigure/BoolParameter.h + /opt/ros/noetic/include/dynamic_reconfigure/Config.h + /opt/ros/noetic/include/dynamic_reconfigure/ConfigDescription.h + /opt/ros/noetic/include/dynamic_reconfigure/DoubleParameter.h + /opt/ros/noetic/include/dynamic_reconfigure/Group.h + /opt/ros/noetic/include/dynamic_reconfigure/GroupState.h + /opt/ros/noetic/include/dynamic_reconfigure/IntParameter.h + /opt/ros/noetic/include/dynamic_reconfigure/ParamDescription.h + /opt/ros/noetic/include/dynamic_reconfigure/Reconfigure.h + /opt/ros/noetic/include/dynamic_reconfigure/ReconfigureRequest.h + /opt/ros/noetic/include/dynamic_reconfigure/ReconfigureResponse.h + /opt/ros/noetic/include/dynamic_reconfigure/StrParameter.h + /opt/ros/noetic/include/dynamic_reconfigure/config_init_mutex.h + /opt/ros/noetic/include/dynamic_reconfigure/config_tools.h + /opt/ros/noetic/include/dynamic_reconfigure/server.h + /opt/ros/noetic/include/geometry_msgs/Quaternion.h + /opt/ros/noetic/include/geometry_msgs/Transform.h + /opt/ros/noetic/include/geometry_msgs/TransformStamped.h + /opt/ros/noetic/include/geometry_msgs/Vector3.h + /opt/ros/noetic/include/image_geometry/pinhole_camera_model.h + /opt/ros/noetic/include/image_transport/camera_publisher.h + /opt/ros/noetic/include/image_transport/camera_subscriber.h + /opt/ros/noetic/include/image_transport/exception.h + /opt/ros/noetic/include/image_transport/exports.h + /opt/ros/noetic/include/image_transport/image_transport.h + /opt/ros/noetic/include/image_transport/loader_fwds.h + /opt/ros/noetic/include/image_transport/publisher.h + /opt/ros/noetic/include/image_transport/single_subscriber_publisher.h + /opt/ros/noetic/include/image_transport/subscriber.h + /opt/ros/noetic/include/image_transport/subscriber_filter.h + /opt/ros/noetic/include/image_transport/transport_hints.h + /opt/ros/noetic/include/message_filters/connection.h + /opt/ros/noetic/include/message_filters/macros.h + /opt/ros/noetic/include/message_filters/null_types.h + /opt/ros/noetic/include/message_filters/signal1.h + /opt/ros/noetic/include/message_filters/signal9.h + /opt/ros/noetic/include/message_filters/simple_filter.h + /opt/ros/noetic/include/message_filters/subscriber.h + /opt/ros/noetic/include/message_filters/sync_policies/approximate_time.h + /opt/ros/noetic/include/message_filters/sync_policies/exact_time.h + /opt/ros/noetic/include/message_filters/synchronizer.h + /opt/ros/noetic/include/message_filters/time_synchronizer.h + /opt/ros/noetic/include/nodelet/exception.h + /opt/ros/noetic/include/nodelet/nodelet.h + /opt/ros/noetic/include/nodelet/nodeletdecl.h + /opt/ros/noetic/include/ros/advertise_options.h + /opt/ros/noetic/include/ros/advertise_service_options.h + /opt/ros/noetic/include/ros/assert.h + /opt/ros/noetic/include/ros/builtin_message_traits.h + /opt/ros/noetic/include/ros/common.h + /opt/ros/noetic/include/ros/console.h + /opt/ros/noetic/include/ros/console_backend.h + /opt/ros/noetic/include/ros/datatypes.h + /opt/ros/noetic/include/ros/duration.h + /opt/ros/noetic/include/ros/exception.h + /opt/ros/noetic/include/ros/exceptions.h + /opt/ros/noetic/include/ros/forwards.h + /opt/ros/noetic/include/ros/init.h + /opt/ros/noetic/include/ros/macros.h + /opt/ros/noetic/include/ros/master.h + /opt/ros/noetic/include/ros/message.h + /opt/ros/noetic/include/ros/message_event.h + /opt/ros/noetic/include/ros/message_forward.h + /opt/ros/noetic/include/ros/message_operations.h + /opt/ros/noetic/include/ros/message_traits.h + /opt/ros/noetic/include/ros/names.h + /opt/ros/noetic/include/ros/node_handle.h + /opt/ros/noetic/include/ros/param.h + /opt/ros/noetic/include/ros/parameter_adapter.h + /opt/ros/noetic/include/ros/platform.h + /opt/ros/noetic/include/ros/publisher.h + /opt/ros/noetic/include/ros/rate.h + /opt/ros/noetic/include/ros/ros.h + /opt/ros/noetic/include/ros/roscpp_serialization_macros.h + /opt/ros/noetic/include/ros/rostime_decl.h + /opt/ros/noetic/include/ros/serialization.h + /opt/ros/noetic/include/ros/serialized_message.h + /opt/ros/noetic/include/ros/service.h + /opt/ros/noetic/include/ros/service_callback_helper.h + /opt/ros/noetic/include/ros/service_client.h + /opt/ros/noetic/include/ros/service_client_options.h + /opt/ros/noetic/include/ros/service_server.h + /opt/ros/noetic/include/ros/service_traits.h + /opt/ros/noetic/include/ros/single_subscriber_publisher.h + /opt/ros/noetic/include/ros/spinner.h + /opt/ros/noetic/include/ros/static_assert.h + /opt/ros/noetic/include/ros/steady_timer.h + /opt/ros/noetic/include/ros/steady_timer_options.h + /opt/ros/noetic/include/ros/subscribe_options.h + /opt/ros/noetic/include/ros/subscriber.h + /opt/ros/noetic/include/ros/subscription_callback_helper.h + /opt/ros/noetic/include/ros/this_node.h + /opt/ros/noetic/include/ros/time.h + /opt/ros/noetic/include/ros/timer.h + /opt/ros/noetic/include/ros/timer_options.h + /opt/ros/noetic/include/ros/topic.h + /opt/ros/noetic/include/ros/transport_hints.h + /opt/ros/noetic/include/ros/types.h + /opt/ros/noetic/include/ros/wall_timer.h + /opt/ros/noetic/include/ros/wall_timer_options.h + /opt/ros/noetic/include/rosconsole/macros_generated.h + /opt/ros/noetic/include/sensor_msgs/CameraInfo.h + /opt/ros/noetic/include/sensor_msgs/CompressedImage.h + /opt/ros/noetic/include/sensor_msgs/Image.h + /opt/ros/noetic/include/sensor_msgs/PointCloud2.h + /opt/ros/noetic/include/sensor_msgs/PointField.h + /opt/ros/noetic/include/sensor_msgs/RegionOfInterest.h + /opt/ros/noetic/include/sensor_msgs/SetCameraInfo.h + /opt/ros/noetic/include/sensor_msgs/SetCameraInfoRequest.h + /opt/ros/noetic/include/sensor_msgs/SetCameraInfoResponse.h + /opt/ros/noetic/include/sensor_msgs/distortion_models.h + /opt/ros/noetic/include/sensor_msgs/image_encodings.h + /opt/ros/noetic/include/sensor_msgs/impl/point_cloud2_iterator.h + /opt/ros/noetic/include/sensor_msgs/point_cloud2_iterator.h + /opt/ros/noetic/include/std_msgs/Empty.h + /opt/ros/noetic/include/std_msgs/Header.h + /opt/ros/noetic/include/std_srvs/Empty.h + /opt/ros/noetic/include/std_srvs/EmptyRequest.h + /opt/ros/noetic/include/std_srvs/EmptyResponse.h + /opt/ros/noetic/include/std_srvs/SetBool.h + /opt/ros/noetic/include/std_srvs/SetBoolRequest.h + /opt/ros/noetic/include/std_srvs/SetBoolResponse.h + /opt/ros/noetic/include/tf2/LinearMath/Matrix3x3.h + /opt/ros/noetic/include/tf2/LinearMath/MinMax.h + /opt/ros/noetic/include/tf2/LinearMath/QuadWord.h + /opt/ros/noetic/include/tf2/LinearMath/Quaternion.h + /opt/ros/noetic/include/tf2/LinearMath/Scalar.h + /opt/ros/noetic/include/tf2/LinearMath/Transform.h + /opt/ros/noetic/include/tf2/LinearMath/Vector3.h + /opt/ros/noetic/include/tf2_msgs/TFMessage.h + /opt/ros/noetic/include/tf2_ros/static_transform_broadcaster.h + /opt/ros/noetic/include/tf2_ros/transform_broadcaster.h + /opt/ros/noetic/include/xmlrpcpp/XmlRpcDecl.h + /opt/ros/noetic/include/xmlrpcpp/XmlRpcValue.h + /usr/include/opencv4/opencv2/calib3d.hpp + /usr/include/opencv4/opencv2/core.hpp + /usr/include/opencv4/opencv2/core/affine.hpp + /usr/include/opencv4/opencv2/core/async.hpp + /usr/include/opencv4/opencv2/core/base.hpp + /usr/include/opencv4/opencv2/core/bufferpool.hpp + /usr/include/opencv4/opencv2/core/check.hpp + /usr/include/opencv4/opencv2/core/core.hpp + /usr/include/opencv4/opencv2/core/core_c.h + /usr/include/opencv4/opencv2/core/cuda.hpp + /usr/include/opencv4/opencv2/core/cuda.inl.hpp + /usr/include/opencv4/opencv2/core/cuda_types.hpp + /usr/include/opencv4/opencv2/core/cv_cpu_dispatch.h + /usr/include/opencv4/opencv2/core/cv_cpu_helper.h + /usr/include/opencv4/opencv2/core/cvdef.h + /usr/include/opencv4/opencv2/core/cvstd.hpp + /usr/include/opencv4/opencv2/core/cvstd.inl.hpp + /usr/include/opencv4/opencv2/core/cvstd_wrapper.hpp + /usr/include/opencv4/opencv2/core/fast_math.hpp + /usr/include/opencv4/opencv2/core/hal/interface.h + /usr/include/opencv4/opencv2/core/hal/msa_macros.h + /usr/include/opencv4/opencv2/core/mat.hpp + /usr/include/opencv4/opencv2/core/mat.inl.hpp + /usr/include/opencv4/opencv2/core/matx.hpp + /usr/include/opencv4/opencv2/core/neon_utils.hpp + /usr/include/opencv4/opencv2/core/operations.hpp + /usr/include/opencv4/opencv2/core/optim.hpp + /usr/include/opencv4/opencv2/core/ovx.hpp + /usr/include/opencv4/opencv2/core/persistence.hpp + /usr/include/opencv4/opencv2/core/saturate.hpp + /usr/include/opencv4/opencv2/core/traits.hpp + /usr/include/opencv4/opencv2/core/types.hpp + /usr/include/opencv4/opencv2/core/types_c.h + /usr/include/opencv4/opencv2/core/utility.hpp + /usr/include/opencv4/opencv2/core/utils/instrumentation.hpp + /usr/include/opencv4/opencv2/core/utils/tls.hpp + /usr/include/opencv4/opencv2/core/version.hpp + /usr/include/opencv4/opencv2/core/vsx_utils.hpp + /usr/include/opencv4/opencv2/dnn.hpp + /usr/include/opencv4/opencv2/dnn/dict.hpp + /usr/include/opencv4/opencv2/dnn/dnn.hpp + /usr/include/opencv4/opencv2/dnn/dnn.inl.hpp + /usr/include/opencv4/opencv2/dnn/layer.hpp + /usr/include/opencv4/opencv2/dnn/utils/inference_engine.hpp + /usr/include/opencv4/opencv2/dnn/version.hpp + /usr/include/opencv4/opencv2/features2d.hpp + /usr/include/opencv4/opencv2/flann.hpp + /usr/include/opencv4/opencv2/flann/all_indices.h + /usr/include/opencv4/opencv2/flann/allocator.h + /usr/include/opencv4/opencv2/flann/any.h + /usr/include/opencv4/opencv2/flann/autotuned_index.h + /usr/include/opencv4/opencv2/flann/composite_index.h + /usr/include/opencv4/opencv2/flann/config.h + /usr/include/opencv4/opencv2/flann/defines.h + /usr/include/opencv4/opencv2/flann/dist.h + /usr/include/opencv4/opencv2/flann/dynamic_bitset.h + /usr/include/opencv4/opencv2/flann/flann_base.hpp + /usr/include/opencv4/opencv2/flann/general.h + /usr/include/opencv4/opencv2/flann/ground_truth.h + /usr/include/opencv4/opencv2/flann/heap.h + /usr/include/opencv4/opencv2/flann/hierarchical_clustering_index.h + /usr/include/opencv4/opencv2/flann/index_testing.h + /usr/include/opencv4/opencv2/flann/kdtree_index.h + /usr/include/opencv4/opencv2/flann/kdtree_single_index.h + /usr/include/opencv4/opencv2/flann/kmeans_index.h + /usr/include/opencv4/opencv2/flann/linear_index.h + /usr/include/opencv4/opencv2/flann/logger.h + /usr/include/opencv4/opencv2/flann/lsh_index.h + /usr/include/opencv4/opencv2/flann/lsh_table.h + /usr/include/opencv4/opencv2/flann/matrix.h + /usr/include/opencv4/opencv2/flann/miniflann.hpp + /usr/include/opencv4/opencv2/flann/nn_index.h + /usr/include/opencv4/opencv2/flann/params.h + /usr/include/opencv4/opencv2/flann/random.h + /usr/include/opencv4/opencv2/flann/result_set.h + /usr/include/opencv4/opencv2/flann/sampling.h + /usr/include/opencv4/opencv2/flann/saving.h + /usr/include/opencv4/opencv2/flann/timer.h + /usr/include/opencv4/opencv2/highgui.hpp + /usr/include/opencv4/opencv2/imgcodecs.hpp + /usr/include/opencv4/opencv2/imgproc.hpp + /usr/include/opencv4/opencv2/imgproc/imgproc.hpp + /usr/include/opencv4/opencv2/imgproc/types_c.h + /usr/include/opencv4/opencv2/ml.hpp + /usr/include/opencv4/opencv2/ml/ml.inl.hpp + /usr/include/opencv4/opencv2/objdetect.hpp + /usr/include/opencv4/opencv2/objdetect/detection_based_tracker.hpp + /usr/include/opencv4/opencv2/opencv.hpp + /usr/include/opencv4/opencv2/opencv_modules.hpp + /usr/include/opencv4/opencv2/photo.hpp + /usr/include/opencv4/opencv2/shape.hpp + /usr/include/opencv4/opencv2/shape/emdL1.hpp + /usr/include/opencv4/opencv2/shape/hist_cost.hpp + /usr/include/opencv4/opencv2/shape/shape_distance.hpp + /usr/include/opencv4/opencv2/shape/shape_transformer.hpp + /usr/include/opencv4/opencv2/stitching.hpp + /usr/include/opencv4/opencv2/stitching/detail/blenders.hpp + /usr/include/opencv4/opencv2/stitching/detail/camera.hpp + /usr/include/opencv4/opencv2/stitching/detail/exposure_compensate.hpp + /usr/include/opencv4/opencv2/stitching/detail/matchers.hpp + /usr/include/opencv4/opencv2/stitching/detail/motion_estimators.hpp + /usr/include/opencv4/opencv2/stitching/detail/seam_finders.hpp + /usr/include/opencv4/opencv2/stitching/detail/util.hpp + /usr/include/opencv4/opencv2/stitching/detail/util_inl.hpp + /usr/include/opencv4/opencv2/stitching/detail/warpers.hpp + /usr/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp + /usr/include/opencv4/opencv2/stitching/warpers.hpp + /usr/include/opencv4/opencv2/superres.hpp + /usr/include/opencv4/opencv2/superres/optical_flow.hpp + /usr/include/opencv4/opencv2/video.hpp + /usr/include/opencv4/opencv2/video/background_segm.hpp + /usr/include/opencv4/opencv2/video/tracking.hpp + /usr/include/opencv4/opencv2/videoio.hpp + /usr/include/opencv4/opencv2/videostab.hpp + /usr/include/opencv4/opencv2/videostab/deblurring.hpp + /usr/include/opencv4/opencv2/videostab/fast_marching.hpp + /usr/include/opencv4/opencv2/videostab/fast_marching_inl.hpp + /usr/include/opencv4/opencv2/videostab/frame_source.hpp + /usr/include/opencv4/opencv2/videostab/global_motion.hpp + /usr/include/opencv4/opencv2/videostab/inpainting.hpp + /usr/include/opencv4/opencv2/videostab/log.hpp + /usr/include/opencv4/opencv2/videostab/motion_core.hpp + /usr/include/opencv4/opencv2/videostab/motion_stabilizing.hpp + /usr/include/opencv4/opencv2/videostab/optical_flow.hpp + /usr/include/opencv4/opencv2/videostab/outlier_rejection.hpp + /usr/include/opencv4/opencv2/videostab/ring_buffer.hpp + /usr/include/opencv4/opencv2/videostab/stabilizer.hpp + /usr/include/opencv4/opencv2/videostab/wobble_suppression.hpp + /usr/include/opencv4/opencv2/viz.hpp + /usr/include/opencv4/opencv2/viz/types.hpp + /usr/include/opencv4/opencv2/viz/viz3d.hpp + /usr/include/opencv4/opencv2/viz/vizcore.hpp + /usr/include/opencv4/opencv2/viz/widgets.hpp diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/depend.make b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..c4eb1821405b92c8b143162a51cecacaceef36d8 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/depend.make @@ -0,0 +1,334 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/AstraConfig.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/DeviceInfo.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/Extrinsics.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetBool.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetBoolRequest.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetBoolResponse.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraInfo.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraInfoRequest.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraInfoResponse.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraParams.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraParamsRequest.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetCameraParamsResponse.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDeviceInfo.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDeviceInfoRequest.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDeviceInfoResponse.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDouble.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDoubleRequest.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetDoubleResponse.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetInt32.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetInt32Request.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetInt32Response.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetString.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetStringRequest.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/GetStringResponse.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/Metadata.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetInt32.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetInt32Request.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetInt32Response.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetString.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetStringRequest.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/devel/include/astra_camera/SetStringResponse.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/constants.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/d2c_viewer.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/json.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/ob_camera_node.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/ob_camera_node_factory.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/ob_context.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/depth_conversions.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/depth_traits.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/point_cloud_proc.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/point_cloud_xyz.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/point_cloud_proc/point_cloud_xyzrgb.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/types.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/utils.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/astra_camera/uvc_camera_driver.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Android-Arm/OniPlatformAndroid-Arm.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Linux-Arm/OniPlatformLinux-Arm.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Linux-x86/OniPlatformLinux-x86.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/MacOSX/OniPlatformMacOSX.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCAPI.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCEnums.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCProperties.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniCTypes.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniEnums.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniPlatform.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniProperties.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OniVersion.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/OpenNI.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/PS1080.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2/Win32/OniPlatformWin32.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/src/main.cpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/camera_info_manager/camera_info_manager.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/cv_bridge/cv_bridge.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/BoolParameter.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/Config.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/ConfigDescription.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/DoubleParameter.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/Group.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/GroupState.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/IntParameter.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/ParamDescription.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/Reconfigure.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/ReconfigureRequest.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/ReconfigureResponse.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/StrParameter.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/config_init_mutex.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/config_tools.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/dynamic_reconfigure/server.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/geometry_msgs/Quaternion.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/geometry_msgs/Transform.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/geometry_msgs/TransformStamped.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/geometry_msgs/Vector3.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/image_geometry/pinhole_camera_model.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/image_transport/camera_publisher.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/image_transport/camera_subscriber.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/image_transport/exception.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/image_transport/exports.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/image_transport/image_transport.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/image_transport/loader_fwds.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/image_transport/publisher.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/image_transport/single_subscriber_publisher.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/image_transport/subscriber.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/image_transport/subscriber_filter.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/image_transport/transport_hints.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/message_filters/connection.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/message_filters/macros.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/message_filters/null_types.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/message_filters/signal1.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/message_filters/signal9.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/message_filters/simple_filter.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/message_filters/subscriber.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/message_filters/sync_policies/approximate_time.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/message_filters/sync_policies/exact_time.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/message_filters/synchronizer.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/message_filters/time_synchronizer.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/nodelet/exception.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/nodelet/nodelet.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/nodelet/nodeletdecl.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/advertise_options.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/advertise_service_options.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/assert.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/builtin_message_traits.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/common.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/console.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/console_backend.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/datatypes.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/duration.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/exception.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/exceptions.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/forwards.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/init.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/macros.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/master.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/message.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/message_event.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/message_forward.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/message_operations.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/message_traits.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/names.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/node_handle.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/param.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/parameter_adapter.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/platform.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/publisher.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/rate.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/ros.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/roscpp_serialization_macros.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/rostime_decl.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/serialization.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/serialized_message.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/service.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/service_callback_helper.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/service_client.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/service_client_options.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/service_server.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/service_traits.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/single_subscriber_publisher.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/spinner.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/static_assert.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/steady_timer.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/steady_timer_options.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/subscribe_options.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/subscriber.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/subscription_callback_helper.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/this_node.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/time.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/timer.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/timer_options.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/topic.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/transport_hints.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/types.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/wall_timer.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/ros/wall_timer_options.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/rosconsole/macros_generated.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/sensor_msgs/CameraInfo.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/sensor_msgs/CompressedImage.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/sensor_msgs/Image.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/sensor_msgs/PointCloud2.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/sensor_msgs/PointField.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/sensor_msgs/RegionOfInterest.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/sensor_msgs/SetCameraInfo.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/sensor_msgs/SetCameraInfoRequest.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/sensor_msgs/SetCameraInfoResponse.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/sensor_msgs/distortion_models.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/sensor_msgs/image_encodings.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/sensor_msgs/impl/point_cloud2_iterator.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/sensor_msgs/point_cloud2_iterator.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/std_msgs/Empty.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/std_msgs/Header.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/std_srvs/Empty.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/std_srvs/EmptyRequest.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/std_srvs/EmptyResponse.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/std_srvs/SetBool.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/std_srvs/SetBoolRequest.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/std_srvs/SetBoolResponse.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/tf2/LinearMath/Matrix3x3.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/tf2/LinearMath/MinMax.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/tf2/LinearMath/QuadWord.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/tf2/LinearMath/Quaternion.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/tf2/LinearMath/Scalar.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/tf2/LinearMath/Transform.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/tf2/LinearMath/Vector3.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/tf2_msgs/TFMessage.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/tf2_ros/static_transform_broadcaster.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/tf2_ros/transform_broadcaster.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/xmlrpcpp/XmlRpcDecl.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /opt/ros/noetic/include/xmlrpcpp/XmlRpcValue.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/calib3d.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/affine.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/async.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/base.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/bufferpool.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/check.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/core.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/core_c.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/cuda.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/cuda.inl.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/cuda_types.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/cv_cpu_dispatch.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/cv_cpu_helper.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/cvdef.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/cvstd.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/cvstd.inl.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/cvstd_wrapper.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/fast_math.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/hal/interface.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/hal/msa_macros.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/mat.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/mat.inl.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/matx.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/neon_utils.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/operations.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/optim.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/ovx.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/persistence.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/saturate.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/traits.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/types.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/types_c.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/utility.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/utils/instrumentation.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/utils/tls.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/version.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/core/vsx_utils.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/dnn.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/dnn/dict.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/dnn/dnn.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/dnn/dnn.inl.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/dnn/layer.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/dnn/utils/inference_engine.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/dnn/version.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/features2d.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/all_indices.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/allocator.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/any.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/autotuned_index.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/composite_index.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/config.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/defines.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/dist.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/dynamic_bitset.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/flann_base.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/general.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/ground_truth.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/heap.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/hierarchical_clustering_index.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/index_testing.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/kdtree_index.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/kdtree_single_index.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/kmeans_index.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/linear_index.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/logger.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/lsh_index.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/lsh_table.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/matrix.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/miniflann.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/nn_index.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/params.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/random.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/result_set.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/sampling.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/saving.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/flann/timer.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/highgui.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/imgcodecs.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/imgproc.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/imgproc/imgproc.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/imgproc/types_c.h +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/ml.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/ml/ml.inl.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/objdetect.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/objdetect/detection_based_tracker.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/opencv.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/opencv_modules.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/photo.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/shape.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/shape/emdL1.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/shape/hist_cost.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/shape/shape_distance.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/shape/shape_transformer.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/stitching.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/stitching/detail/blenders.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/stitching/detail/camera.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/stitching/detail/exposure_compensate.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/stitching/detail/matchers.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/stitching/detail/motion_estimators.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/stitching/detail/seam_finders.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/stitching/detail/util.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/stitching/detail/util_inl.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/stitching/detail/warpers.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/stitching/warpers.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/superres.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/superres/optical_flow.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/video.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/video/background_segm.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/video/tracking.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videoio.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/deblurring.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/fast_marching.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/fast_marching_inl.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/frame_source.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/global_motion.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/inpainting.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/log.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/motion_core.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/motion_stabilizing.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/optical_flow.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/outlier_rejection.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/ring_buffer.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/stabilizer.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/videostab/wobble_suppression.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/viz.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/viz/types.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/viz/viz3d.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/viz/vizcore.hpp +ros_astra_camera/CMakeFiles/astra_camera_node.dir/src/main.cpp.o: /usr/include/opencv4/opencv2/viz/widgets.hpp + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/flags.make b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/flags.make new file mode 100644 index 0000000000000000000000000000000000000000..115ae8c308c9afc12b21ed2cc21773c019aa14bc --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -fPIC -O3 -O3 -DNDEBUG -w -Wall -Wextra -Wpedantic -std=gnu++14 + +CXX_DEFINES = -DROSCONSOLE_BACKEND_LOG4CXX -DROS_BUILD_SHARED_LIBS=1 -DROS_PACKAGE_NAME=\"astra_camera\" -Dlibuvc_VERSION_MAJOR="" -Dlibuvc_VERSION_MINOR="" -Dlibuvc_VERSION_PATCH="" + +CXX_INCLUDES = -I/home/agilex/cobot_magic/camera_ws/devel/include -I/home/agilex/cobot_magic/camera_ws/build/ros_astra_camera/include -I/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include -I/opt/ros/noetic/include -I/opt/ros/noetic/share/xmlrpcpp/cmake/../../../include/xmlrpcpp -I/usr/include/libusb-1.0 -isystem /usr/include/opencv4 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/link.txt b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6d82467e4a6c47e4af453f380fe8019dc801cf2 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -O3 -O3 -DNDEBUG CMakeFiles/astra_camera_node.dir/src/main.cpp.o -o /home/agilex/cobot_magic/camera_ws/devel/lib/astra_camera/astra_camera_node -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2_redist/x64 -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_calib3d -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_core -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_dnn -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_features2d -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_flann -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_highgui -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_imgcodecs -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_imgproc -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_ml -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_objdetect -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_photo -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_stitching -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_video -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_videoio -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_aruco -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_bgsegm -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_bioinspired -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_ccalib -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_datasets -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_dnn_objdetect -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_dnn_superres -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_dpm -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_face -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_freetype -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_fuzzy -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_hdf -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_hfs -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_img_hash -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_line_descriptor -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_optflow -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_phase_unwrapping -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_plot -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_quality -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_reg -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_rgbd -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_saliency -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_shape -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_stereo -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_structured_light -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_superres -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_surface_matching -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_text -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_tracking -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_videostab -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_viz -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_ximgproc -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_xobjdetect -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_xphoto -Wl,-rpath,/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2_redist/x64:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_calib3d:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_core:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_dnn:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_features2d:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_flann:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_highgui:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_imgcodecs:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_imgproc:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_ml:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_objdetect:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_photo:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_stitching:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_video:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_videoio:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_aruco:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_bgsegm:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_bioinspired:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_ccalib:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_datasets:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_dnn_objdetect:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_dnn_superres:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_dpm:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_face:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_freetype:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_fuzzy:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_hdf:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_hfs:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_img_hash:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_line_descriptor:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_optflow:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_phase_unwrapping:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_plot:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_quality:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_reg:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_rgbd:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_saliency:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_shape:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_stereo:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_structured_light:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_superres:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_surface_matching:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_text:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_tracking:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_videostab:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_viz:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_ximgproc:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_xobjdetect:/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/opencv_xphoto:/home/agilex/cobot_magic/camera_ws/devel/lib:/opt/ros/noetic/lib: -lOpenNI2 -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2_redist/x64 /home/agilex/cobot_magic/camera_ws/devel/lib/libastra_camera.so /opt/ros/noetic/lib/libcv_bridge.so /opt/ros/noetic/lib/libdynamic_reconfigure_config_init_mutex.so /opt/ros/noetic/lib/libimage_geometry.so /usr/lib/x86_64-linux-gnu/libopencv_calib3d.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_core.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_dnn.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_features2d.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_flann.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_highgui.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_imgcodecs.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_imgproc.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_ml.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_objdetect.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_photo.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_stitching.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_video.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_videoio.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_aruco.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_bgsegm.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_bioinspired.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_ccalib.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_datasets.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_dnn_objdetect.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_dnn_superres.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_dpm.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_face.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_freetype.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_fuzzy.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_hdf.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_hfs.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_img_hash.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_line_descriptor.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_optflow.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_phase_unwrapping.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_plot.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_quality.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_reg.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_rgbd.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_saliency.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_shape.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_stereo.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_structured_light.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_superres.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_surface_matching.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_text.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_tracking.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_videostab.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_viz.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_ximgproc.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_xobjdetect.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_xphoto.so.4.2.0 /opt/ros/noetic/lib/libimage_transport.so /opt/ros/noetic/lib/libclass_loader.so /usr/lib/x86_64-linux-gnu/libPocoFoundation.so /usr/lib/x86_64-linux-gnu/libdl.so /opt/ros/noetic/lib/libroslib.so /opt/ros/noetic/lib/librospack.so /usr/lib/x86_64-linux-gnu/libpython3.8.so /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.71.0 /usr/lib/x86_64-linux-gnu/libtinyxml2.so /opt/ros/noetic/lib/libtf2_ros.so /opt/ros/noetic/lib/libactionlib.so /opt/ros/noetic/lib/libtf2.so /opt/ros/noetic/lib/libmessage_filters.so /opt/ros/noetic/lib/libcamera_info_manager.so /opt/ros/noetic/lib/libcamera_calibration_parsers.so /opt/ros/noetic/lib/libroscpp.so /usr/lib/x86_64-linux-gnu/libpthread.so /usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.71.0 /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.71.0 /opt/ros/noetic/lib/librosconsole.so /opt/ros/noetic/lib/librosconsole_log4cxx.so /opt/ros/noetic/lib/librosconsole_backend_interface.so /usr/lib/x86_64-linux-gnu/liblog4cxx.so /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.71.0 /opt/ros/noetic/lib/libxmlrpcpp.so /opt/ros/noetic/lib/libroscpp_serialization.so /opt/ros/noetic/lib/librostime.so /usr/lib/x86_64-linux-gnu/libboost_date_time.so.1.71.0 /opt/ros/noetic/lib/libcpp_common.so /usr/lib/x86_64-linux-gnu/libboost_system.so.1.71.0 /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.71.0 /usr/lib/x86_64-linux-gnu/libconsole_bridge.so.0.4 -lpthread /usr/lib/x86_64-linux-gnu/libopencv_stitching.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_aruco.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_bgsegm.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_bioinspired.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_ccalib.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_dnn_objdetect.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_dnn_superres.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_dpm.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_face.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_freetype.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_fuzzy.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_hdf.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_hfs.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_img_hash.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_line_descriptor.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_quality.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_reg.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_rgbd.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_saliency.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_shape.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_stereo.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_structured_light.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_superres.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_surface_matching.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_tracking.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_videostab.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_viz.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_xobjdetect.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_xphoto.so.4.2.0 -luvc -lusb-1.0 -lglog -lOpenNI2 -L/home/agilex/cobot_magic/camera_ws/src/ros_astra_camera/include/openni2_redist/x64 /opt/ros/noetic/lib/libcv_bridge.so /opt/ros/noetic/lib/libdynamic_reconfigure_config_init_mutex.so /opt/ros/noetic/lib/libimage_geometry.so /usr/lib/x86_64-linux-gnu/libopencv_calib3d.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_core.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_dnn.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_features2d.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_flann.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_highgui.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_imgcodecs.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_imgproc.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_ml.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_objdetect.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_photo.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_stitching.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_video.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_videoio.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_aruco.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_bgsegm.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_bioinspired.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_ccalib.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_datasets.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_dnn_objdetect.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_dnn_superres.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_dpm.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_face.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_freetype.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_fuzzy.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_hdf.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_hfs.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_img_hash.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_line_descriptor.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_optflow.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_phase_unwrapping.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_plot.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_quality.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_reg.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_rgbd.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_saliency.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_shape.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_stereo.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_structured_light.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_superres.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_surface_matching.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_text.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_tracking.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_videostab.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_viz.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_ximgproc.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_xobjdetect.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_xphoto.so.4.2.0 /opt/ros/noetic/lib/libimage_transport.so /opt/ros/noetic/lib/libclass_loader.so /usr/lib/x86_64-linux-gnu/libPocoFoundation.so /usr/lib/x86_64-linux-gnu/libdl.so /opt/ros/noetic/lib/libroslib.so /opt/ros/noetic/lib/librospack.so /usr/lib/x86_64-linux-gnu/libpython3.8.so /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.71.0 /usr/lib/x86_64-linux-gnu/libtinyxml2.so /opt/ros/noetic/lib/libtf2_ros.so /opt/ros/noetic/lib/libactionlib.so /opt/ros/noetic/lib/libtf2.so /opt/ros/noetic/lib/libmessage_filters.so /opt/ros/noetic/lib/libcamera_info_manager.so /opt/ros/noetic/lib/libcamera_calibration_parsers.so /opt/ros/noetic/lib/libroscpp.so /usr/lib/x86_64-linux-gnu/libpthread.so /usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.71.0 /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.71.0 /opt/ros/noetic/lib/librosconsole.so /opt/ros/noetic/lib/librosconsole_log4cxx.so /opt/ros/noetic/lib/librosconsole_backend_interface.so /usr/lib/x86_64-linux-gnu/liblog4cxx.so /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.71.0 /opt/ros/noetic/lib/libxmlrpcpp.so /opt/ros/noetic/lib/libroscpp_serialization.so /opt/ros/noetic/lib/librostime.so /usr/lib/x86_64-linux-gnu/libboost_date_time.so.1.71.0 /opt/ros/noetic/lib/libcpp_common.so /usr/lib/x86_64-linux-gnu/libboost_system.so.1.71.0 /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.71.0 /usr/lib/x86_64-linux-gnu/libconsole_bridge.so.0.4 -lpthread /usr/lib/x86_64-linux-gnu/libopencv_highgui.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_phase_unwrapping.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_optflow.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_datasets.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_plot.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_text.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_dnn.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_ml.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_videoio.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_ximgproc.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_video.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_imgcodecs.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_objdetect.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_calib3d.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_features2d.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_flann.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_photo.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_imgproc.so.4.2.0 /usr/lib/x86_64-linux-gnu/libopencv_core.so.4.2.0 -luvc -lusb-1.0 -lglog diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/progress.make b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..a5416a732c1844254f45d461e979066cf41666ac --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/astra_camera_node.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 65 +CMAKE_PROGRESS_2 = 66 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..820ac958f43c6eebf66f6d6d990cc6f9ee92bdee --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/geometry_msgs_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/progress.make b/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..67f285a2b286be7fc34e84068b61e34e06956953 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/geometry_msgs_generate_messages_eus.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_eus.dir/progress.make b/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_eus.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/geometry_msgs_generate_messages_eus.dir/progress.make @@ -0,0 +1 @@ + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/progress.marks b/camera_ws/build/ros_astra_camera/CMakeFiles/progress.marks new file mode 100644 index 0000000000000000000000000000000000000000..3fdcd7c44cb1791f45e7386a8f230e018fd7e052 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/progress.marks @@ -0,0 +1 @@ +67 diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_lisp.dir/DependInfo.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_lisp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_lisp.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_lisp.dir/progress.make b/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make b/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..e7b2fcc45207e0554645e317420ff134c83e9a29 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/agilex/cobot_magic/camera_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/agilex/cobot_magic/camera_ws/build + +# Utility rule file for roscpp_generate_messages_nodejs. + +# Include the progress variables for this target. +include ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/progress.make + +roscpp_generate_messages_nodejs: ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/build.make + +.PHONY : roscpp_generate_messages_nodejs + +# Rule to build all files generated by this target. +ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/build: roscpp_generate_messages_nodejs + +.PHONY : ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/build + +ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean: + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && $(CMAKE_COMMAND) -P CMakeFiles/roscpp_generate_messages_nodejs.dir/cmake_clean.cmake +.PHONY : ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/clean + +ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/depend: + cd /home/agilex/cobot_magic/camera_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/agilex/cobot_magic/camera_ws/src /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/depend + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/depend.make b/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/depend.make @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/progress.make b/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/roscpp_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/depend.make b/camera_ws/build/ros_astra_camera/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/depend.make new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/rosgraph_msgs_generate_messages_nodejs.dir/depend.make @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/DependInfo.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/cmake_clean.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..1716093339a5610e028fb149280807108a20bb24 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/sensor_msgs_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/progress.make b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build.make b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..6a53498a06069ad8302d9cddd83502941e96434a --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/agilex/cobot_magic/camera_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/agilex/cobot_magic/camera_ws/build + +# Utility rule file for sensor_msgs_generate_messages_lisp. + +# Include the progress variables for this target. +include ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/progress.make + +sensor_msgs_generate_messages_lisp: ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build.make + +.PHONY : sensor_msgs_generate_messages_lisp + +# Rule to build all files generated by this target. +ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build: sensor_msgs_generate_messages_lisp + +.PHONY : ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build + +ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/clean: + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && $(CMAKE_COMMAND) -P CMakeFiles/sensor_msgs_generate_messages_lisp.dir/cmake_clean.cmake +.PHONY : ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/clean + +ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/depend: + cd /home/agilex/cobot_magic/camera_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/agilex/cobot_magic/camera_ws/src /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/depend + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/build.make b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..7bd7b167124e51b1372984f74d22a0178fc26720 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/agilex/cobot_magic/camera_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/agilex/cobot_magic/camera_ws/build + +# Utility rule file for sensor_msgs_generate_messages_py. + +# Include the progress variables for this target. +include ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/progress.make + +sensor_msgs_generate_messages_py: ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/build.make + +.PHONY : sensor_msgs_generate_messages_py + +# Rule to build all files generated by this target. +ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/build: sensor_msgs_generate_messages_py + +.PHONY : ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/build + +ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/clean: + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && $(CMAKE_COMMAND) -P CMakeFiles/sensor_msgs_generate_messages_py.dir/cmake_clean.cmake +.PHONY : ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/clean + +ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/depend: + cd /home/agilex/cobot_magic/camera_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/agilex/cobot_magic/camera_ws/src /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/depend + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/cmake_clean.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..a5188efec73b5f5a27435b62a5e9faabbbda323b --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/sensor_msgs_generate_messages_py.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/sensor_msgs_generate_messages_py.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make new file mode 100644 index 0000000000000000000000000000000000000000..99ef6562804717af286b5777742c934887e97369 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/agilex/cobot_magic/camera_ws/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/agilex/cobot_magic/camera_ws/build + +# Utility rule file for std_msgs_generate_messages_cpp. + +# Include the progress variables for this target. +include ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/progress.make + +std_msgs_generate_messages_cpp: ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make + +.PHONY : std_msgs_generate_messages_cpp + +# Rule to build all files generated by this target. +ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/build: std_msgs_generate_messages_cpp + +.PHONY : ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/build + +ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean: + cd /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera && $(CMAKE_COMMAND) -P CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean.cmake +.PHONY : ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/clean + +ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/depend: + cd /home/agilex/cobot_magic/camera_ws/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/agilex/cobot_magic/camera_ws/src /home/agilex/cobot_magic/camera_ws/src/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera /home/agilex/cobot_magic/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/depend + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..0d092bf7dcb1a5955b6c2c4eef8f16df0593f3ea --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_msgs_generate_messages_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_cpp.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..b995112eab054ad92b9ec2bd7533b328f13f306e --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/std_msgs_generate_messages_lisp.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_lisp.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_lisp.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_lisp.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_lisp.dir/progress.make b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_lisp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_lisp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_nodejs.dir/depend.internal b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_nodejs.dir/depend.internal new file mode 100644 index 0000000000000000000000000000000000000000..f647855fc483eef4359d230d8e2650c6191dc079 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_nodejs.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/tf2_msgs_generate_messages_cpp.dir/progress.make b/camera_ws/build/ros_astra_camera/CMakeFiles/tf2_msgs_generate_messages_cpp.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/tf2_msgs_generate_messages_cpp.dir/progress.make @@ -0,0 +1 @@ + diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/tf2_msgs_generate_messages_nodejs.dir/DependInfo.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/tf2_msgs_generate_messages_nodejs.dir/DependInfo.cmake new file mode 100644 index 0000000000000000000000000000000000000000..19fab2149bf120962a1699d74b7373348dc4c117 --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/tf2_msgs_generate_messages_nodejs.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/tf2_msgs_generate_messages_nodejs.dir/cmake_clean.cmake b/camera_ws/build/ros_astra_camera/CMakeFiles/tf2_msgs_generate_messages_nodejs.dir/cmake_clean.cmake new file mode 100644 index 0000000000000000000000000000000000000000..bd97d95a76d7370ff6697d94c15fbe0b63dadd4c --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/tf2_msgs_generate_messages_nodejs.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/tf2_msgs_generate_messages_nodejs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/camera_ws/build/ros_astra_camera/CMakeFiles/tf2_msgs_generate_messages_nodejs.dir/progress.make b/camera_ws/build/ros_astra_camera/CMakeFiles/tf2_msgs_generate_messages_nodejs.dir/progress.make new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/camera_ws/build/ros_astra_camera/CMakeFiles/tf2_msgs_generate_messages_nodejs.dir/progress.make @@ -0,0 +1 @@ + diff --git a/collect_data/collect_data.py b/collect_data/collect_data.py new file mode 100644 index 0000000000000000000000000000000000000000..e2a7ab37ef30cfee343cf9d086bae2aa5e59f92d --- /dev/null +++ b/collect_data/collect_data.py @@ -0,0 +1,455 @@ +# -- coding: UTF-8 +import os +import time +import numpy as np +import h5py +import argparse +import dm_env + +import collections +from collections import deque + +import rospy +from sensor_msgs.msg import JointState +from sensor_msgs.msg import Image +from nav_msgs.msg import Odometry +from cv_bridge import CvBridge +import sys +import cv2 + +# 保存数据函数 +def save_data(args, timesteps, actions, dataset_path): + # 数据字典 + data_size = len(actions) + data_dict = { + # 一个是奖励里面的qpos,qvel, effort ,一个是实际发的acition + '/observations/qpos': [], + '/observations/qvel': [], + '/observations/effort': [], + '/action': [], + '/base_action': [], + # '/base_action_t265': [], + } + + # 相机字典 观察的图像 + for cam_name in args.camera_names: + data_dict[f'/observations/images/{cam_name}'] = [] + if args.use_depth_image: + data_dict[f'/observations/images_depth/{cam_name}'] = [] + + # len(action): max_timesteps, len(time_steps): max_timesteps + 1 + # 动作长度 遍历动作 + while actions: + # 循环弹出一个队列 + action = actions.pop(0) # 动作 当前动作 + ts = timesteps.pop(0) # 奖励 前一帧 + + # 往字典里面添值 + # Timestep返回的qpos,qvel,effort + data_dict['/observations/qpos'].append(ts.observation['qpos']) + data_dict['/observations/qvel'].append(ts.observation['qvel']) + data_dict['/observations/effort'].append(ts.observation['effort']) + + # 实际发的action + data_dict['/action'].append(action) + data_dict['/base_action'].append(ts.observation['base_vel']) + + # 相机数据 + # data_dict['/base_action_t265'].append(ts.observation['base_vel_t265']) + for cam_name in args.camera_names: + data_dict[f'/observations/images/{cam_name}'].append(ts.observation['images'][cam_name]) + if args.use_depth_image: + data_dict[f'/observations/images_depth/{cam_name}'].append(ts.observation['images_depth'][cam_name]) + + t0 = time.time() + with h5py.File(dataset_path + '.hdf5', 'w', rdcc_nbytes=1024**2*2) as root: + # 文本的属性: + # 1 是否仿真 + # 2 图像是否压缩 + # + root.attrs['sim'] = False + root.attrs['compress'] = False + + # 创建一个新的组observations,观测状态组 + # 图像组 + obs = root.create_group('observations') + image = obs.create_group('images') + for cam_name in args.camera_names: + _ = image.create_dataset(cam_name, (data_size, 480, 640, 3), dtype='uint8', + chunks=(1, 480, 640, 3), ) + if args.use_depth_image: + image_depth = obs.create_group('images_depth') + for cam_name in args.camera_names: + _ = image_depth.create_dataset(cam_name, (data_size, 480, 640), dtype='uint16', + chunks=(1, 480, 640), ) + + _ = obs.create_dataset('qpos', (data_size, 14)) + _ = obs.create_dataset('qvel', (data_size, 14)) + _ = obs.create_dataset('effort', (data_size, 14)) + _ = root.create_dataset('action', (data_size, 14)) + _ = root.create_dataset('base_action', (data_size, 2)) + + # data_dict write into h5py.File + for name, array in data_dict.items(): + root[name][...] = array + print(f'\033[32m\nSaving: {time.time() - t0:.1f} secs. %s \033[0m\n'%dataset_path) + + +class RosOperator: + def __init__(self, args): + self.robot_base_deque = None + self.puppet_arm_right_deque = None + self.puppet_arm_left_deque = None + self.master_arm_right_deque = None + self.master_arm_left_deque = None + self.img_front_deque = None + self.img_right_deque = None + self.img_left_deque = None + self.img_front_depth_deque = None + self.img_right_depth_deque = None + self.img_left_depth_deque = None + self.bridge = None + self.args = args + self.init() + self.init_ros() + + def init(self): + self.bridge = CvBridge() + self.img_left_deque = deque() + self.img_right_deque = deque() + self.img_front_deque = deque() + self.img_left_depth_deque = deque() + self.img_right_depth_deque = deque() + self.img_front_depth_deque = deque() + self.master_arm_left_deque = deque() + self.master_arm_right_deque = deque() + self.puppet_arm_left_deque = deque() + self.puppet_arm_right_deque = deque() + self.robot_base_deque = deque() + + def get_frame(self): + if len(self.img_left_deque) == 0 or len(self.img_right_deque) == 0 or len(self.img_front_deque) == 0 or \ + (self.args.use_depth_image and (len(self.img_left_depth_deque) == 0 or len(self.img_right_depth_deque) == 0 or len(self.img_front_depth_deque) == 0)): + return False + if self.args.use_depth_image: + frame_time = min([self.img_left_deque[-1].header.stamp.to_sec(), self.img_right_deque[-1].header.stamp.to_sec(), self.img_front_deque[-1].header.stamp.to_sec(), + self.img_left_depth_deque[-1].header.stamp.to_sec(), self.img_right_depth_deque[-1].header.stamp.to_sec(), self.img_front_depth_deque[-1].header.stamp.to_sec()]) + else: + frame_time = min([self.img_left_deque[-1].header.stamp.to_sec(), self.img_right_deque[-1].header.stamp.to_sec(), self.img_front_deque[-1].header.stamp.to_sec()]) + + if len(self.img_left_deque) == 0 or self.img_left_deque[-1].header.stamp.to_sec() < frame_time: + return False + if len(self.img_right_deque) == 0 or self.img_right_deque[-1].header.stamp.to_sec() < frame_time: + return False + if len(self.img_front_deque) == 0 or self.img_front_deque[-1].header.stamp.to_sec() < frame_time: + return False + if len(self.master_arm_left_deque) == 0 or self.master_arm_left_deque[-1].header.stamp.to_sec() < frame_time: + return False + if len(self.master_arm_right_deque) == 0 or self.master_arm_right_deque[-1].header.stamp.to_sec() < frame_time: + return False + if len(self.puppet_arm_left_deque) == 0 or self.puppet_arm_left_deque[-1].header.stamp.to_sec() < frame_time: + return False + if len(self.puppet_arm_right_deque) == 0 or self.puppet_arm_right_deque[-1].header.stamp.to_sec() < frame_time: + return False + if self.args.use_depth_image and (len(self.img_left_depth_deque) == 0 or self.img_left_depth_deque[-1].header.stamp.to_sec() < frame_time): + return False + if self.args.use_depth_image and (len(self.img_right_depth_deque) == 0 or self.img_right_depth_deque[-1].header.stamp.to_sec() < frame_time): + return False + if self.args.use_depth_image and (len(self.img_front_depth_deque) == 0 or self.img_front_depth_deque[-1].header.stamp.to_sec() < frame_time): + return False + if self.args.use_robot_base and (len(self.robot_base_deque) == 0 or self.robot_base_deque[-1].header.stamp.to_sec() < frame_time): + return False + + while self.img_left_deque[0].header.stamp.to_sec() < frame_time: + self.img_left_deque.popleft() + img_left = self.bridge.imgmsg_to_cv2(self.img_left_deque.popleft(), 'passthrough') + # print("img_left:", img_left.shape) + + while self.img_right_deque[0].header.stamp.to_sec() < frame_time: + self.img_right_deque.popleft() + img_right = self.bridge.imgmsg_to_cv2(self.img_right_deque.popleft(), 'passthrough') + + while self.img_front_deque[0].header.stamp.to_sec() < frame_time: + self.img_front_deque.popleft() + img_front = self.bridge.imgmsg_to_cv2(self.img_front_deque.popleft(), 'passthrough') + + while self.master_arm_left_deque[0].header.stamp.to_sec() < frame_time: + self.master_arm_left_deque.popleft() + master_arm_left = self.master_arm_left_deque.popleft() + + while self.master_arm_right_deque[0].header.stamp.to_sec() < frame_time: + self.master_arm_right_deque.popleft() + master_arm_right = self.master_arm_right_deque.popleft() + + while self.puppet_arm_left_deque[0].header.stamp.to_sec() < frame_time: + self.puppet_arm_left_deque.popleft() + puppet_arm_left = self.puppet_arm_left_deque.popleft() + + while self.puppet_arm_right_deque[0].header.stamp.to_sec() < frame_time: + self.puppet_arm_right_deque.popleft() + puppet_arm_right = self.puppet_arm_right_deque.popleft() + + img_left_depth = None + if self.args.use_depth_image: + while self.img_left_depth_deque[0].header.stamp.to_sec() < frame_time: + self.img_left_depth_deque.popleft() + img_left_depth = self.bridge.imgmsg_to_cv2(self.img_left_depth_deque.popleft(), 'passthrough') + top, bottom, left, right = 40, 40, 0, 0 + img_left_depth = cv2.copyMakeBorder(img_left_depth, top, bottom, left, right, cv2.BORDER_CONSTANT, value=0) + + img_right_depth = None + if self.args.use_depth_image: + while self.img_right_depth_deque[0].header.stamp.to_sec() < frame_time: + self.img_right_depth_deque.popleft() + img_right_depth = self.bridge.imgmsg_to_cv2(self.img_right_depth_deque.popleft(), 'passthrough') + top, bottom, left, right = 40, 40, 0, 0 + img_right_depth = cv2.copyMakeBorder(img_right_depth, top, bottom, left, right, cv2.BORDER_CONSTANT, value=0) + + img_front_depth = None + if self.args.use_depth_image: + while self.img_front_depth_deque[0].header.stamp.to_sec() < frame_time: + self.img_front_depth_deque.popleft() + img_front_depth = self.bridge.imgmsg_to_cv2(self.img_front_depth_deque.popleft(), 'passthrough') + top, bottom, left, right = 40, 40, 0, 0 + img_front_depth = cv2.copyMakeBorder(img_front_depth, top, bottom, left, right, cv2.BORDER_CONSTANT, value=0) + + robot_base = None + if self.args.use_robot_base: + while self.robot_base_deque[0].header.stamp.to_sec() < frame_time: + self.robot_base_deque.popleft() + robot_base = self.robot_base_deque.popleft() + return (img_front, img_left, img_right, img_front_depth, img_left_depth, img_right_depth, + puppet_arm_left, puppet_arm_right, master_arm_left, master_arm_right, robot_base) + + def img_left_callback(self, msg): + if len(self.img_left_deque) >= 2000: + self.img_left_deque.popleft() + self.img_left_deque.append(msg) + + def img_right_callback(self, msg): + if len(self.img_right_deque) >= 2000: + self.img_right_deque.popleft() + self.img_right_deque.append(msg) + + def img_front_callback(self, msg): + if len(self.img_front_deque) >= 2000: + self.img_front_deque.popleft() + self.img_front_deque.append(msg) + + def img_left_depth_callback(self, msg): + if len(self.img_left_depth_deque) >= 2000: + self.img_left_depth_deque.popleft() + self.img_left_depth_deque.append(msg) + + def img_right_depth_callback(self, msg): + if len(self.img_right_depth_deque) >= 2000: + self.img_right_depth_deque.popleft() + self.img_right_depth_deque.append(msg) + + def img_front_depth_callback(self, msg): + if len(self.img_front_depth_deque) >= 2000: + self.img_front_depth_deque.popleft() + self.img_front_depth_deque.append(msg) + + def master_arm_left_callback(self, msg): + if len(self.master_arm_left_deque) >= 2000: + self.master_arm_left_deque.popleft() + self.master_arm_left_deque.append(msg) + + def master_arm_right_callback(self, msg): + if len(self.master_arm_right_deque) >= 2000: + self.master_arm_right_deque.popleft() + self.master_arm_right_deque.append(msg) + + def puppet_arm_left_callback(self, msg): + if len(self.puppet_arm_left_deque) >= 2000: + self.puppet_arm_left_deque.popleft() + self.puppet_arm_left_deque.append(msg) + + def puppet_arm_right_callback(self, msg): + if len(self.puppet_arm_right_deque) >= 2000: + self.puppet_arm_right_deque.popleft() + self.puppet_arm_right_deque.append(msg) + + def robot_base_callback(self, msg): + if len(self.robot_base_deque) >= 2000: + self.robot_base_deque.popleft() + self.robot_base_deque.append(msg) + + def init_ros(self): + rospy.init_node('record_episodes', anonymous=True) + rospy.Subscriber(self.args.img_left_topic, Image, self.img_left_callback, queue_size=1000, tcp_nodelay=True) + rospy.Subscriber(self.args.img_right_topic, Image, self.img_right_callback, queue_size=1000, tcp_nodelay=True) + rospy.Subscriber(self.args.img_front_topic, Image, self.img_front_callback, queue_size=1000, tcp_nodelay=True) + if self.args.use_depth_image: + rospy.Subscriber(self.args.img_left_depth_topic, Image, self.img_left_depth_callback, queue_size=1000, tcp_nodelay=True) + rospy.Subscriber(self.args.img_right_depth_topic, Image, self.img_right_depth_callback, queue_size=1000, tcp_nodelay=True) + rospy.Subscriber(self.args.img_front_depth_topic, Image, self.img_front_depth_callback, queue_size=1000, tcp_nodelay=True) + + rospy.Subscriber(self.args.master_arm_left_topic, JointState, self.master_arm_left_callback, queue_size=1000, tcp_nodelay=True) + rospy.Subscriber(self.args.master_arm_right_topic, JointState, self.master_arm_right_callback, queue_size=1000, tcp_nodelay=True) + rospy.Subscriber(self.args.puppet_arm_left_topic, JointState, self.puppet_arm_left_callback, queue_size=1000, tcp_nodelay=True) + rospy.Subscriber(self.args.puppet_arm_right_topic, JointState, self.puppet_arm_right_callback, queue_size=1000, tcp_nodelay=True) + rospy.Subscriber(self.args.robot_base_topic, Odometry, self.robot_base_callback, queue_size=1000, tcp_nodelay=True) + + def process(self): + timesteps = [] + actions = [] + # 图像数据 + image = np.random.randint(0, 255, size=(480, 640, 3), dtype=np.uint8) + image_dict = dict() + for cam_name in self.args.camera_names: + image_dict[cam_name] = image + count = 0 + + # input_key = input("please input s:") + # while input_key != 's' and not rospy.is_shutdown(): + # input_key = input("please input s:") + + rate = rospy.Rate(self.args.frame_rate) + print_flag = True + + while (count < self.args.max_timesteps + 1) and not rospy.is_shutdown(): + # 2 收集数据 + result = self.get_frame() + if not result: + if print_flag: + print("syn fail") + print_flag = False + rate.sleep() + continue + print_flag = True + count += 1 + (img_front, img_left, img_right, img_front_depth, img_left_depth, img_right_depth, + puppet_arm_left, puppet_arm_right, master_arm_left, master_arm_right, robot_base) = result + # 2.1 图像信息 + image_dict = dict() + image_dict[self.args.camera_names[0]] = img_front + image_dict[self.args.camera_names[1]] = img_left + image_dict[self.args.camera_names[2]] = img_right + + # 2.2 从臂的信息从臂的状态 机械臂示教模式时 会自动订阅 + obs = collections.OrderedDict() # 有序的字典 + obs['images'] = image_dict + if self.args.use_depth_image: + image_dict_depth = dict() + image_dict_depth[self.args.camera_names[0]] = img_front_depth + image_dict_depth[self.args.camera_names[1]] = img_left_depth + image_dict_depth[self.args.camera_names[2]] = img_right_depth + obs['images_depth'] = image_dict_depth + obs['qpos'] = np.concatenate((np.array(puppet_arm_left.position), np.array(puppet_arm_right.position)), axis=0) + obs['qvel'] = np.concatenate((np.array(puppet_arm_left.velocity), np.array(puppet_arm_right.velocity)), axis=0) + obs['effort'] = np.concatenate((np.array(puppet_arm_left.effort), np.array(puppet_arm_right.effort)), axis=0) + if self.args.use_robot_base: + obs['base_vel'] = [robot_base.twist.twist.linear.x, robot_base.twist.twist.angular.z] + else: + obs['base_vel'] = [0.0, 0.0] + + # 第一帧 只包含first, fisrt只保存StepType.FIRST + if count == 1: + ts = dm_env.TimeStep( + step_type=dm_env.StepType.FIRST, + reward=None, + discount=None, + observation=obs) + timesteps.append(ts) + continue + + # 时间步 + ts = dm_env.TimeStep( + step_type=dm_env.StepType.MID, + reward=None, + discount=None, + observation=obs) + + # 主臂保存状态 + action = np.concatenate((np.array(master_arm_left.position), np.array(master_arm_right.position)), axis=0) + actions.append(action) + timesteps.append(ts) + print("Frame data: ", count) + if rospy.is_shutdown(): + exit(-1) + rate.sleep() + + print("len(timesteps): ", len(timesteps)) + print("len(actions) : ", len(actions)) + return timesteps, actions + + +def get_arguments(): + parser = argparse.ArgumentParser() + parser.add_argument('--dataset_dir', action='store', type=str, help='Dataset_dir.', + default="./data", required=False) + parser.add_argument('--task_name', action='store', type=str, help='Task name.', + default="aloha_mobile_dummy", required=False) + parser.add_argument('--episode_idx', action='store', type=int, help='Episode index.', + default=0, required=False) + + parser.add_argument('--max_timesteps', action='store', type=int, help='Max_timesteps.', + default=500, required=False) + + parser.add_argument('--camera_names', action='store', type=str, help='camera_names', + default=['cam_high', 'cam_left_wrist', 'cam_right_wrist'], required=False) + # topic name of color image + parser.add_argument('--img_front_topic', action='store', type=str, help='img_front_topic', + default='/camera_f/color/image_raw', required=False) + parser.add_argument('--img_left_topic', action='store', type=str, help='img_left_topic', + default='/camera_l/color/image_raw', required=False) + parser.add_argument('--img_right_topic', action='store', type=str, help='img_right_topic', + default='/camera_r/color/image_raw', required=False) + + # topic name of depth image + parser.add_argument('--img_front_depth_topic', action='store', type=str, help='img_front_depth_topic', + default='/camera_f/depth/image_raw', required=False) + parser.add_argument('--img_left_depth_topic', action='store', type=str, help='img_left_depth_topic', + default='/camera_l/depth/image_raw', required=False) + parser.add_argument('--img_right_depth_topic', action='store', type=str, help='img_right_depth_topic', + default='/camera_r/depth/image_raw', required=False) + + # topic name of arm + parser.add_argument('--master_arm_left_topic', action='store', type=str, help='master_arm_left_topic', + default='/master/joint_left', required=False) + parser.add_argument('--master_arm_right_topic', action='store', type=str, help='master_arm_right_topic', + default='/master/joint_right', required=False) + parser.add_argument('--puppet_arm_left_topic', action='store', type=str, help='puppet_arm_left_topic', + default='/puppet/joint_left', required=False) + parser.add_argument('--puppet_arm_right_topic', action='store', type=str, help='puppet_arm_right_topic', + default='/puppet/joint_right', required=False) + + # topic name of robot_base + parser.add_argument('--robot_base_topic', action='store', type=str, help='robot_base_topic', + default='/odom', required=False) + + parser.add_argument('--use_robot_base', action='store', type=bool, help='use_robot_base', + default=False, required=False) + # collect depth image + parser.add_argument('--use_depth_image', action='store', type=bool, help='use_depth_image', + default=False, required=False) + + parser.add_argument('--frame_rate', action='store', type=int, help='frame_rate', + default=30, required=False) + + args = parser.parse_args() + return args + + +def main(): + args = get_arguments() + ros_operator = RosOperator(args) + timesteps, actions = ros_operator.process() + dataset_dir = os.path.join(args.dataset_dir, args.task_name) + + if(len(actions) < args.max_timesteps): + print("\033[31m\nSave failure, please record %s timesteps of data.\033[0m\n" %args.max_timesteps) + exit(-1) + + if not os.path.exists(dataset_dir): + os.makedirs(dataset_dir) + dataset_path = os.path.join(dataset_dir, "episode_" + str(args.episode_idx)) + save_data(args, timesteps, actions, dataset_path) + + +if __name__ == '__main__': + main() + +# python collect_data.py --dataset_dir ~/data --max_timesteps 500 --episode_idx 0 diff --git a/collect_data/docs/1.jpg b/collect_data/docs/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29867fcf177802c134aad827542171aab865078d Binary files /dev/null and b/collect_data/docs/1.jpg differ diff --git a/tranin_dir/blue_new/dataset_stats.pkl b/tranin_dir/blue_new/dataset_stats.pkl new file mode 100644 index 0000000000000000000000000000000000000000..3e992ea0dc4b2398fe026a3460997d4895801c14 --- /dev/null +++ b/tranin_dir/blue_new/dataset_stats.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5073ab9de12a3d1c4117a5cebab8fe79b2e4eec547a9f483e35bb2af76761170 +size 32430 diff --git a/tranin_dir/purple/dataset_stats.pkl b/tranin_dir/purple/dataset_stats.pkl new file mode 100644 index 0000000000000000000000000000000000000000..e011b0bb28b7b1421049cc68440e9eac282b9894 --- /dev/null +++ b/tranin_dir/purple/dataset_stats.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99e27ae44950116f6466a52e6172e44cfe9ea4f3b49104b11f5f1ab78c108c67 +size 27558