00001 #include "mex.h"
00002 #include <stdio.h>
00003 #include <math.h>
00004 #include "mexhead.h"
00005 #include "Doc/region_bb_docstring.h"
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054 #define NARGIN_MIN 1
00055 #define NARGIN_MAX 2
00056 #define NARGOUT_MIN 0
00057 #define NARGOUT_MAX 1
00058
00059 #define ARG_x 0
00060 #define ARG_coord 1
00061 #define ARG_bb 0
00062
00063 static const char *progname = "region_bb";
00064 #define PROGNAME region_bb
00065 static const char *in_specs[NARGIN_MAX] = {
00066 "RM",
00067 "IS|IV(2)"};
00068 static const char *in_names[NARGIN_MAX] = {
00069 "x",
00070 "coord"};
00071 static const char *out_names[NARGOUT_MAX] = {"bb"};
00072
00073
00074
00075 #define SHORTNAME rbb
00076
00077 #define Coord_count 2
00078 #define Default_coord_count 2
00079 static double Default_coord[Default_coord_count] = { 1.0, 1.0 };
00080
00081
00082
00083
00084 #define ActiveLabel(y) ((!isnan(y)) && ((y) > 0))
00085
00086
00087
00088
00089 static
00090 bb_compute(
00091 double **x,
00092 double **bb,
00093 double *coord,
00094 int Nr,
00095 int M,
00096 int N)
00097
00098 {
00099 int m, n;
00100 int r;
00101
00102
00103 for (r = 0; r < Nr; r++) {
00104
00105 bb[0][r] = M; bb[1][r] = N;
00106 bb[2][r] = 0; bb[3][r] = 0;
00107 }
00108 for (n = 0; n < N; n++)
00109 for (m = 0; m < M; m++) {
00110 r = x[n][m];
00111 if (ActiveLabel(r)) {
00112
00113 r--;
00114
00115 if (m < bb[0][r]) bb[0][r] = m;
00116 if (n < bb[1][r]) bb[1][r] = n;
00117
00118 if (m > bb[2][r]) bb[2][r] = m;
00119 if (n > bb[3][r]) bb[3][r] = n;
00120 }
00121 }
00122
00123 for (r = 0; r < Nr; r++) {
00124 if (bb[0][r] == M) {
00125
00126 bb[0][r] = bb[1][r] = bb[2][r] = bb[3][r] = mxt_getnand();
00127 continue;
00128 }
00129
00130 bb[0][r] = bb[0][r] * coord[1] + coord[0];
00131 bb[1][r] = bb[1][r] * coord[1] + coord[0];
00132
00133 bb[2][r] = (bb[2][r]+1) * coord[1] + coord[0] - 1;
00134 bb[3][r] = (bb[3][r]+1) * coord[1] + coord[0] - 1;
00135 }
00136 return;
00137 }
00138
00139
00140
00141
00142
00143 static
00144 int
00145 count_classes(
00146 double *y,
00147 int N)
00148 {
00149 int Nr = 0;
00150 int n;
00151
00152 for (n = 0; n < N; n++)
00153 if (!isnan(y[n])) {
00154 if (y[n] < 0 || floor(y[n]) != y[n])
00155 return(-1);
00156 if (y[n] > Nr)
00157 Nr = y[n];
00158 }
00159 return(Nr);
00160 }
00161
00162
00163
00164
00165
00166 #ifdef StaticP
00167 StaticP
00168 #endif
00169 void
00170 mexFunction(
00171 int nlhs,
00172 mxArray *plhs[],
00173 int nrhs,
00174 const mxArray *prhs[])
00175 {
00176 int m, n;
00177 double **x2, **bb2;
00178 int Nr;
00179 const mxArray *prhs_coord;
00180 char errstr[256];
00181
00182
00183 if (nrhs < 0) {
00184 plhs[0] = mxt_PackSignature((mxt_Signature) (-nrhs),
00185 NARGIN_MIN, NARGIN_MAX,
00186 NARGOUT_MIN, NARGOUT_MAX,
00187 in_names, in_specs, out_names, docstring);
00188 return;
00189 }
00190
00191
00192
00193 if ((nrhs < NARGIN_MIN) || (nrhs > NARGIN_MAX))
00194 mexErrMsgTxt((snprintf(errstr, sizeof(errstr),
00195 "%s: Expect %d <= input args <= %d",
00196 progname, NARGIN_MIN, NARGIN_MAX), errstr));
00197 if ((nlhs < NARGOUT_MIN) || (nlhs > NARGOUT_MAX))
00198 mexErrMsgTxt((snprintf(errstr, sizeof(errstr),
00199 "%s: Expect %d <= output args <= %d",
00200 progname, NARGOUT_MIN, NARGOUT_MAX), errstr));
00201 mexargparse(nrhs, prhs, in_names, in_specs, NULL, progname);
00202
00203
00204
00205
00206 if (nrhs < (ARG_coord+1))
00207 prhs_coord = mxCreateDoubleMatrix(0, 0, mxREAL);
00208 else
00209 prhs_coord = prhs[ARG_coord];
00210
00211
00212
00213
00214
00215 m = mxGetM(prhs[ARG_x]);
00216 n = mxGetN(prhs[ARG_x]);
00217
00218
00219
00220 if ((Nr = count_classes(mxGetPr(prhs[ARG_x]), m*n)) < 0)
00221 mexErrMsgTxt((snprintf(errstr, sizeof(errstr),
00222
00223 "%s: Regions x must be NaN or nonnegative integers",
00224 progname), errstr));
00225
00226
00227
00228
00229 plhs[ARG_bb] = mxCreateDoubleMatrix(Nr, 4, mxREAL);
00230
00231
00232
00233
00234
00235 x2 = mxt_make_matrix2(prhs[ARG_x], -1, -1, 0.0);
00236 bb2 = mxt_make_matrix2(plhs[ARG_bb], -1, -1, 0.0);
00237 bb_compute(x2, bb2,
00238
00239 mxt_make_vector(prhs_coord,
00240 Coord_count, Default_coord, Default_coord_count),
00241
00242 Nr,
00243 m, n);
00244
00245 mxFree(x2);
00246 mxFree(bb2);
00247 }
00248
00249
00250
00251 #ifdef MEX2C_TAIL_HOOK
00252 #include "mex2c_tail.h"
00253 #endif
00254