Home ros1のソースコード
Post
Cancel

ros1のソースコード

概要

  • ros1でPublisherやSubscriber、カメラ周りの実装を確認したい時がある
  • 各実装をsubmoduleとするリポジトリを作成し、実装を確認したいときに参照する

リポジトリ

  • 現在は、ros_commとros_perceptionを追加している
    • https://github.com/SOutaHI/ros_src
  • ディレクトリ構造は次の通り
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
├── ros_comm
│   ├── clients
│   │   ├── roscpp
│   │   └── rospy
│   ├── ros_comm
│   ├── test
│   ├── tools
│   │   ├── rosbag
│   │   ├── rosbag_storage
│   │   ├── rosgraph
│   │   ├── roslaunch
│   │   ├── rosmaster
│   │   ├── rosmsg
│   │   ├── rosnode
│   │   ├── rosout
│   │   ├── rosparam
│   │   ├── rosservice
│   │   ├── rostest
│   │   ├── rostopic
│   │   └── topic_tools
│   └── utilities
│       ├── message_filters
│       ├── roslz4
│       ├── roswtf
│       └── xmlrpcpp
└── ros_perception
    ├── image_common
    │   ├── camera_calibration_parsers
    │   ├── camera_info_manager
    │   ├── image_common
    │   ├── image_transport
    │   └── polled_camera
    ├── image_pipeline
    │   ├── camera_calibration
    │   ├── depth_image_proc
    │   ├── image_pipeline
    │   ├── image_proc
    │   ├── image_publisher
    │   ├── image_rotate
    │   ├── image_view
    │   ├── stereo_image_proc
    │   └── wiki_files
    └── image_transport_plugins
        ├── compressed_image_transport
        ├── image_transport_plugins
        └── theora_image_transport


This post is licensed under CC BY 4.0 by the author.