This file is indexed.

/usr/include/vl/scalespace.h is in libvlfeat-dev 0.9.20+dfsg0-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
/** @file scalespace.h
 ** @brief Scale Space (@ref scalespace)
 ** @author Andrea Vedaldi
 ** @author Karel Lenc
 ** @author Michal Perdoch
 **/

/*
Copyright (C) 2007-12 Andrea Vedaldi and Brian Fulkerson.
All rights reserved.

This file is part of the VLFeat library and is made available under
the terms of the BSD license (see the COPYING file).
*/

#ifndef VL_SCALESPACE_H
#define VL_SCALESPACE_H

#include "generic.h"
#include "imopv.h"
#include "mathop.h"

/* ---------------------------------------------------------------- */
/*                                             VlScaleSpaceGeometry */
/* ---------------------------------------------------------------- */

/** @brief Geometry of a scale space
 **
 ** There are a few restrictions on the valid geometrties.
 */
typedef struct _VlScaleSpaceGeometry
{
  vl_size width ; /**< Image width */
  vl_size height ; /**< Image height */
  vl_index firstOctave ; /**< Index of the fisrt octave */
  vl_index lastOctave ; /**< Index of the last octave */
  vl_size octaveResolution ; /**< Number of octave subdivisions */
  vl_index octaveFirstSubdivision ; /**< Index of the first octave subdivision */
  vl_index octaveLastSubdivision ; /**< Index of the last octave subdivision */
  double baseScale ; /**< Base smoothing (smoothing of octave 0, level 0) */
  double nominalScale ; /**< Nominal smoothing of the original image */
} VlScaleSpaceGeometry ;

VL_EXPORT
vl_bool vl_scalespacegeometry_is_equal (VlScaleSpaceGeometry a,
                                        VlScaleSpaceGeometry b) ;

/* ---------------------------------------------------------------- */
/*                                       VlScaleSpaceOctaveGeometry */
/* ---------------------------------------------------------------- */

/** @brief Geometry of one octave of a scale space */
typedef struct _VlScaleSpaceOctaveGeometry
{
  vl_size width ; /**< Width (number of pixels) */
  vl_size height ; /**< Height (number of pixels) */
  double step ; /**< Sampling step (size of a pixel) */
} VlScaleSpaceOctaveGeometry ;

/* ---------------------------------------------------------------- */
/*                                                     VlScaleSpace */
/* ---------------------------------------------------------------- */

typedef struct _VlScaleSpace VlScaleSpace ;

/** @name Create and destroy
 ** @{
 **/
VL_EXPORT VlScaleSpaceGeometry vl_scalespace_get_default_geometry(vl_size width, vl_size height) ;
VL_EXPORT VlScaleSpace * vl_scalespace_new (vl_size width, vl_size height) ;
VL_EXPORT VlScaleSpace * vl_scalespace_new_with_geometry (VlScaleSpaceGeometry geom) ;
VL_EXPORT VlScaleSpace * vl_scalespace_new_copy (VlScaleSpace* src);
VL_EXPORT VlScaleSpace * vl_scalespace_new_shallow_copy (VlScaleSpace* src);
VL_EXPORT void vl_scalespace_delete (VlScaleSpace *self) ;
/** @} */

/** @name Process data
 ** @{
 **/
VL_EXPORT void
vl_scalespace_put_image (VlScaleSpace *self, float const* image);
/** @} */

/** @name Retrieve data and parameters
 ** @{
 **/
VL_EXPORT VlScaleSpaceGeometry vl_scalespace_get_geometry (VlScaleSpace const * self) ;
VL_EXPORT VlScaleSpaceOctaveGeometry vl_scalespace_get_octave_geometry (VlScaleSpace const * self, vl_index o) ;
VL_EXPORT float *
vl_scalespace_get_level (VlScaleSpace * self, vl_index o, vl_index s) ;
VL_EXPORT float const *
vl_scalespace_get_level_const (VlScaleSpace const * self, vl_index o, vl_index s) ;
VL_EXPORT double
vl_scalespace_get_level_sigma (VlScaleSpace const *self, vl_index o, vl_index s) ;
/** @} */

/* VL_SCALESPACE_H */
#endif