# image_common **Repository Path**: davidhan008/image_common ## Basic Information - **Project Name**: image_common - **Description**: Common code for working with images in ROS. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 7 - **Created**: 2021-10-30 - **Last Updated**: 2025-02-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # image_common #### Description image_common should always be used to subscribe to and publish images. It provides transparent support for transporting images in low-bandwidth compressed formats. Examples (provided by separate plugin packages) include JPEG/PNG compression and Theora streaming video.When working with images we often want specialized transport strategies, such as using image compression or streaming video codecs. image_common provides classes and nodes for transporting images in arbitrary over-the-wire representations, while abstracting this complexity so that the developer only sees sensor_msgs/Image messages. #### Software Architecture Software architecture description image_common should always be used to publish and subscribe to images. At this basic level of usage, it is very similar to using ROS Publishers and Subscribers. Using image_common instead of the ROS primitives, however, gives you great flexibility in how images are communicated between nodes. input: ``` image_common/ ├── camera_calibration_parsers │   ├── CHANGELOG.rst │   ├── CMakeLists.txt │   ├── include │   ├── mainpage.dox │   ├── package.xml │   ├── setup.py │   ├── src │   └── test ├── camera_info_manager │   ├── CHANGELOG.rst │   ├── CMakeLists.txt │   ├── include │   ├── mainpage.dox │   ├── package.xml │   ├── src │   └── tests ├── image_common │   ├── CHANGELOG.rst │   ├── CMakeLists.txt │   └── package.xml └── image_transport ├── CHANGELOG.rst ├── CMakeLists.txt ├── default_plugins.xml ├── include ├── mainpage.dox ├── package.xml ├── src └── tutorial ``` #### Installation 1. Download RPM aarch64: wget https://117.78.1.88/build/home:davidhan:branches:openEuler:22.03:LTS/standard_aarch64/aarch64/ros-noetic-ros-catkin/ros-noetic-ros-image_common-1.12.0-1.oe2203.aarch64.rpm x86_64: wget https://117.78.1.88/build/home:davidhan:branches:openEuler:22.03:LTS/standard_x86_64/x86_64/ros-noetic-ros-catkin/ros-noetic-ros-image_common-1.12.0-1.oe2203.x86_64.rpm 2. Install RPM aarch64: sudo rpm -ivh ros-noetic-ros-image_common-1.12.0-1.oe2203.aarch64.rpm --nodeps --force x86_64: sudo rpm -ivh ros-noetic-ros-image_common-1.12.0-1.oe2203.x86_64.rpm --nodeps --force #### Instructions Dependence installation sh /opt/ros/noetic/install_dependence.sh Exit the following output file under the /opt/ros/noetic/ directory , Prove that the software installation is successful output: ``` image_common/ ├── cmake.lock ├── env.sh ├── local_setup.bash ├── local_setup.sh ├── local_setup.zsh ├── setup.bash ├── setup.sh ├── _setup_util.py └── setup.zsh ``` #### Contribution 1. Fork the repository 2. Create Feat_xxx branch 3. Commit your code 4. Create Pull Request #### Gitee Feature 1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md 2. Gitee blog [blog.gitee.com](https://blog.gitee.com) 3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore) 4. The most valuable open source project [GVP](https://gitee.com/gvp) 5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help) 6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)