Commit e6ce805e authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

changed defaults

parent 1370a032
......@@ -56,9 +56,9 @@ Example:
```~$ python3 open3d_test.py [path-to-image-file [path-to-depth-file]]```:
*path-to-image-file* - jpeg, defaults to **output/test_cube-image.jpeg**
*path-to-image-file* - jpeg, defaults to **output/example-test_cube-image.jpeg**
*path-to-depth-file* - 16-bit png, defaults to **output/test_cube-depth-10cm.png**
*path-to-depth-file* - 16-bit png, defaults to **output/example-test_cube-depth-10cm.png**
What is does:
1. Opens RGB-D pair using Open3D python library. First it displays side-to-side, upon closing the first plot - it display a 3D view. 3D view is BW, didn't check if it can do in color.
......
......@@ -7,8 +7,8 @@ import sys
if __name__ == "__main__":
image_path = "output/test_cube-image.jpeg"
depth_path = "output/test_cube-depth-10cm.png"
image_path = "output/example-test_cube-image.jpeg"
depth_path = "output/example-test_cube-depth-10cm.png"
try:
image_path = sys.argv[1]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment