I need to invoke Matlab functions "load" and "save" in an embedded Matlab function, I try this code :
eml.extrinsic('load');
eml.extrinsic('save');
load('initial.mat','pos');
.
..
...code...
..
.
save('initial.mat','pos');
but it doesn't work ! Any suggest ? Thanks.
I'm developing a MatLab toolbox about stereopsis, In order to compute the disparity map given two stereo images I need to use the Birchfield-Tomasi algorithm included in the OpenCV libraries. I have created a folder with all header files needed to compile the cvdpstereo.cpp file, but when I try...