9 #include "opencv2/photo.hpp" 18 map<int,Ptr<AlignMTB> > obj_;
25 Ptr<AlignMTB> create_AlignMTB(
26 vector<MxArray>::const_iterator first,
27 vector<MxArray>::const_iterator last)
29 ptrdiff_t len = std::distance(first, last);
32 int exclude_range = 4;
34 for (; first != last; first += 2) {
35 string key(first->toString());
36 const MxArray& val = *(first + 1);
38 max_bits = val.
toInt();
39 else if (key ==
"ExcludeRange")
40 exclude_range = val.toInt();
41 else if (key ==
"Cut")
44 mexErrMsgIdAndTxt(
"mexopencv:error",
45 "Unrecognized option %s", key.c_str());
47 return createAlignMTB(max_bits, exclude_range, cut);
58 void mexFunction(
int nlhs, mxArray *plhs[],
int nrhs,
const mxArray *prhs[])
64 vector<MxArray> rhs(prhs, prhs+nrhs);
65 int id = rhs[0].toInt();
66 string method(rhs[1].toString());
69 if (method ==
"new") {
71 obj_[++last_id] = create_AlignMTB(
72 rhs.begin() + 2, rhs.end());
78 Ptr<AlignMTB> obj = obj_[id];
79 if (method ==
"delete") {
83 else if (method ==
"clear") {
87 else if (method ==
"load") {
88 nargchk(nrhs>=3 && (nrhs%2)==1 && nlhs==0);
90 bool loadFromString =
false;
91 for (
int i=3; i<nrhs; i+=2) {
92 string key(rhs[i].toString());
94 objname = rhs[i+1].toString();
95 else if (key ==
"FromString")
96 loadFromString = rhs[i+1].toBool();
98 mexErrMsgIdAndTxt(
"mexopencv:error",
99 "Unrecognized option %s", key.c_str());
108 FileStorage fs(rhs[2].toString(), FileStorage::READ +
109 (loadFromString ? FileStorage::MEMORY : 0));
110 obj->read(objname.empty() ? fs.getFirstTopLevelNode() : fs[objname]);
112 mexErrMsgIdAndTxt(
"mexopencv:error",
"Failed to load algorithm");
115 else if (method ==
"save") {
117 obj->save(rhs[2].toString());
119 else if (method ==
"empty") {
121 plhs[0] =
MxArray(obj->empty());
123 else if (method ==
"getDefaultName") {
125 plhs[0] =
MxArray(obj->getDefaultName());
127 else if (method ==
"process") {
129 vector<Mat> src, dst;
131 vector<MxArray> arr(rhs[2].toVector<MxArray>());
132 src.reserve(arr.size());
133 for (vector<MxArray>::const_iterator it = arr.begin(); it != arr.end(); ++it)
134 src.push_back(it->toMat(CV_8U));
136 obj->process(src, dst);
139 else if (method ==
"calculateShift") {
141 Mat img0(rhs[2].toMat(CV_8U)),
142 img1(rhs[3].toMat(CV_8U));
143 Point shift = obj->calculateShift(img0, img1);
146 else if (method ==
"shiftMat") {
148 Mat src(rhs[2].toMat()), dst;
149 Point shift(rhs[3].toPoint());
150 obj->shiftMat(src, dst, shift);
153 else if (method ==
"computeBitmaps") {
155 Mat img(rhs[2].toMat(CV_8U)), tb, eb;
156 obj->computeBitmaps(img, tb, eb);
161 else if (method ==
"get") {
163 string prop(rhs[2].toString());
164 if (prop ==
"MaxBits")
165 plhs[0] =
MxArray(obj->getMaxBits());
166 else if (prop ==
"ExcludeRange")
167 plhs[0] =
MxArray(obj->getExcludeRange());
168 else if (prop ==
"Cut")
169 plhs[0] =
MxArray(obj->getCut());
171 mexErrMsgIdAndTxt(
"mexopencv:error",
172 "Unrecognized property %s", prop.c_str());
174 else if (method ==
"set") {
176 string prop(rhs[2].toString());
177 if (prop ==
"MaxBits")
178 obj->setMaxBits(rhs[3].toInt());
179 else if (prop ==
"ExcludeRange")
180 obj->setExcludeRange(rhs[3].toInt());
181 else if (prop ==
"Cut")
182 obj->setCut(rhs[3].toBool());
184 mexErrMsgIdAndTxt(
"mexopencv:error",
185 "Unrecognized property %s", prop.c_str());
188 mexErrMsgIdAndTxt(
"mexopencv:error",
189 "Unrecognized operation %s", method.c_str());
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
int toInt() const
Convert MxArray to int.
mxArray object wrapper for data conversion and manipulation.
void nargchk(bool cond)
Alias for input/ouput arguments number check.
Global constant definitions.