/usr/share/octave/packages/image-2.2.2/regionprops.m is in octave-image 2.2.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 | ## Copyright (C) 2010 Søren Hauberg <soren@hauberg.org>
## Copyright (C) 2012 Jordi Gutiérrez Hermoso <jordigh@octave.org>
##
## This program is free software; you can redistribute it and/or modify it under
## the terms of the GNU General Public License as published by the Free Software
## Foundation; either version 3 of the License, or (at your option) any later
## version.
##
## This program is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
## details.
##
## You should have received a copy of the GNU General Public License along with
## this program; if not, see <http://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {Function File} {@var{props} = } regionprops (@var{BW})
## @deftypefnx {Function File} {@var{props} = } regionprops (@var{BW}, @var{properties}, @dots{})
## @deftypefnx {Function File} {@var{props} = } regionprops (@var{L}, @var{properties}, @dots{})
## @deftypefnx {Function File} {@var{props} = } regionprops (@dots{}, @var{I}, @var{properties}, @dots{})
## Compute object properties in a binary image.
##
## @code{regionprops} computes various properties of the individual objects (as
## identified by @code{bwlabel}) in the binary image @var{BW}. The result is a
## structure array containing an entry per property per object.
##
## The optional grayscale image @var{I} is used for pixel value measurements
## (MaxIntensity, MinIntensity, MeanIntensity, PixelValues and WeightedCentroid).
##
## The following properties can be computed:
##
## @table @asis
## @item "Area"
## The number of pixels in the object.
##
## @item "BoundingBox"
## @itemx "bounding_box"
## The bounding box of the object. This is represented as a 4-vector where the
## first two entries are the @math{x} and @math{y} coordinates of the upper left
## corner of the bounding box, and the two last entries are the width and the
## height of the box.
##
## @item "Centroid"
## The center coordinate of the object.
##
## @item "EulerNumber"
## @itemx "euler_number"
## The Euler number of the object (see @code{bweuler} for details).
##
## @item "Extent"
## The area of the object divided by the area of the bounding box.
##
## @item "FilledArea"
## @itemx "filled_area"
## The area of the object including possible holes.
##
## @item "FilledImage"
## @itemx "filled_image"
## A binary image with the same size as the object's bounding box that contains
## the object with all holes removed.
##
## @item "Image"
## An image with the same size as the bounding box that contains the original pixels.
##
## @item "MaxIntensity"
## @itemx "max_intensity"
## The maximum intensity inside the object.
##
## @item "MeanIntensity"
## @itemx "mean_intensity"
## The mean intensity inside the object.
##
## @item "MinIntensity"
## @itemx "min_intensity"
## The minimum intensity inside the object.
##
## @item "Perimeter"
## The length of the boundary of the object.
##
## @item "PixelIdxList"
## @itemx "pixel_idx_list"
## The indices of the pixels in the object.
##
## @item "PixelList"
## @itemx "pixel_list"
## The actual pixel values inside the object. This is only useful for grey scale
## images.
##
## @item "PixelValues"
## @itemx "pixel_values"
## The pixel values inside the object represented as a vector.
##
## @item "WeightedCentroid"
## @itemx "weighted_centroid"
## The centroid of the object where pixel values are used as weights.
## @end table
##
## The requested properties can either be specified as several input arguments
## or as a cell array of strings. As a short-hand it is also possible to give
## the following strings as arguments.
##
## @table @asis
## @item "basic"
## The following properties are computed: @t{"Area"}, @t{"Centroid"} and
## @t{"BoundingBox"}. This is the default.
##
## @item "all"
## All properties are computed.
## @end table
##
## @seealso{bwlabel, bwperim, bweuler}
## @end deftypefn
function retval = regionprops (bw, varargin)
## Check input
if (nargin < 1)
error ("regionprops: not enough input arguments");
endif
prop_start = 1;
if (numel (varargin) >= 1 && isnumeric (varargin{1}))
if (size_equal (bw, varargin{1}))
I = varargin{1};
varargin(1) = [];
else
error ("regionprops: I must have the same size as BW");
endif
else
I = bw;
endif
if (numel (varargin) == 0)
properties = {"basic"};
elseif (numel (varargin) == 1 && iscellstr (varargin{1}))
properties = varargin{1};
elseif (iscellstr (varargin))
properties = varargin;
else
error ("regionprops: properties must be a cell array of strings");
endif
properties = lower (properties);
all_props = {"Area", "EulerNumber", "BoundingBox", "Extent", "Perimeter",...
"Centroid", "PixelIdxList", "FilledArea", "PixelList",...
"FilledImage", "Image", "MaxIntensity", "MinIntensity",...
"WeightedCentroid", "MeanIntensity", "PixelValues",...
"Orientation"};
if (ismember ("basic", properties))
properties = union (properties, {"Area", "Centroid", "BoundingBox"});
properties = setdiff (properties, "basic");
endif
if (ismember ("all", properties))
properties = all_props;
endif
if (!iscellstr (properties))
error ("%s %s", "regionprops: properties must be specified as a list of",
"strings or a cell array of strings");
endif
## Fix capitalisation, underscores of user-supplied properties...
for k = 1:numel (properties)
property = lower (strrep(properties{k}, "_", ""));
[~, idx] = ismember (property, lower (all_props));
if (!idx)
error ("regionprops: unsupported property: %s", property);
endif
properties(k) = all_props{idx};
endfor
N = ndims (bw);
## Get a labelled image
if (!islogical (bw) && all (bw >= 0) && all (bw == round (bw)))
L = bw; # the image was already labelled
num_labels = max (L (:));
elseif (N > 2)
[L, num_labels] = bwlabeln (bw);
else
[L, num_labels] = bwlabel (bw);
endif
## Return an empty struct with specified properties if there are no labels
if num_labels == 0
retval = struct ([properties; repmat({{}}, size(properties))]{:});
return;
endif
## Compute the properties
retval = struct ();
for property = lower(properties)
property = property{:};
switch (property)
case "area"
for k = 1:num_labels
retval (k).Area = local_area (L == k);
endfor
case "eulernumber"
for k = 1:num_labels
retval (k).EulerNumber = bweuler (L == k);
endfor
case "boundingbox"
for k = 1:num_labels
retval (k).BoundingBox = local_boundingbox (L == k);
endfor
case "extent"
for k = 1:num_labels
bb = local_boundingbox (L == k);
area = local_area (L == k);
idx = length (bb)/2 + 1;
retval (k).Extent = area / prod (bb(idx:end));
endfor
case "perimeter"
if (N > 2)
warning ("regionprops: skipping perimeter for Nd image");
else
for k = 1:num_labels
retval (k).Perimeter = sum (bwperim (L == k) (:));
endfor
endif
case "centroid"
for k = 1:num_labels
C = all_coords (L == k, true);
retval (k).Centroid = [mean(C)];
endfor
case "pixelidxlist"
for k = 1:num_labels
retval (k).PixelIdxList = find (L == k);
endfor
case "filledarea"
for k = 1:num_labels
retval (k).FilledArea = sum (bwfill (L == k, "holes") (:));
endfor
case "pixellist"
for k = 1:num_labels
C = all_coords (L == k, true, true);
retval (k).PixelList = C;
endfor
case "filledimage"
for k = 1:num_labels
retval (k).FilledImage = bwfill (L == k, "holes");
endfor
case "image"
for k = 1:num_labels
tmp = (L == k);
C = all_coords (tmp, false);
idx = arrayfun (@(x,y) x:y, min (C), max (C), "unif", 0);
idx = substruct ("()", idx);
retval (k).Image = subsref (tmp, idx);
endfor
case "maxintensity"
for k = 1:num_labels
retval (k).MaxIntensity = max (I(L == k)(:));
endfor
case "minintensity"
for k = 1:num_labels
retval (k).MinIntensity = min (I(L == k)(:));
endfor
case "weightedcentroid"
for k = 1:num_labels
C = all_coords (L == k, true, true);
vals = I(L == k)(:);
vals /= sum (vals);
retval (k).WeightedCentroid = [dot(C, repmat(vals, 1, columns(C)), 1)];
endfor
case "meanintensity"
for k = 1:num_labels
retval (k).MeanIntensity = mean (I(L == k)(:));
endfor
case "pixelvalues"
for k = 1:num_labels
retval (k).PixelValues = I(L == k)(:);
endfor
case "orientation"
if (N > 2)
warning ("regionprops: skipping orientation for Nd image");
break
endif
for k = 1:num_labels
[Y, X] = find (L == k);
if (numel (Y) > 1)
C = cov ([X(:), Y(:)]);
[V, lambda] = eig (C);
[max_val, max_idx] = max (diag (lambda));
v = V (:, max_idx);
retval (k).Orientation = 180 - 180 * atan2 (v (2), v (1)) / pi;
else
retval (k).Orientation = 0; # XXX: What does the other brand do?
endif
endfor
%{
case "majoraxislength"
for k = 1:num_labels
[Y, X] = find (L == k);
if (numel (Y) > 1)
C = cov ([X(:), Y(:)]);
lambda = eig (C);
retval (k).MajorAxisLength = (max (lambda));
else
retval (k).MajorAxisLength = 1;
endif
endfor
case "minoraxislength"
for k = 1:num_labels
[Y, X] = find (L == k);
if (numel (Y) > 1)
C = cov ([X(:), Y(:)]);
lambda = eig (C);
retval (k).MinorAxisLength = (min (lambda));
else
retval (k).MinorAxisLength = 1;
endif
endfor
%}
#case "extrema"
#case "convexarea"
#case "convexhull"
#case "solidity"
#case "conveximage"
#case "subarrayidx"
#case "eccentricity"
#case "equivdiameter"
otherwise
error ("regionprops: unsupported property '%s'", property);
endswitch
endfor
endfunction
function retval = local_area (bw)
retval = sum (bw (:));
endfunction
function retval = local_boundingbox (bw)
C = all_coords (bw);
retval = [min(C) - 0.5, max(C) - min(C) + 1];
endfunction
function C = all_coords (bw, flip = true, singleton = false)
N = ndims (bw);
idx = find (bw);
C = cell2mat (nthargout (1:N, @ind2sub, size(bw), idx(:)));
## Coordinate convention for 2d images is to flip the X and Y axes
## relative to matrix indexing. Nd images inherit this for the first
## two dimensions.
if (flip)
[C(:, 2), C(:, 1)] = deal (C(:, 1), C(:, 2));
endif
## Some functions above expect to work columnwise, so don't return a
## vector
if (rows (C) == 1 && !singleton)
C = [C; C];
endif
endfunction
%!test
%! c = regionprops ([0 0 1], 'centroid');
%! assert (c.Centroid, [3 1])
%!test
%! c = regionprops ([0 0 1; 0 0 0], 'centroid');
%! assert (c.Centroid, [3 1])
%!test
%! c = regionprops ([0 1 1], 'centroid'); #bug 39701
%! assert (c.Centroid, [2.5 1])
%!test
%! c = regionprops([0 1 1; 0 0 0], 'centroid'); #bug 39701
%! assert (c.Centroid, [2.5 1])
%!test
%! a = zeros (2, 3, 3);
%! a(:, :, 1) = [0 1 0; 0 0 0];
%! a(:, :, 3) = a(:, :, 1);
%! c = regionprops (a, 'centroid');
%! assert (c.Centroid, [2 1 2])
%!test
%! d1=2; d2=4; d3=6;
%! a = ones (d1, d2, d3);
%! c = regionprops (a, 'centroid');
%! assert (c.Centroid, [mean(1:d2), mean(1:d1), mean(1:d3)], eps)
%!test
%! a = [0 0 2 2; 3 3 0 0; 0 1 0 1];
%! c = regionprops (a, 'centroid');
%! assert (c(1).Centroid, [3 3], eps)
%! assert (c(2).Centroid, [3.5 1], eps)
%! assert (c(3).Centroid, [1.5 2], eps)
%!test
%! img = zeros (3, 9);
%! img(2, 1:9) = 0:0.1:0.8;
%! bw = im2bw (img, 0.5);
%! props = regionprops(bw, img, "WeightedCentroid");
%! ix = 7:9;
%! x = sum (img(2,ix) .* (ix)) / sum (img(2,ix));
%! assert (props(1).WeightedCentroid(1), x, 10*eps)
%! assert (props(1).WeightedCentroid(2), 2, 10*eps)
|