Archived
1

basic depth calculations

This commit is contained in:
Evan Pratten 2021-05-29 16:26:27 -04:00
parent 78a13afb25
commit 1adfcba942
4 changed files with 43 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# OpenDepthMap
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
```

View File

@ -2,6 +2,8 @@ import argparse
import sys
import logging
import os
import numpy as np
import cv2
FORMAT = '%(levelname)s %(name)s %(asctime)-15s %(filename)s:%(lineno)d %(message)s'
logging.basicConfig(format=FORMAT)
@ -11,17 +13,46 @@ logging.getLogger().setLevel(logging.DEBUG)
sys.path.append(os.getcwd() + "/target/debug")
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:
# 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()
# Connect to the leapmotion device
print("Connecting to LeapMotion")
print(dir(pylibodm))
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
if __name__ == "__main__":
sys.exit(main())

View File

@ -26,9 +26,13 @@ use libodm::{image::Image, leapmotion::device::DeviceFrame};
use pyo3::wrap_pyfunction;
#[pyclass]
#[derive(Debug, Clone)]
struct PyImage {
#[pyo3(get)]
pub width: u32,
#[pyo3(get)]
pub height: u32,
#[pyo3(get)]
pub buffer: Vec<u8>,
}
@ -44,8 +48,11 @@ impl IntoPy<PyImage> for Image<'_> {
#[pyclass]
struct PyDeviceFrame {
#[pyo3(get)]
pub bytes_per_pixel: u8,
#[pyo3(get)]
pub left_camera: PyImage,
#[pyo3(get)]
pub right_camera: PyImage,
}

View File

@ -1 +1,2 @@
setuptools-rust>=0.10.2
setuptools-rust>=0.10.2
numpy