Ask Your Question

opencvTn's profile - activity

2015-04-14 04:04:27 -0600 commented question kalman filter solution to some cases

@theodore That's very usefull, thank you ! I am working on it

2015-04-10 03:58:30 -0600 commented question kalman filter solution to some cases

Hello @theodore. I am trying to do something similar with opencv 3.0 righ now. I have succeded to extract blob centers with Bgs but been stuck there since I couldn't track them to do counting at some point. Could you please help me with blob identification using Hungarian algorithm or any other method that worked with you back then ? I would really appreciate it if you post some code also, since I am not that expert with opencv. Thanks very mush

2015-04-09 14:43:37 -0600 received badge  Enthusiast
2015-04-01 09:41:51 -0600 commented question About counting vehicle

@StevenPuttemans Can I use a method which is based on Bgseg (or at least uses its output Mask) since I have a new algorithm and want to include in my solution. As far as I know Kalman filter and Optical Flow don't. Thank you

2015-04-01 06:28:03 -0600 commented question tld_tracker in OpenCV 3.

I just did it with cmake few days ago. Just select which module you are going to build (switch them to ON) and you have to specify the OPEN_CV_EXTRA_MODULE_PATH= YOUR_PATH/opencv_contrib/modules . I have to run it many times because there seems to be some broken modules (you should turn them to OFF in cmake_gui) then make -j$(nproc) and finally make install to copy header files etc .. I hope this helps you

2015-04-01 06:04:26 -0600 commented question About counting vehicle

@StevenPuttemans , Hello what kind of tracker do you recommand to use for such a problem (multi object tracking and counting) ?

2015-04-01 05:48:51 -0600 received badge  Scholar (source)
2015-03-31 04:42:29 -0600 received badge  Self-Learner (source)
2015-03-30 06:15:45 -0600 answered a question Building opencv contrib_module on linux

Solved using ccmake and disabling modules that seems to be broken and showing the same message in my comment.

2015-03-30 03:53:35 -0600 answered a question Integrating Tracking and Recognition

You can install extra module from here https://github.com/Itseez/opencv_cont...

2015-03-28 12:24:36 -0600 commented question Building opencv contrib_module on linux

Actually I had some libraries disabled the first time I run the make. When I try to build all contrib library I get this error.

Linking CXX shared library ../../lib/libopencv_xobjdetect.so /usr/bin/ld: cannot find -lWRAP /usr/bin/ld: cannot find -lpython collect2: error: ld returned 1 exit status make[2]: * [lib/libopencv_xobjdetect.so.3.0.0] Error 1 make[1]: [modules/xobjdetect/CMakeFiles/opencv_xobjdetect.dir/all] Error 2 make: ** [all] Error 2

Any idea how to fix it ?

2015-03-28 07:47:47 -0600 commented question Building opencv contrib_module on linux

Yes, indeed. I get several lines like this one ([ 86%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/alloc.cpp.o) but it's not copying the extra libs built (the one from contrib).

2015-03-28 06:02:48 -0600 asked a question Building opencv contrib_module on linux

Hello,

I am trying to use the Tracking module in https://github.com/Itseez/opencv_contrib. I have used the ccmake and successfully generated and run make -j5 without error. Modules have been built in the build directory but there's no (Extra) libraries in the /include/opencv2 . In other terms I can't locate the .hpp files generated from the contrib_modules.

Thanks