You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OpenCV is a large C++ library that has been causing us various issues over time, including problems building on Windows, constant rebuilds despite no changes etc.
Given that we only use a tiny fraction of what OpenCV has to offer, we might be able to replace that with either native Rust libraries or manually rewrite a couple of OpenCV functions into pure Rust, to avoid those issues in the future.
It seems that using imageproc for image processing and nokhwa for camera control might be enough for our use case.
The text was updated successfully, but these errors were encountered:
nokhwa is unfortunately still not ready, and at this point it doesn't seem like it's going to be anytime soon. We have found a simpler crate, but with enough functionality to support our use case: payload/kamera.
OpenCV is a large C++ library that has been causing us various issues over time, including problems building on Windows, constant rebuilds despite no changes etc.
Given that we only use a tiny fraction of what OpenCV has to offer, we might be able to replace that with either native Rust libraries or manually rewrite a couple of OpenCV functions into pure Rust, to avoid those issues in the future.
It seems that using imageproc for image processing and nokhwa for camera control might be enough for our use case.
The text was updated successfully, but these errors were encountered: