-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
coherent file naming scheme; documentation of camera_data module;
- Loading branch information
1 parent
4b48194
commit f871d51
Showing
3 changed files
with
26 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Camera Data Module | ||
|
||
This module read and writes data from available camera feeds to the `/camera_frames` topic. | ||
|
||
### Messages | ||
|
||
- `v_angle`: Vertical orientation tilt of the camera enclosed in [-90, 90] degrees (The pitch axis of rotation). | ||
- `h_angle`: Horizontal orientation tilt of the camera enclosed in [-90, 90] degrees (The Yaw axis of rotation). | ||
|
||
### Scripts | ||
|
||
- `camera_feeds.py`: Collects available camera ports and outputs them all in distinct windows. | ||
- `camera_subscriber.py`: Subscriber to the `/camera_frames` topic that displays the images to screen. | ||
- `camera_publisher.py`: Publishes frames from the selected camera (from the `camera_selection` topic) to the | ||
`/camera_frames` topic at a rate of __30fps__. | ||
|
||
### Tests | ||
|
||
- `test_get_cameras.py`: Tests the camera feed collection from the `camera_feeds.py` script. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters