Ask Your Question

Gio's profile - activity

2015-11-07 15:28:52 -0600 received badge  Teacher (source)
2015-11-06 08:38:38 -0600 asked a question matlab contrib module, no function help

I just got the matlab module working properly;

e.g.

img=imread('test.png');

works fine;

however the help on the functions (as suggested by the documentation in matlab contrib module) does not work (except for only "help cv" that works fine):

e.g.

help cv.imread

replies with: cv.imread not found.

any hint? I couldn't find any file with any help text inside the module/matlab folder

2015-11-06 08:29:30 -0600 received badge  Self-Learner (source)
2015-11-06 08:26:23 -0600 answered a question using Matlab module of opencv_contrib

thanks berak, your words turned on the key solution: the compilation was failing because... there was a space char in the folder name; after I removed it, compilation works and in matlab I have all functions; so, for people that use it under windows, remember that compilation suffers of spaces in the folder names;

I have now a question on the fact that the funcion helps (e.g. help cv.dft) doesn't work; I will write a new post for this;

2015-10-31 12:09:25 -0600 asked a question using Matlab module of opencv_contrib

hello, I just cannot get the Matlab module of the opencv_contrib working at all;

I downloaded latest opencv and opencv_contrib, compiled properly with Visual Studio 2013 (everything is fine with Cmake: python is found, Matlab is enabled, and I get "Matlab: Compiler/generator: Working")

no errors in the compilation of the solution; I build the INSTALL and get the folder "matlab" in the install folder; open matlab, add the path with addpath; "help cv" works fine "cv.buildInformation" works fine

but any other function call fails;

e.g. img = cv.IMREAD_COLOR('d:/temp/Desert.png'); fails with: Index exceeds matrix dimensions.

or: camera=cv.VideoCapture();

or: there is no cv.dft as suggested in the help page of the Matlab module github page

what's wrong? any idea?