9 #include "opencv2/optflow.hpp" 21 void mexFunction(
int nlhs, mxArray *plhs[],
int nrhs,
const mxArray *prhs[])
27 vector<MxArray> rhs(prhs, prhs+nrhs);
30 string path(rhs[0].toString());
31 Mat flow(rhs[1].toMat(CV_32F));
32 bool success = writeOpticalFlow(path, flow);
36 mexErrMsgIdAndTxt(
"mexopencv:error",
"Failed to write to disk");
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
mxArray object wrapper for data conversion and manipulation.
void nargchk(bool cond)
Alias for input/ouput arguments number check.
Global constant definitions.