This file is indexed.

/usr/include/vigra/blockwise_watersheds.hxx is in libvigraimpex-dev 1.10.0+git20160211.167be93+dfsg-2+b5.

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
/************************************************************************/
/*                                                                      */
/*     Copyright 2013-2014 by Martin Bidlingmaier and Ullrich Koethe    */
/*                                                                      */
/*    This file is part of the VIGRA computer vision library.           */
/*    The VIGRA Website is                                              */
/*        http://hci.iwr.uni-heidelberg.de/vigra/                       */
/*    Please direct questions, bug reports, and contributions to        */
/*        ullrich.koethe@iwr.uni-heidelberg.de    or                    */
/*        vigra@informatik.uni-hamburg.de                               */
/*                                                                      */
/*    Permission is hereby granted, free of charge, to any person       */
/*    obtaining a copy of this software and associated documentation    */
/*    files (the "Software"), to deal in the Software without           */
/*    restriction, including without limitation the rights to use,      */
/*    copy, modify, merge, publish, distribute, sublicense, and/or      */
/*    sell copies of the Software, and to permit persons to whom the    */
/*    Software is furnished to do so, subject to the following          */
/*    conditions:                                                       */
/*                                                                      */
/*    The above copyright notice and this permission notice shall be    */
/*    included in all copies or substantial portions of the             */
/*    Software.                                                         */
/*                                                                      */
/*    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND    */
/*    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES   */
/*    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND          */
/*    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT       */
/*    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,      */
/*    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING      */
/*    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR     */
/*    OTHER DEALINGS IN THE SOFTWARE.                                   */
/*                                                                      */
/************************************************************************/

#ifndef VIGRA_BLOCKWISE_WATERSHEDS_HXX
#define VIGRA_BLOCKWISE_WATERSHEDS_HXX

#include "threadpool.hxx"
#include "multi_array.hxx"
#include "multi_gridgraph.hxx"
#include "blockify.hxx"
#include "blockwise_labeling.hxx"
#include "overlapped_blocks.hxx"

#include <limits>

namespace vigra
{

/** \addtogroup SeededRegionGrowing
*/
//@{

namespace blockwise_watersheds_detail
{

template <class DataArray, class DirectionsBlocksIterator>
void prepareBlockwiseWatersheds(const Overlaps<DataArray>& overlaps,
                                DirectionsBlocksIterator directions_blocks_begin,
                                BlockwiseLabelOptions const & options)
{
    static const unsigned int N = DataArray::actual_dimension;
    typedef typename MultiArrayShape<DataArray::actual_dimension>::type Shape;
    typedef typename DirectionsBlocksIterator::value_type DirectionsBlock;
    Shape shape = overlaps.shape();
    vigra_assert(shape == directions_blocks_begin.shape(), "");

    MultiCoordinateIterator<DataArray::actual_dimension> itBegin(shape);
    MultiCoordinateIterator<DataArray::actual_dimension> end = itBegin.getEndIterator();
    typedef typename MultiCoordinateIterator<DataArray::actual_dimension>::value_type Coordinate;

    parallel_foreach(options.getNumThreads(),
        itBegin,end,
        [&](const int threadId, const Coordinate  iterVal){

            DirectionsBlock directions_block = directions_blocks_begin[iterVal];
            OverlappingBlock<DataArray> data_block = overlaps[iterVal];

            typedef GridGraph<DataArray::actual_dimension, undirected_tag> Graph;
            typedef typename Graph::NodeIt GraphScanner;
            typedef typename Graph::OutArcIt NeighborIterator;

            Graph graph(data_block.block.shape(), options.getNeighborhood());
            for(GraphScanner node(graph); node != lemon::INVALID; ++node)
            {
                if(within(*node, data_block.inner_bounds))
                {
                    typedef typename DataArray::value_type Data;
                    Data lowest_neighbor = data_block.block[*node];

                    typedef typename DirectionsBlock::value_type Direction;
                    Direction lowest_neighbor_direction = std::numeric_limits<unsigned short>::max();

                    for(NeighborIterator arc(graph, *node); arc != lemon::INVALID; ++arc)
                    {
                        Shape neighbor_coordinates = graph.target(*arc);
                        Data neighbor_data = data_block.block[neighbor_coordinates];
                        if(neighbor_data < lowest_neighbor)
                        {
                            lowest_neighbor = neighbor_data;
                            lowest_neighbor_direction = arc.neighborIndex();
                        }
                    }
                    directions_block[*node - data_block.inner_bounds.first] = lowest_neighbor_direction;
                }
            }
        }
    );
}

template <unsigned int N>
struct UnionFindWatershedsEquality
{
    // FIXME: this graph object shouldn't be necessary, most functions (and state) of graph are not used
    // this probably needs some refactoring in GridGraph
    GridGraph<N, undirected_tag>* graph;

    template <class Shape>
    bool operator()(unsigned short u, const unsigned short v, const Shape& diff) const
    {
        static const unsigned short plateau_id = std::numeric_limits<unsigned short>::max();
        return (u == plateau_id && v == plateau_id) ||
               (u != plateau_id && graph->neighborOffset(u) == diff) ||
               (v != plateau_id && graph->neighborOffset(graph->oppositeIndex(v)) == diff);
    }

    struct WithDiffTag
    {};
};

} // namespace blockwise_watersheds_detail

/*************************************************************/
/*                                                           */
/*                      unionFindWatershedsBlockwise         */
/*                                                           */
/*************************************************************/

/** \brief Blockwise union-find watersheds transform for MultiArrays and ChunkedArrays.

    <b> Declaration:</b>

    \code
    namespace vigra { namespace blockwise {
        template <unsigned int N, class Data, class S1,
                                  class Label, class S2>
        Label
        unionFindWatershedsBlockwise(MultiArrayView<N, Data, S1> data,
                                     MultiArrayView<N, Label, S2> labels,
                                     BlockwiseLabelOptions const & options);

        template <unsigned int N, class Data, class Label>
        Label
        unionFindWatershedsBlockwise(const ChunkedArray<N, Data>& data,
                                     ChunkedArray<N, Label>& labels,
                                     BlockwiseLabelOptions const & options = BlockwiseLabelOptions());

        // provide temporary directions storage
        template <unsigned int N, class Data, class Label>
        Label
        unionFindWatershedsBlockwise(const ChunkedArray<N, Data>& data,
                                     ChunkedArray<N, Label>& labels,
                                     BlockwiseLabelOptions const & options,
                                     ChunkedArray<N, unsigned short>& temporary_storage);
    }}
    \endcode

    The resulting labeling is equivalent to a labeling by \ref watershedsUnionFind, that is,
    the components are the same but may have different ids.
    If \a temporary_storage is provided, this array is used for intermediate result storage.
    Otherwise, a newly created \ref vigra::ChunkedArrayLazy is used.

    Return: the number of labels assigned (=largest label, because labels start at one)

    <b> Usage: </b>

    <b>\#include </b> \<vigra/blockwise_watersheds.hxx\><br>
    Namespace: vigra

    \code
    Shape3 shape = Shape3(10);
    Shape3 chunk_shape = Shape3(4);
    ChunkedArrayLazy<3, int> data(shape, chunk_shape);
    // fill data ...

    ChunkedArrayLazy<3, size_t> labels(shape, chunk_shape);

    unionFindWatershedsBlockwise(data, labels, IndirectNeighborhood);
    \endcode
    */
doxygen_overloaded_function(template <...> unsigned int unionFindWatershedsBlockwise)

template <unsigned int N, class Data, class S1,
                          class Label, class S2>
Label unionFindWatershedsBlockwise(MultiArrayView<N, Data, S1> data,
                                   MultiArrayView<N, Label, S2> labels,
                                   BlockwiseLabelOptions const & options = BlockwiseLabelOptions())
{
    using namespace blockwise_watersheds_detail;

    typedef typename MultiArrayView<N, Data, S1>::difference_type Shape;
    Shape shape = data.shape();
    vigra_precondition(shape == labels.shape(), "shapes of data and labels do not match");

    MultiArray<N, unsigned short> directions(shape);
    Shape block_shape = options.getBlockShapeN<N>();

    MultiArray<N, MultiArrayView<N, unsigned short> > directions_blocks = blockify(directions, block_shape);

    Overlaps<MultiArrayView<N, Data, S1> > overlaps(data, block_shape, Shape(1), Shape(1));
    prepareBlockwiseWatersheds(overlaps, directions_blocks.begin(), options);
    GridGraph<N, undirected_tag> graph(data.shape(), options.getNeighborhood());
    UnionFindWatershedsEquality<N> equal = {&graph};
    return labelMultiArrayBlockwise(directions, labels, options, equal);
}

template <unsigned int N, class Data, class Label>
Label unionFindWatershedsBlockwise(const ChunkedArray<N, Data>& data,
                                   ChunkedArray<N, Label>& labels,
                                   BlockwiseLabelOptions const & options,
                                   ChunkedArray<N, unsigned short>& directions)
{
    using namespace blockwise_watersheds_detail;

    typedef typename ChunkedArray<N, Data>::shape_type Shape;
    Shape shape = data.shape();
    vigra_precondition(shape == labels.shape() && shape == directions.shape(),
        "unionFindWatershedsBlockwise(): shapes of data and labels do not match");
    Shape chunk_shape = data.chunkShape();
    vigra_precondition(chunk_shape == labels.chunkShape() && chunk_shape == directions.chunkShape(),
        "unionFindWatershedsBlockwise(): chunk shapes do not match");

    Overlaps<ChunkedArray<N, Data> > overlaps(data, data.chunkShape(), Shape(1), Shape(1));

    prepareBlockwiseWatersheds(overlaps, directions.chunk_begin(Shape(0), shape), options);

    GridGraph<N, undirected_tag> graph(shape, options.getNeighborhood());
    UnionFindWatershedsEquality<N> equal = {&graph};
    return labelMultiArrayBlockwise(directions, labels, options, equal);
}

template <unsigned int N, class Data,
                          class Label>
inline Label
unionFindWatershedsBlockwise(const ChunkedArray<N, Data>& data,
                                   ChunkedArray<N, Label>& labels,
                                   BlockwiseLabelOptions const & options = BlockwiseLabelOptions())
{
    ChunkedArrayLazy<N, unsigned short> directions(data.shape(), data.chunkShape());
    return unionFindWatershedsBlockwise(data, labels, options, directions);
}

//@}

} // namespace vigra

#endif // VIGRA_BLOCKWISE_WATERSHEDS_HXX