basic depth calculations
This commit is contained in:
parent
78a13afb25
commit
1adfcba942
@ -1,7 +1,7 @@
|
|||||||
# OpenDepthMap
|
# OpenDepthMap
|
||||||
Point cloud streams from Leap Motion cameras
|
Point cloud streams from Leap Motion cameras
|
||||||
```
|
```
|
||||||
clang libclang-dev libopencv-dev python3-dev python-dev
|
clang libclang-dev libopencv-dev python3-dev python-dev python3-opencv
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -2,6 +2,8 @@ import argparse
|
|||||||
import sys
|
import sys
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
|
import numpy as np
|
||||||
|
import cv2
|
||||||
|
|
||||||
FORMAT = '%(levelname)s %(name)s %(asctime)-15s %(filename)s:%(lineno)d %(message)s'
|
FORMAT = '%(levelname)s %(name)s %(asctime)-15s %(filename)s:%(lineno)d %(message)s'
|
||||||
logging.basicConfig(format=FORMAT)
|
logging.basicConfig(format=FORMAT)
|
||||||
@ -11,17 +13,46 @@ logging.getLogger().setLevel(logging.DEBUG)
|
|||||||
sys.path.append(os.getcwd() + "/target/debug")
|
sys.path.append(os.getcwd() + "/target/debug")
|
||||||
import libpylibodm as pylibodm
|
import libpylibodm as pylibodm
|
||||||
|
|
||||||
|
def handle_image_data(stereo, left_image, right_image):
|
||||||
|
|
||||||
|
# Convert images to something opencv can use
|
||||||
|
left_image_cv = np.frombuffer(bytes(left_image.buffer), np.uint8).reshape(
|
||||||
|
left_image.height, left_image.width)
|
||||||
|
right_image_cv = np.frombuffer(bytes(right_image.buffer), np.uint8).reshape(
|
||||||
|
left_image.height, left_image.width)
|
||||||
|
|
||||||
|
# Compute a disparity map
|
||||||
|
disparity = stereo.compute(left_image_cv, right_image_cv)
|
||||||
|
disparity = cv2.convertScaleAbs(disparity, alpha=1.5)
|
||||||
|
|
||||||
|
cv2.imshow("Left", left_image_cv)
|
||||||
|
cv2.imshow("Right", right_image_cv)
|
||||||
|
cv2.imshow("Disparity", disparity)
|
||||||
|
|
||||||
|
|
||||||
def main() -> int:
|
def main() -> int:
|
||||||
# Handle program arguments
|
# Handle program arguments
|
||||||
ap = argparse.ArgumentParser(prog='odm.py', description='Stream 3D data from a LeapMotion camera')
|
ap = argparse.ArgumentParser(
|
||||||
|
prog='odm.py', description='Stream 3D data from a LeapMotion camera')
|
||||||
args = ap.parse_args()
|
args = ap.parse_args()
|
||||||
|
|
||||||
# Connect to the leapmotion device
|
# Connect to the leapmotion device
|
||||||
print("Connecting to LeapMotion")
|
print("Connecting to LeapMotion")
|
||||||
print(dir(pylibodm))
|
|
||||||
pylibodm.connect(4)
|
pylibodm.connect(4)
|
||||||
|
|
||||||
|
# Set up depth mapping
|
||||||
|
stereo = cv2.StereoBM_create(numDisparities=32, blockSize=11)
|
||||||
|
|
||||||
|
# Handle data
|
||||||
|
while True:
|
||||||
|
frame = pylibodm.get_frame()
|
||||||
|
handle_image_data(stereo, frame.left_camera, frame.right_camera)
|
||||||
|
|
||||||
|
if cv2.waitKey(25) & 0xFF == ord('q'):
|
||||||
|
break
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
sys.exit(main())
|
sys.exit(main())
|
@ -26,9 +26,13 @@ use libodm::{image::Image, leapmotion::device::DeviceFrame};
|
|||||||
use pyo3::wrap_pyfunction;
|
use pyo3::wrap_pyfunction;
|
||||||
|
|
||||||
#[pyclass]
|
#[pyclass]
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
struct PyImage {
|
struct PyImage {
|
||||||
|
#[pyo3(get)]
|
||||||
pub width: u32,
|
pub width: u32,
|
||||||
|
#[pyo3(get)]
|
||||||
pub height: u32,
|
pub height: u32,
|
||||||
|
#[pyo3(get)]
|
||||||
pub buffer: Vec<u8>,
|
pub buffer: Vec<u8>,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -44,8 +48,11 @@ impl IntoPy<PyImage> for Image<'_> {
|
|||||||
|
|
||||||
#[pyclass]
|
#[pyclass]
|
||||||
struct PyDeviceFrame {
|
struct PyDeviceFrame {
|
||||||
|
#[pyo3(get)]
|
||||||
pub bytes_per_pixel: u8,
|
pub bytes_per_pixel: u8,
|
||||||
|
#[pyo3(get)]
|
||||||
pub left_camera: PyImage,
|
pub left_camera: PyImage,
|
||||||
|
#[pyo3(get)]
|
||||||
pub right_camera: PyImage,
|
pub right_camera: PyImage,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1 +1,2 @@
|
|||||||
setuptools-rust>=0.10.2
|
setuptools-rust>=0.10.2
|
||||||
|
numpy
|
Reference in New Issue
Block a user