Archived
1

about to do a swap in cv language

This commit is contained in:
Evan Pratten 2021-05-29 14:02:38 -04:00
parent 30dc91e5a0
commit 2b12cbaa9b
9 changed files with 4 additions and 15 deletions

View File

@ -1,2 +1,2 @@
[workspace] [workspace]
members = ["libodm", "odm"] members = ["libodm", "leapdebug"]

View File

@ -1,5 +1,5 @@
[package] [package]
name = "odm" name = "leapdebug"
version = "0.1.0" version = "0.1.0"
authors = ["Evan Pratten <ewpratten@gmail.com>"] authors = ["Evan Pratten <ewpratten@gmail.com>"]
edition = "2018" edition = "2018"
@ -8,7 +8,6 @@ edition = "2018"
[dependencies] [dependencies]
libodm = { version = "0.1.0", path = "../libodm"} libodm = { version = "0.1.0", path = "../libodm"}
clap = "2.33.3"
fern = "0.6.0" fern = "0.6.0"
log = "0.4.14" log = "0.4.14"
chrono = "0.4.19" chrono = "0.4.19"

View File

@ -1,5 +1,4 @@
#![feature(static_nobundle)] #![feature(static_nobundle)]
pub mod leapmotion; pub mod leapmotion;
pub mod image; pub mod image;
pub mod stereo;

View File

@ -1,9 +0,0 @@
// use crate::image::Image;
// use opencv::stereo::MatchQuasiDense;
// pub fn stereo_from_images(left: &Image, right: &Image) {
// MatchQuasiDense
// }

View File

@ -1,5 +1,5 @@
#! /bin/bash #! /bin/bash
set -e set -e
cargo build
LD_LIBRARY_PATH="$(pwd)/libodm/dist:$LD_LIBRARY_PATH" gdb ./target/debug/odm LD_LIBRARY_PATH="$(pwd)/libodm/dist:$LD_LIBRARY_PATH" gdb ./target/debug/odm