Ask Your Question

techfort's profile - activity

2019-09-13 14:00:54 -0600 received badge  Popular Question (source)
2017-07-24 14:48:23 -0600 received badge  Famous Question (source)
2017-03-02 16:28:23 -0600 received badge  Notable Question (source)
2016-07-09 09:57:19 -0600 received badge  Popular Question (source)
2015-04-17 07:25:21 -0600 commented answer StereoBM in OpenCV 3 (Python) missing module

Ok apologies again. My checkout of OpenCV 3 was about 4 months old.

2015-04-16 00:57:31 -0600 commented answer StereoBM in OpenCV 3 (Python) missing module

Of course. Silly me, apologies! I will point out though that stereo_match.py still has the old signature :)

2015-04-15 11:49:20 -0600 commented answer StereoBM in OpenCV 3 (Python) missing module

this line stereo = cv2.StereoSGBM(minDisparity = min_disp, calls StereoSGBM which python complains it's not an attribute of cv2. Maybe the method signature has changed?

2015-04-14 09:18:54 -0600 commented answer StereoBM in OpenCV 3 (Python) missing module

actually no, it doesn't :/ AttributeError: 'module' object has no attribute 'StereoSGBM' . This is from a build based on mid-february commits because the python bindings were broken on opencv_contrib see this

2015-04-14 03:30:20 -0600 received badge  Supporter (source)
2015-04-14 03:30:16 -0600 commented answer StereoBM in OpenCV 3 (Python) missing module

Thanks for the answer, it worked. Would you be so kind as to point me to some official documentation about this? The Python tutorials for OpenCV 3.0.0 still show the old createStereoBM()

2015-04-14 01:34:39 -0600 asked a question StereoBM in OpenCV 3 (Python) missing module

StereoBM is normally in the cv2 module but it appears to be missing. Has it been moved to a submodule or does anybody know the way to create a stereobm in opencv 3.0.0 Thank you.

2015-03-28 03:32:07 -0600 received badge  Scholar (source)
2015-03-28 03:31:50 -0600 commented answer broken python bindings on opencv3

Yeah this worked for me, thanks for your help everybody.

2015-03-28 03:31:30 -0600 commented question broken python bindings on opencv3

@mshabunin thanks for this, it worked.

2015-03-25 15:13:23 -0600 commented question broken python bindings on opencv3

well - my problem is that if i simply do >>> import cv2 i get the above. I am attempting to do facereco but i don't get anywhere after the import statement.

2015-03-25 09:37:21 -0600 asked a question broken python bindings on opencv3

I'm trying to work with eigenFaceRecognizer but python bindings seem to broken for the latest version of opencv_contrib. Anybody has any pointers as to a particular commit that works for both opencv / contrib (ref ihttps://github.com/Itseez/opencv_contrib/issues/194) that makes python bindings work? At the moment, following the advice given by the opencv_contrib people, i checkout a mid-february version and get the following when i try to import cv2 into a python script:

ImportError: /usr/local/lib/python2.7/dist-packages/cv2.so: undefined symbol: _ZN2cv2ml21NormalBayesClassifier6createEv

Any ideas? Thanks a lot for your help.