This file is indexed.

/usr/share/octave/packages/geometry-1.7.0/polynomialCurves2d/polynomialCurveSetFit.m is in octave-geometry 1.7.0-1build1.

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
## Copyright (C) 2004-2011 David Legland <david.legland@grignon.inra.fr>
## Copyright (C) 2004-2011 INRA - CEPIA Nantes - MIAJ (Jouy-en-Josas)
## Copyright (C) 2012 Adapted to Octave by Juan Pablo Carbajal <carbajal@ifi.uzh.ch>
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted provided that the following conditions are met:
##
##     1 Redistributions of source code must retain the above copyright notice,
##       this list of conditions and the following disclaimer.
##     2 Redistributions in binary form must reproduce the above copyright
##       notice, this list of conditions and the following disclaimer in the
##       documentation and/or other materials provided with the distribution.
##
## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ''AS IS''
## AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
## ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
## ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
## SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
## CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

## -*- texinfo -*-
## @deftypefn {Function File} {@var{coefs}=} polynomialCurveSetFit (@var{img})
## @deftypefnx {Function File} {@dots{} =} polynomalCurveSetFit (@var{img}, @var{deg})
## @deftypefnx {Function File} {[@dots{} @var{lbl}] =} polynomalCurveSetFit (@dots{})
## Fit a set of polynomial curves to a segmented image
##
##   Result is a cell array of matrices. Each matrix is @var{deg}+1-by-2, and
##   contains coefficients of polynomial curve for each coordinate.
##   @var{bnds} contains the boundary of the parametrizations.
##   @var{img} is first binarised, then skeletonized.
##
##   Also returns an image of labels @var{lbl} for the segmented curves. The max label
##   is the number of curves, and the length of @var{coefs}.
##
##   Requires the toolboxes:
##   - Optimization
##   - Image Processing
##
## @seealso{polynomialCurves2d, polynomialCurveFit}
## @end deftypefn

function [coefs lblBranches] = polynomialCurveSetFit(seg, varargin)
  # default degree for curves
  deg = 2;
  if ~isempty(varargin)
      deg = varargin{1};
  end

  # ajoute un contour
  seg([1 end], :) = 1;
  seg(:, [1 end]) = 1;

  # skeletise le segmentat
  seg = bwmorph(seg, 'shrink', Inf);

  # compute image of multiple points (intersections between curves)
  imgNodes = imfilter(double(seg), ones([3 3])) .* seg > 3;

  # compute coordinate of nodes, as c entroids of the multiple points
  lblNodes = bwlabel(imgNodes, 8);
  struct   = regionprops(lblNodes, 'Centroid');
  nodes = zeros(length(struct), 2);
  for i=1:length(struct)
      nodes(i, [2 1]) = struct(i).Centroid;
  end
  figure(1)
#  subplot(1,2,1)
#  imshow(seg);
#  hold on
#  plot(nodes(:,1),nodes(:,2),'og')
#  subplot(1,2,2)
  imshow(imgNodes);
  hold on
  plot(nodes(:,1),nodes(:,2),'og')
  keyboard

  # enleve les bords de l'image
  seg([1 end], :) = 0;
  seg(:, [1 end]) = 0;

  # Isolate the branches
  imgBranches = seg & ~imgNodes;
  lblBranches = bwlabel(imgBranches, 8);

  # # donne une couleur a chaque branche, et affiche
  # map = colorcube(max(lblBranches(:))+1);
  # rgbBranches = label2rgb(lblBranches, map, 'w', 'shuffle');
  # imshow(rgbBranches);

  # number of curves
  nBranches = max(lblBranches(:));

  # allocate memory
  coefs = cell(nBranches, 1);
  bnds  = cell(nBranches, 1);

  # For each curve, find interpolated polynomial curve
  for i = 1:nBranches
      # extract points corresponding to current curve
      imgBranch = lblBranches == i;
      points    = chainPixels (imgBranch);

      # check number of points is sufficient
      if size(points, 1) < max(deg+1-2, 2)
          # find labels of nodes
          inds = unique(lblNodes(imdilate(imgBranch, true (3,3))));
          inds = inds(inds ~= 0);

          if length(inds) < 2
              warning ("geometry:poylnomialCurveSetFit", ...
                   ['Could not find extremities of branch number ' num2str(i)]);
              continue;
          end

          # consider extremity nodes
          node0 = nodes(inds(1), :);
          node1 = nodes(inds(2), :);

          # use only a linear approximation
          xc = zeros(1, deg+1);
          yc = zeros(1, deg+1);
          xc(1) = node0(1);
          yc(1) = node0(2);
          xc(2) = node1(1)-node0(1);
          yc(2) = node1(2)-node0(2);

          # assigne au tableau de courbes
          coefs{i} = [xc;yc];
          # next branch
          continue;
      end

      # find nodes closest to first and last points of the current curve
      [dist, ind0] = minDistancePoints(points(1, :), nodes); ##ok<*ASGLU>
      [dist, ind1] = minDistancePoints(points(end, :), nodes);

      # add nodes to the curve.
      points = [nodes(ind0,:); points; nodes(ind1,:)]; ##ok<AGROW>

      # parametrization of the polyline
      t = parametrize(points);
      t = t / max(t);

      # fit a polynomial curve to the set of points
      [xc yc] = polynomialCurveFit(...
          t, points, deg, ...
          0, {points(1,1), points(1,2)},...
          1, {points(end,1), points(end,2)});


      plot(points(:,1),points(:,2),'or')
      hold on
      drawPolynomialCurve ([0 1], xc,yc);
      axis tight
      v = axis();
      hold off
      imshow (~imgBranch)
      hold on
      plot(points(:,1),points(:,2),'or')
      drawPolynomialCurve ([0 1], xc,yc);
      axis xy
      axis (v);
      pause

      # stores result
      coefs{i} = [xc;yc];
  end

endfunction


function points = chainPixels(img, varargin)
#CHAINPIXELS return the list of points which constitute a curve on image
#   output = chainPixels(input)

  conn = 8;
  if ~isempty(varargin)
      conn = varargin{1};
  end

  # matrice de voisinage
  if conn == 4
      f = [0 1 0;1 1 1;0 1 0];
  elseif conn == 8
      f = ones([3 3]);
  end

  # find extremity points
  nb = imfilter(double(img), f) .* img;
  imgEnding = nb == 2 | nb == 1;
  [yi xi] = find(imgEnding);

  # extract coordinates of points
  [y x] = find(img);

  # index of first point
  if isempty(xi)
      # take arbitrary point
      ind = 1;
  else
      ind = find(x==xi(1) & y==yi(1));
  end

  # allocate memory
  points  = zeros(length(x), 2);

  if conn == 8
      for i = 1:size(points, 1)
          # avoid multiple neighbors (can happen in loops)
          ind = ind(1);

          # add current point to chained curve
          points(i,:) = [x(ind) y(ind)];

          # remove processed coordinate
          x(ind) = [];
          y(ind) = [];

          # find next candidate
          ind = find(abs(x-points(i,1))<=1 & abs(y-points(i,2))<=1);
      end

  else
      for i = 1:size(points, 1)
          # avoid multiple neighbors (can happen in loops)
          ind = ind(1);

          # add current point to chained curve
          points(i,:) = [x(ind) y(ind)];

          # remove processed coordinate
          x(ind) = [];
          y(ind) = [];

          # find next candidate
          ind = find(abs(x-points(i,1)) + abs(y-points(i,2)) <=1 );
      end
  end

endfunction

%!demo
%! [m, cmap] = imread ("default.img");
%! m         = ind2gray (m, cmap);
%! mbw       = im2bw(m, graythresh(m)*1.3);
%!
%! [c t] = polynomialCurveSetFit (mbw);
%!
%! figure(1)
%! clf;
%! imshow (m)
%! hold on
%! for i=1:numel(c)
%!   if !isempty (c{i})
%!     drawPolynomialCurve ([0 1], c{i});
%!   endif
%! endfor
%!
%! hold off