This file is indexed.

/usr/include/x86_64-linux-gnu/visp3/core/vpImageFilter.h is in libvisp-core-dev 3.0.0-4.

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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
/****************************************************************************
 *
 * This file is part of the ViSP software.
 * Copyright (C) 2005 - 2015 by Inria. All rights reserved.
 *
 * This software is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * ("GPL") version 2 as published by the Free Software Foundation.
 * See the file LICENSE.txt at the root directory of this source
 * distribution for additional information about the GNU GPL.
 *
 * For using ViSP with software that can not be combined with the GNU
 * GPL, please contact Inria about acquiring a ViSP Professional
 * Edition License.
 *
 * See http://visp.inria.fr for more information.
 *
 * This software was developed at:
 * Inria Rennes - Bretagne Atlantique
 * Campus Universitaire de Beaulieu
 * 35042 Rennes Cedex
 * France
 *
 * If you have questions regarding the use of this file, please contact
 * Inria at visp@inria.fr
 *
 * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 *
 * Description:
 * Various image tools, convolution, ...
 *
 * Authors:
 * Eric Marchand
 *
 *****************************************************************************/



#ifndef vpImageFilter_H
#define vpImageFilter_H

/*!
  \file vpImageFilter.h
  \brief  Various image filter, convolution, etc...

*/

#include <visp3/core/vpImage.h>
#include <visp3/core/vpImageException.h>
#include <visp3/core/vpMatrix.h>
#include <visp3/core/vpMath.h>

#include <fstream>
#include <iostream>
#include <math.h>
#include <string.h>

/*!
  \class vpImageFilter

  \ingroup group_core_image

  \brief  Various image filter, convolution, etc...

*/
class VISP_EXPORT vpImageFilter
{

public:
#if defined(VISP_HAVE_OPENCV) && (VISP_HAVE_OPENCV_VERSION >= 0x020100)
  static void canny(const vpImage<unsigned char>& I,
                    vpImage<unsigned char>& Ic,
                    const unsigned int gaussianFilterSize,
                    const double thresholdCanny,
                    const unsigned int apertureSobel);
#endif

  /*!
   Apply a 1x3 derivative filter to an image pixel.

   \param I : Image to filter
   \param r: coordinates (row) of the pixel
   \param c : coordinates (column) of the pixel
   */
  template<class T>
  static double derivativeFilterX(const vpImage<T> &I,
                                  const unsigned int r, const unsigned int c)
  {
    return (2047.0 *(I[r][c+1] - I[r][c-1])
            +913.0 *(I[r][c+2] - I[r][c-2])
            +112.0 *(I[r][c+3] - I[r][c-3]))/8418.0;
  }

  /*!
   Apply a 3x1 derivative filter to an image pixel.

   \param I : Image to filter
   \param r : coordinates (row) of the pixel
   \param c : coordinates (column) of the pixel
   */
  template<class T>
  static double derivativeFilterY(const vpImage<T> &I,
                                  const unsigned int r, const unsigned int c)
  {
    return (2047.0 *(I[r+1][c] - I[r-1][c])
            +913.0 *(I[r+2][c] - I[r-2][c])
            +112.0 *(I[r+3][c] - I[r-3][c]))/8418.0;
  }

  /*!
   Apply a 1 x size Derivative Filter in X to an image pixel.

   \param I : Image to filter
   \param r : coordinates (row) of the pixel
   \param c : coordinates (column) of the pixel
   \param filter : coefficients of the filter to be initialized using vpImageFilter::getGaussianDerivativeKernel().
   \param size : size of the filter

   \sa vpImageFilter::getGaussianDerivativeKernel()
   */

  template<class T>
  static double derivativeFilterX(const vpImage<T> &I,
                                  const unsigned int r, const unsigned int c,
                                  const double *filter, const unsigned int size)
  {
    unsigned int i;
    double result;

    result = 0;

    for(i=1; i<=(size-1)/2; i++)
    {
      result += filter[i]*(I[r][c+i] - I[r][c-i]) ;
    }
    return result;
  }



  /*!
   Apply a size x 1 Derivative Filter in Y to an image pixel.

   \param I : Image to filter
   \param r : coordinates (row) of the pixel
   \param c : coordinates (column) of the pixel
   \param filter : coefficients of the filter to be initialized using vpImageFilter::getGaussianDerivativeKernel().
   \param size : size of the filter

  \sa vpImageFilter::getGaussianDerivativeKernel()
   */
  template<class T>
  static double derivativeFilterY(const vpImage<T> &I,
                                  const unsigned int r, const unsigned int c,
                                  const double *filter, const unsigned int size)
  {
    unsigned int i;
    double result;

    result = 0;

    for(i=1; i<=(size-1)/2; i++)
    {
      result += filter[i]*(I[r+i][c] - I[r-i][c]) ;
    }
    return result;
  }

  static void filter(const vpImage<double> &I,
                     vpImage<double>& Iu,
                     vpImage<double>& Iv,
                     const vpMatrix& M) ;


  static void filter(const vpImage<unsigned char> &I,
                     vpImage<double>& If,
                     const vpMatrix& M) ;


  static void filter(const vpImage<unsigned char> &I, vpImage<double>& GI, const double *filter,unsigned  int size);
  static void filter(const vpImage<double> &I, vpImage<double>& GI, const double *filter,unsigned  int size);

  static inline unsigned char filterGaussXPyramidal(const vpImage<unsigned char> &I, unsigned int i, unsigned int j)
  {
    return (unsigned char)((1.*I[i][j-2]+4.*I[i][j-1]+6.*I[i][j]+4.*I[i][j+1]+1.*I[i][j+2])/16.);
  }
  static inline unsigned char filterGaussYPyramidal(const vpImage<unsigned char> &I, unsigned int i, unsigned int j)
  {
    return (unsigned char)((1.*I[i-2][j]+4.*I[i-1][j]+6.*I[i][j]+4.*I[i+1][j]+1.*I[i+2][j])/16.);
  }

  static void filterX(const vpImage<unsigned char> &I, vpImage<double>& dIx, const double *filter,unsigned  int size);
  static void filterX(const vpImage<double> &I, vpImage<double>& dIx, const double *filter,unsigned  int size);

  static inline double filterX(const vpImage<unsigned char> &I,
                               unsigned int r, unsigned int c,
                               const double *filter,unsigned  int size)
  {
    double result;

    result = 0;

    for(unsigned int i=1; i<=(size-1)/2; i++)
    {
      result += filter[i]*(I[r][c+i] + I[r][c-i]) ;
    }
    return result+filter[0]*I[r][c];
  }


  static inline double filterXLeftBorder(const vpImage<unsigned char> &I,
                                         unsigned int r, unsigned int c,
                                         const double *filter,unsigned  int size)
  {
    double result;

    result = 0;

    for(unsigned int i=1; i<=(size-1)/2; i++)
    {
      if(c>i)
        result += filter[i]*(I[r][c+i] + I[r][c-i]) ;
      else
        result += filter[i]*(I[r][c+i] + I[r][i-c]) ;
    }
    return result+filter[0]*I[r][c];
  }

  static inline double filterXRightBorder(const vpImage<unsigned char> &I,
                                          unsigned int r, unsigned int c,
                                          const double *filter,unsigned  int size)
  {
    double result;

    result = 0;

    for(unsigned int i=1; i<=(size-1)/2; i++)
    {
      if(c+i<I.getWidth())
        result += filter[i]*(I[r][c+i] + I[r][c-i]) ;
      else
        result += filter[i]*(I[r][2*I.getWidth()-c-i-1] + I[r][c-i]) ;
    }
    return result+filter[0]*I[r][c];
  }

  static inline double filterX(const vpImage<double> &I,
                               unsigned int r, unsigned int c,
                               const double *filter,unsigned  int size)
  {
    double result;

    result = 0;

    for(unsigned int i=1; i<=(size-1)/2; i++)
    {
      result += filter[i]*(I[r][c+i] + I[r][c-i]) ;
    }
    return result+filter[0]*I[r][c];
  }

  static inline double filterXLeftBorder(const vpImage<double> &I,
                                         unsigned int r, unsigned int c,
                                         const double *filter,unsigned  int size)
  {
    double result;

    result = 0;

    for(unsigned int i=1; i<=(size-1)/2; i++)
    {
      if(c>i)
        result += filter[i]*(I[r][c+i] + I[r][c-i]) ;
      else
        result += filter[i]*(I[r][c+i] + I[r][i-c]) ;
    }
    return result+filter[0]*I[r][c];
  }

  static inline double filterXRightBorder(const vpImage<double> &I,
                                          unsigned int r, unsigned int c,
                                          const double *filter,unsigned  int size)
  {
    double result;

    result = 0;

    for(unsigned int i=1; i<=(size-1)/2; i++)
    {
      if(c+i<I.getWidth())
        result += filter[i]*(I[r][c+i] + I[r][c-i]) ;
      else
        result += filter[i]*(I[r][2*I.getWidth()-c-i-1] + I[r][c-i]) ;
    }
    return result+filter[0]*I[r][c];
  }

  static void filterY(const vpImage<unsigned char> &I, vpImage<double>& dIx, const double *filter,unsigned  int size);
  static void filterY(const vpImage<double> &I, vpImage<double>& dIx, const double *filter,unsigned  int size);
  static inline double filterY(const vpImage<unsigned char> &I,
                               unsigned int r, unsigned int c,
                               const double *filter,unsigned  int size)
  {
    double result;

    result = 0;

    for(unsigned int i=1; i<=(size-1)/2; i++)
    {
      result += filter[i]*(I[r+i][c] + I[r-i][c]) ;
    }
    return result+filter[0]*I[r][c];
  }

  double static inline filterYTopBorder(const vpImage<unsigned char> &I, unsigned int r, unsigned int c, const double *filter,unsigned  int size)
  {
    double result;

    result = 0;

    for(unsigned int i=1; i<=(size-1)/2; i++)
    {
      if(r>i)
        result += filter[i]*(I[r+i][c] + I[r-i][c]) ;
      else
        result += filter[i]*(I[r+i][c] + I[i-r][c]) ;
    }
    return result+filter[0]*I[r][c];
  }

  double static inline filterYBottomBorder(const vpImage<unsigned char> &I, unsigned int r, unsigned int c, const double *filter,unsigned  int size)
  {
    double result;

    result = 0;

    for(unsigned int i=1; i<=(size-1)/2; i++)
    {
      if(r+i<I.getHeight())
        result += filter[i]*(I[r+i][c] + I[r-i][c]) ;
      else
        result += filter[i]*(I[2*I.getHeight()-r-i-1][c] + I[r-i][c]) ;
    }
    return result+filter[0]*I[r][c];
  }

  static inline double filterYTopBorder(const vpImage<double> &I, unsigned int r, unsigned int c, const double *filter,unsigned  int size)
  {
    double result;

    result = 0;

    for(unsigned int i=1; i<=(size-1)/2; i++)
    {
      if(r>i)
        result += filter[i]*(I[r+i][c] + I[r-i][c]) ;
      else
        result += filter[i]*(I[r+i][c] + I[i-r][c]) ;
    }
    return result+filter[0]*I[r][c];
  }

  static inline double filterYBottomBorder(const vpImage<double> &I, unsigned int r, unsigned int c, const double *filter,unsigned  int size)
  {
    double result;

    result = 0;

    for(unsigned int i=1; i<=(size-1)/2; i++)
    {
      if(r+i<I.getHeight())
        result += filter[i]*(I[r+i][c] + I[r-i][c]) ;
      else
        result += filter[i]*(I[2*I.getHeight()-r-i-1][c] + I[r-i][c]) ;
    }
    return result+filter[0]*I[r][c];
  }

  static inline double filterY(const vpImage<double> &I,
                               unsigned int r, unsigned int c,
                               const double *filter,unsigned  int size)
  {
    double result;

    result = 0;

    for(unsigned int i=1; i<=(size-1)/2; i++)
    {
      result += filter[i]*(I[r+i][c] + I[r-i][c]) ;
    }
    return result+filter[0]*I[r][c];
  }

  static void gaussianBlur(const vpImage<unsigned char> &I, vpImage<double>& GI, unsigned int size=7, double sigma=0., bool normalize=true);
  static void gaussianBlur(const vpImage<double> &I, vpImage<double>& GI, unsigned int size=7, double sigma=0., bool normalize=true);
  /*!
   Apply a 5x5 Gaussian filter to an image pixel.

   \param fr : Image to filter
   \param r : coordinates (row) of the pixel
   \param c : coordinates (column) of the pixel
   */
  template<class T>
  static double gaussianFilter(const vpImage<T> & fr,
                               const unsigned int r, const unsigned int c)
  {
    //filter Gaussien
    return (
          15.0 * fr[r][c]
          + 12.0 * ( fr[r-1][c]  + fr[r][c-1]  + fr[r+1][c]   + fr[r][c+1]   )
          + 9.0  * ( fr[r-1][c-1] + fr[r+1][c-1] + fr[r-1][c+1] + fr[r+1][c+1])
          + 5.0  * ( fr[r-2][c]   + fr[r][c-2]   + fr[r+2][c]   + fr[r][c+2] )
          + 4.0  * ( fr[r-2][c+1] + fr[r-2][c-1] + fr[r-1][c-2] + fr[r+1][c-2] +
                     fr[r+2][c-1] + fr[r+2][c+1] + fr[r-1][c+2] + fr[r+1][c+2] )
          + 2.0  * ( fr[r-2][c-2] + fr[r+2][c-2] + fr[r-2][c+2] + fr[r+2][c+2] )
          )
        /159.0;
  }
  //operation pour pyramide gaussienne
  static void getGaussPyramidal(const vpImage<unsigned char> &I, vpImage<unsigned char>& GI);
  static void getGaussXPyramidal(const vpImage<unsigned char> &I, vpImage<unsigned char>& GI);
  static void getGaussYPyramidal(const vpImage<unsigned char> &I, vpImage<unsigned char>& GI);

  static void getGaussianKernel(double *filter, unsigned int size, double sigma=0., bool normalize=true);
  static void getGaussianDerivativeKernel(double *filter, unsigned int size, double sigma=0., bool normalize=true);

  //fonction renvoyant le gradient en X de l'image I pour traitement pyramidal => dimension /2
  static void getGradX(const vpImage<unsigned char> &I, vpImage<double>& dIx);
  static void getGradX(const vpImage<unsigned char> &I, vpImage<double>& dIx, const double *filter, unsigned int size);
  static void getGradX(const vpImage<double> &I, vpImage<double>& dIx, const double *filter, unsigned int size);
  static void getGradXGauss2D(const vpImage<unsigned char> &I, vpImage<double>& dIx, const double *gaussianKernel,
                              const double *gaussianDerivativeKernel, unsigned  int size);

  //fonction renvoyant le gradient en Y de l'image I
  static void getGradY(const vpImage<unsigned char> &I, vpImage<double>& dIy);
  static void getGradY(const vpImage<unsigned char> &I, vpImage<double>& dIy, const double *filter, unsigned int size);
  static void getGradY(const vpImage<double> &I, vpImage<double>& dIy, const double *filter, unsigned int size);
  static void getGradYGauss2D(const vpImage<unsigned char> &I, vpImage<double>& dIy, const double *gaussianKernel,
                              const double *gaussianDerivativeKernel,unsigned  int size);

} ;


#endif