G0ldP0w3r
G0ldP0w3r

Reputation: 39

how do OpenCV shared libraries in matlab?

i'm using matlab 2013a (win7 64bit).

install opencv on C:\OpenCV-2.4.7

how we connect Open Cv libraries into MATLAB's ?

Quick start -->

http://groups.inf.ed.ac.uk/calvin/calvin_upperbody_detector/downloads/README.html

e.g.

    from the bash command line execute:

    LD_LIBRARY_PATH="path_to_opencv_lib:$LD_LIBRARY_PATH" 

Upvotes: 1

Views: 243

Answers (1)

Vuwox
Vuwox

Reputation: 2359

I'm using mexopencv. It easy to use and well documented. But if you want to get the real OpenCV MATLAB wrapper, you can only get it from the GitHub and not with the .exe

The OpenCV Matlab module

Upvotes: 2

Related Questions