-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
60 changed files
with
604 additions
and
177 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Submodule .travis
updated
9 files
+7 −0 | CHANGELOG.rst | |
+1 −1 | docker.sh | |
+1 −1 | docker/Dockerfile.ros-ubuntu:14.04-pcl | |
+1 −1 | docker/Dockerfile.ros-ubuntu:14.04-pcl1.8 | |
+1 −1 | docker/Dockerfile.ros-ubuntu:16.04-pcl | |
+1 −1 | docker/Dockerfile.ros-ubuntu:18.04-pcl | |
+1 −1 | docker/Dockerfile.ros-ubuntu:20.04-pcl | |
+1 −1 | package.xml | |
+1 −1 | travis.sh |
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,22 @@ | ||
# Install Insta360 Air | ||
|
||
- Insta360 Air:[https://www.insta360.com/jp/product/insta360-air](https://www.insta360.com/jp/product/insta360-air) | ||
- libuvc_camera: [http://wiki.ros.org/libuvc_camera](http://wiki.ros.org/libuvc_camera) | ||
|
||
![Insta360 Air](./images/insta360_air_sample.png) | ||
|
||
## Install Udev | ||
|
||
```bash | ||
roscd jsk_perception | ||
sudo cp udev/99-insta360-air.rules /etc/udev/rules.d/ | ||
sudo service udev restart | ||
``` | ||
|
||
## Sample | ||
|
||
```bash | ||
roslaunch jsk_perception sample_insta360_air.launch | ||
# For indigo or lower | ||
roslaunch jsk_perception sample_insta360_air.launch use_usb_cam:=true | ||
``` |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# split_image.py | ||
![](./images/split_image.png) | ||
|
||
## What Is This | ||
|
||
Split the input image at equal intervals vertically and horizontally. | ||
|
||
## Subscribing Topic | ||
|
||
* `~input` (`sensor_msgs/Image`) | ||
|
||
Input image to be split. | ||
|
||
## Publishing Topic | ||
|
||
* `~output/vertical(vertical_index)/horizontal(horizontal_index)` (`sensor_msgs/Image`) | ||
|
||
Split images. The number of published topics is `~vertical_splits` * `~horizontal_splits`. | ||
|
||
## Parameters | ||
|
||
* `~vertical_splits` (int, default: 1) | ||
|
||
The number of parts the input image is split vertically. | ||
|
||
* `~horizontal_splits` (int, default: 1) | ||
|
||
The number of parts the input image is split horizontally. | ||
|
||
## Sample | ||
```bash | ||
roslaunch jsk_perception sample_split_image.launch | ||
``` |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
recommonmark==0.5.0 | ||
Sphinx==1.8.4 | ||
six==1.15.0 | ||
Sphinx==3.3.0 | ||
sphinx-markdown-tables==0.0.9 | ||
sphinx_rtd_theme==0.4.3 |
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
Oops, something went wrong.