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
visr_bear: a real-time C++ implementation of the BEAR, using libear and VISR. It has a C++ API that makes it reasonably straightforward to embed into other applications; see visr_bear/include/api.hpp
If I am only interested in using bear to render in a different C++ library, is there a easier shortcut to just building that as a static lib without all the python bindings and whatnot? The visr_bear/CMakeLists.txt seems to still have Python bindings and be quite complicated.
Thanks for your time and help!
The text was updated successfully, but these errors were encountered:
I'm not sure there's a shortcut as such, it's unfortunately a bit of a complicated thing to get right. They are generally amenable to a standard cmake configure/install process, though.
The python bindings can be disabled by disabling BUILD_PYTHON_BINDINGS,
Most of the complexity comes from VISR. We've tried to improve it over the years, but it's always hard because there are a lot of hidden requirements. One thing we could do id provide some vcpkg definitions for visr and visr_bear, I'll have a look into that.
In the README it says:
If I am only interested in using bear to render in a different C++ library, is there a easier shortcut to just building that as a static lib without all the python bindings and whatnot? The visr_bear/CMakeLists.txt seems to still have Python bindings and be quite complicated.
Thanks for your time and help!
The text was updated successfully, but these errors were encountered: