This file is indexed.

/usr/include/waili/Image.h is in libwaili-dev 19990723-22.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
//
//	Image Class
//
//  $Id: Image.h,v 4.6.2.3.2.1 1999/07/20 16:15:44 geert Exp $
//
//  Copyright (C) 1996-1999 Department of Computer Science, K.U.Leuven, Belgium
//
//  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 2 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, write to the Free Software
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
//

#ifndef WAILI_IMAGE_H
#define WAILI_IMAGE_H

#include <assert.h>
#include <sstream>

#include "Channel.h"
#include "Util.h"


    //  Image Types and File Types

enum ImageType {
    IT_Unknown, IT_Mono, IT_CIEY, IT_CIEL, IT_RGB, IT_CIEXYZ, IT_CIELab,
    IT_YUV, IT_YUVr
};
enum ImageFormat {
    IF_AUTO, IF_PNMASCII, IF_PNMRAW
#ifdef SUPPORT_TIFF
    , IF_TIFF
#endif // SUPPORT_TIFF
};


    //  Image Class

class Image {
    public:
	// Construction/Destruction
	Image();
	Image(u_int channels);
	Image(u_int cols, u_int rows, u_int channels = 1);
	Image(const u_int cols[], const u_int rows[], u_int channels);
	Image(const Channel &channel, u_int channels = 1);
	Image(const Channel *channel[], u_int channels);
	Image(const Image &im);
	Image(u_int cols, u_int rows, const TransformDescriptor transform[],
	      u_int depth, u_int channels = 1);
	~Image();

	// Import/Export of Images
	ImageType Import(const char *filename, ImageFormat type = IF_AUTO);
	void Export(const char *filename, ImageFormat type = IF_AUTO);

	//  Image Conversion
	void Convert(ImageType from, ImageType to);

	// Properties
	u_int GetChannels(void) const;
	u_int GetCols(u_int channel) const;
	u_int GetRows(u_int channel) const;
	int GetOffsetX(void) const;
	int GetOffsetY(void) const;

	// Manipulation
	Channel*& operator[](u_int channel);
	Channel*& operator[](u_int channel) const;
	PixType& operator()(u_int c, u_int r, u_int ch = 0);
	const PixType operator()(u_int c, u_int r, u_int ch = 0) const;

	void Clear(void);
	void Resize(u_int cols, u_int rows);
	void Resize(u_int cols, u_int rows, u_int channels);
	Image& operator=(const Image &im);
	Image *Clone(void) const;

	void SetOffsetX(int offx);
	void SetOffsetY(int offy);

	Image *Crop(int x1, int y1, int x2, int y2) const;
	void Merge(const Image &im);
	void Add(const Image &im);
	void Subtract(const Image &im);
	Image *Diff(const Image &im) const;

	void InsertChannel(const Channel &data, u_int ch);
	void DeleteChannel(u_int channel);

	// Wavelet Transforms
	void Fwt(const TransformDescriptor transform[], u_int depth);
	void IFwt(void);

	void RedundantFwt(const Wavelet &wavelet, TransformType type);

	// Wavelet Based Operations
	void Scale(f32 scale, const Wavelet &wavelet);

    private:
	//  Low-level Image Import/Export
	ImageType ImportPNM(const char *filename);
	ImageType ImportTIFF(const char *filename);
	void ExportPNM(const char *filename, int raw);

    protected:
	u_int NumChannels;
	Channel **Channels;

    private:
	static const char *rcsid;
};


/////////////////////////////////////////////////////////////////////////////
//
//      Inline Member Functions
//
/////////////////////////////////////////////////////////////////////////////


inline Image::Image()
    : NumChannels(0), Channels(NULL)
{}

inline Image::Image(u_int channels)
    : NumChannels(channels), Channels(NULL)
{
    Channels = new Channel *[NumChannels];
    ::Clear(Channels, NumChannels);
}


inline Channel*& Image::operator[](u_int channel) const
{
#ifdef BOUNDS_CHECK
    assert(channel < NumChannels);
#endif // BOUNDS_CHECK
    return(Channels[channel]);
}

inline Channel*& Image::operator[](u_int channel)
{
#ifdef BOUNDS_CHECK
    assert(channel < NumChannels);
#endif // BOUNDS_CHECK
    return(Channels[channel]);
}

inline u_int Image::GetChannels(void) const
{
    return(NumChannels);
}

inline u_int Image::GetCols(u_int channel) const
{
#ifdef BOUNDS_CHECK
    assert(channel < NumChannels);
#endif // BOUNDS_CHECK
    assert(Channels[channel] != NULL);
    return(Channels[channel]->GetCols());
}

inline u_int Image::GetRows(u_int channel) const
{
#ifdef BOUNDS_CHECK
    assert(channel < NumChannels);
#endif // BOUNDS_CHECK
    assert(Channels[channel] != NULL);
    return(Channels[channel]->GetRows());
}

inline int Image::GetOffsetX(void) const
{
    assert(Channels[0] != NULL);
    return(Channels[0]->GetOffsetX());
}

inline int Image::GetOffsetY(void) const
{
    assert(Channels[0] != NULL);
    return(Channels[0]->GetOffsetY());
}

inline PixType& Image::operator()(u_int c, u_int r, u_int ch)
{
    return((*(*this)[ch])(c, r));
}

inline const PixType Image::operator()(u_int c, u_int r, u_int ch) const
{
    return((*(*this)[ch])(c, r));
}

inline void Image::Clear(void)
{
    for (u_int ch = 0; ch < NumChannels; ch++)
	(*this)[ch]->Clear();
}

inline void Image::Resize(u_int cols, u_int rows)
{
    for (u_int ch = 0; ch < NumChannels; ch++)
	(*this)[ch]->Resize(cols, rows);
}

inline Image *Image::Clone(void) const
{
    return(new Image(*this));
}

inline void Image::SetOffsetX(int offx)
{
    for (u_int ch = 0; ch < NumChannels; ch++)
	(*this)[ch]->SetOffsetX(offx);
}

inline void Image::SetOffsetY(int offy)
{
    for (u_int ch = 0; ch < NumChannels; ch++)
	(*this)[ch]->SetOffsetY(offy);
}

inline Image *Image::Crop(int x1, int y1, int x2, int y2) const
{
    Image *im = new Image(NumChannels);
    for (u_int ch = 0; ch < NumChannels; ch++)
	(*im)[ch] = (*this)[ch]->Crop(x1, y1, x2, y2);
    return(im);
}

inline void Image::Merge(const Image &im)
{
    assert(im.GetChannels() == NumChannels);
    for (u_int ch = 0; ch < NumChannels; ch++)
	(*this)[ch]->Merge(*im[ch]);
}

inline void Image::Add(const Image &im)
{
    assert(im.GetChannels() == NumChannels);
    for (u_int ch = 0; ch < NumChannels; ch++)
	(*this)[ch]->Add(*im[ch]);
}

inline void Image::Subtract(const Image &im)
{
    assert(im.GetChannels() == NumChannels);
    for (u_int ch = 0; ch < NumChannels; ch++)
	(*this)[ch]->Subtract(*im[ch]);
}

inline Image *Image::Diff(const Image &im) const
{
    assert(im.GetChannels() == NumChannels);
    Image *diff = new Image(NumChannels);
    for (u_int ch = 0; ch < NumChannels; ch++)
	(*diff)[ch] = (*this)[ch]->Diff(*im[ch]);
    return(diff);
}


#endif // WAILI_IMAGE_H