22 nargchk(nrhs>=5 && (nrhs%2)==1 && nlhs<=1);
29 for (
int i=5; i<nrhs; i+=2) {
30 string key(rhs[i].toString());
32 dtype = (rhs[i+1].isChar()) ?
36 "Unrecognized option %s", key.
c_str());
43 double alpha = rhs[1].toDouble(),
44 beta = rhs[3].toDouble(),
45 gamma = rhs[4].toDouble();
46 addWeighted(src1, alpha, src2, beta, gamma, dst, dtype);
const ConstMap< std::string, int > ClassNameMap
Translates class name used in MATLAB to equivalent OpenCV depth.
struct mxArray_tag mxArray
Forward declaration for mxArray.
LIBMWMEX_API_EXTERN_C void mexErrMsgIdAndTxt(const char *identifier, const char *err_msg,...)
Issue formatted error message with corresponding error identifier and return to MATLAB prompt...
mxArray object wrapper for data conversion and manipulation.
void nargchk(bool cond)
Alias for input/output arguments number check.
void addWeighted(InputArray src1, double alpha, InputArray src2, double beta, double gamma, OutputArray dst, int dtype=-1)
Global constant definitions.
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.