Andrews Cordolino Sobral

Results 195 comments of Andrews Cordolino Sobral

Hello @sbarrufaldi , I am sorry for my delayed feedback, I think this error: ``` /home/pi/bgslibrary/package_bgs/IBGS.h:23:16: fatal error: cv.h: No existe el fichero o el directorio #include ``` was solved...

Hi @hoxi3 , thank you for opening this issue, I will check it soon as possible due to my limited time

Hello @mexicantexan , Thanks for opening this issue. It's strange for me this kind of error. Can you show me a more detailed step-by-step what you did ? If possible,...

Hi @ScroogeMucDuck , thank you for opening this issue, I will check it soon as possible due to my limited time

Hi @jacobpodhraski , Unfortunately, setup.py does not support windows yet. If you want to build bgslibrary (with python support) on windows, I suggest you to follow the instructions below: https://github.com/andrewssobral/bgslibrary/wiki/Installation-instructions---Windows...

The problem is in the following line: ```cmake -D BGS_PYTHON_SUPPORT-ON .. -G "Visual Studio 15 2017 Win64"``` the correct is: ```cmake -D BGS_PYTHON_SUPPORT=ON .. -G "Visual Studio 15 2017 Win64"```

You need to specify it before running cmake: ``` set OpenCV_DIR=C:\OpenCV3.2.0\build (if you have OpenCV 3.2.0 in C:\) set PATH=%PATH%;%OpenCV_DIR%\x64\vc15\bin (if you are using Visual Studio 2017 x64) ``` Next:...

This error occurs when your local python was not found by CMake, as can be seen here: ``` -- Python library status: -- executable: -- library: -- include path: ......

Hi @jacobpodhraski, sorry for my delayed feedback. There is something weird occurring, what happens if you do: ``` import bgs dir(bgs) ``` in your python console?