Skip to content

Commit 04963ab

Browse files
author
iamsg
committed
remove libcurl; update submodules
1 parent 7e31e02 commit 04963ab

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ Host-side DepthAI source code
2323
- Install development environment dependencies:
2424
- Linux:
2525

26-
sudo apt-get install -y git python-pip cmake cmake-gui libusb-1.0-0-dev libcurl4-openssl-dev
26+
sudo apt-get install -y git python-pip cmake cmake-gui libusb-1.0-0-dev
2727
- macOS:
2828

29-
brew install coreutils python3 cmake libusb wget opencv curl
29+
brew install coreutils python3 cmake libusb wget opencv
3030

3131
- After cloning the repo, update the third-party libraries used:
3232

src/device_bindings.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ void init_binding_device(pybind11::module& m){
6666
"Function to request a certain autofocus mode (Check 'AutofocusMode.__members__')"
6767
)
6868
.def(
69-
"send_DisparityConfidenceThreshold",
70-
&Device::send_DisparityConfidenceThreshold,
69+
"send_disparity_confidence_threshold",
70+
&Device::send_disparity_confidence_threshold,
7171
"Function to send disparity confidence threshold for SGBM"
7272
)
7373

src/py_bindings.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
#include "py_tensor_entry_container_iterator.hpp"
2222
#include "device_bindings.hpp"
2323

24-
#include "depthai/model_downloader.hpp"
25-
2624

2725
namespace py = pybind11;
2826
PYBIND11_MODULE(depthai,m)
@@ -32,12 +30,6 @@ PYBIND11_MODULE(depthai,m)
3230
init_binding_nnet_packet(m);
3331
init_binding_device(m);
3432

35-
m.def(
36-
"download_model",
37-
&download_model,
38-
"Function that downloads and saves blob file from cloud."
39-
);
40-
4133
// TODO: test ownership in python
4234

4335
//std::string _version = c_depthai_version;

0 commit comments

Comments
 (0)