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
I modified openbr/CMakeLists.txt so I could compile the code by changing the line,
find_package(OpenCV 2.4.5 REQUIRED)
with
find_package(OpenCV 3.2.0 REQUIRED)
However, it breaks on boost.h at the definition of struct CascadeBoostParams : CvBoostParams {..};"
with,
boost.h:35:1: error: expected class-name before ‘{’ token
35 | {
| ^
because CvBoostParams is not defined.
I really didn't want to install OpenCV 2.4.5. Is it possible to get build it with 3.2.0?
My OS is Ubuntu 20.04.1 LTS with the latest utils.
Thanks,
Art
The text was updated successfully, but these errors were encountered:
I modified openbr/CMakeLists.txt so I could compile the code by changing the line,
with
However, it breaks on boost.h at the definition of struct CascadeBoostParams : CvBoostParams {..};"
with,
boost.h:35:1: error: expected class-name before ‘{’ token
35 | {
| ^
because CvBoostParams is not defined.
I really didn't want to install OpenCV 2.4.5. Is it possible to get build it with 3.2.0?
My OS is Ubuntu 20.04.1 LTS with the latest utils.
Thanks,
Art
The text was updated successfully, but these errors were encountered: