mexopencv icon indicating copy to clipboard operation
mexopencv copied to clipboard

How use the opecn cv code?

Open KoreaGODSUNG opened this issue 5 years ago • 0 comments

I set the 'mexopencv' with the manual on Github the link is below : https://github.com/kyamagu/mexopencv/wiki/Installation-%28Windows%2C-MATLAB%2C-OpenCV-3%29

-. Symtomps

  1. No response for 'cv.getBuildInformation()' I used the code below.

------------------ Code----------------------------------- cv.getBuildInformation()

There is no response.

  1. Error for the cv.--- code I tried to use cv.Sobel and cv.filter2D. but the matlab return error message below.

------------------ Error message----------------------------------- Error using cv.Sobel Attempt to execute SCRIPT Sobel as a function: C:\dev\mexopencv+cv\Sobel.m

I tried the code below

------------------ Code----------------------------------- img = imread('images.png'); Edgeimage = cv.Sobel(img);

or ------------------ Code----------------------------------- img = imread('images.png'); result = cv.filter2D(img, [1 0 -1]); imshow(result);

How can I correct the mexopencv ?

KoreaGODSUNG avatar Mar 20 '19 07:03 KoreaGODSUNG