Ask Your Question

Mehrnoush's profile - activity

2018-03-18 12:37:25 -0600 received badge  Popular Question (source)
2015-09-10 08:39:08 -0600 received badge  Teacher (source)
2014-05-22 00:51:05 -0600 received badge  Necromancer (source)
2014-05-21 19:19:58 -0600 answered a question Failed to compile cv2.pyd with VS 2012

I had this problem when I was trying to build 64-bit cv2.pyd with VS2010 and Python 2.7. Turned out I was linking against 32-bit python27.lib instead of the 64-bit. I changed the cmake settings and specified the path to the 64-bit python library in cmake GUI. Then the errors were resolved.

2014-05-21 18:42:44 -0600 received badge  Supporter (source)
2013-11-26 13:59:47 -0600 commented answer Using OpenCV in GNU Octave

Thanks for the tip! I managed to find the module in the opencv master that contains code generators to produce matlab mex wrappers. However, it only works if there is a Matlab installation on the host system. In my case, I only have an isntallation of Octave not Matlab. Can you help me figure out what I need to change to get Octave bindings?

2013-11-25 19:26:58 -0600 asked a question Using OpenCV in GNU Octave

Hello there,

Can anyone please provide some insight into finding/generating OpenCV wrappers to be used in Octave?

I have found some older webpages that talk about this, but haven't been able to figure it out!

In this page: http://octave-swig.sourceforge.net/octave-opencv.html It says for the latest release that : "3/27/08: These bindings have been integrated into OpenCV. Latest sources are now available only from OpenCV CVS."

But OpenCV 2.4.6 doesn't have support for Octave. It appears that at some point (OpenCV 2.1) there was a "build with octave support" option in the cmake file of OpenCV. But that option doesn't exist in cmakelists.txt that comes with OpenCV anymore!