Blame view

stim/image/image.h 5.21 KB
d32a1854   David Mayerich   added framework f...
1
2
  #ifndef STIM_IMAGE_H
  #define STIM_IMAGE_H
1cb3eb53   David Mayerich   modified image.h ...
3
4
5
  #ifdef JPEG_FOUND
  	#define cimg_use_jpeg         //necessary for JPG files
  #endif
fbf0ab02   David Mayerich   added support for...
6
7
  #include "CImg.h"
  
912d9073   David Mayerich   added vector.h to...
8
  #include <vector>
d32a1854   David Mayerich   added framework f...
9
  #include <iostream>
6d30a707   Tianshu Cheng   add cuda/array_ad...
10
  
7b3948ab   David Mayerich   added support for...
11
  namespace stim{
d32a1854   David Mayerich   added framework f...
12
13
14
15
16
17
18
19
  //This static class provides the STIM interface for loading images
  //	Use this interface for all image management - that way the actual library can be changed without problems
  
  //currently this interface uses CImg
  //	T = data type (usually unsigned char)
  template <class T>
  class image{
  
7b3948ab   David Mayerich   added support for...
20
  	cimg_library::CImg<T> img;
d32a1854   David Mayerich   added framework f...
21
22
23
  
  public:
  
7b3948ab   David Mayerich   added support for...
24
25
26
27
28
29
30
31
32
  	//default constructor
  	image(){
  	}
  
  	//constructor (load an image file)
  	image(std::string filename){
  		img.load(filename.c_str());
  	}
  
41acaf5d   David Mayerich   added a CUDA Gaus...
33
  	/// Constructor initializes an image to a given size
f186dbda   Tianshu Cheng   header file for b...
34
  	/*image(unsigned int x, unsigned int y = 1, unsigned int z = 1){
41acaf5d   David Mayerich   added a CUDA Gaus...
35
  		img = cimg_library::CImg<T>(x, y, z);
f186dbda   Tianshu Cheng   header file for b...
36
37
38
39
  	}*/
  
  	image(unsigned int x, unsigned int y = 1, unsigned int z = 1, unsigned int c = 1){
  		img = cimg_library::CImg<T>(x, y, z, c);
41acaf5d   David Mayerich   added a CUDA Gaus...
40
41
  	}
  
d32a1854   David Mayerich   added framework f...
42
43
  	//Load an image from a file
  	void load(std::string filename){
7b3948ab   David Mayerich   added support for...
44
  		img.load(filename.c_str());
d32a1854   David Mayerich   added framework f...
45
46
47
48
  	}
  
  	//save a file
  	void save(std::string filename){
7b3948ab   David Mayerich   added support for...
49
  		img.save(filename.c_str());
d32a1854   David Mayerich   added framework f...
50
51
  	}
  
8b7be670   David Mayerich   implemented savin...
52
  	//create an image from an interleaved buffer
fbf0ab02   David Mayerich   added support for...
53
54
55
56
57
58
59
60
61
62
  	void set_interleaved(T* buffer, unsigned int width, unsigned int height, unsigned int channels = 1){
  
  		unsigned char* non_interleaved = (unsigned char*)malloc(width * height * 3);
  		unsigned int S = width * height;
  
  		for(unsigned int i = 0; i < S; i++){
  			for(unsigned int c = 0; c < channels; c++){
  				non_interleaved[i + c * S] = buffer[i * channels + c];
  			}
  		}
d32a1854   David Mayerich   added framework f...
63
  
7b3948ab   David Mayerich   added support for...
64
65
66
  		img = cimg_library::CImg<unsigned char>(non_interleaved, width, height, 1, channels);
  	}
  
32504c2c   David Mayerich   fixed some functi...
67
  	//fills an allocated region of memory with non-interleaved data
8b7be670   David Mayerich   implemented savin...
68
69
70
71
72
73
74
  	void data_noninterleaved(T* data){
  		memcpy(data, img.data(), sizeof(T) * size());
  	}
  
  	void data_interleaved(T* data){
  
  		unsigned int C = channels();
faef7718   David Mayerich   updates to stim::...
75
  		unsigned int X = width() * height();
8b7be670   David Mayerich   implemented savin...
76
77
78
79
80
81
82
83
84
85
  
  		T* ptr = img.data();
  
  		//for each channel
  		for(unsigned int c = 0; c < C; c++)
  			//convert each pixel
  			for(unsigned int x = 0; x < X; x++)
  				data[x * C + c] = ptr[c * X + x];
  	}
  
41acaf5d   David Mayerich   added a CUDA Gaus...
86
87
88
89
90
  	image<T> channel(unsigned int c){
  
  		//create a new image
  		image<T> single;
  
6d30a707   Tianshu Cheng   add cuda/array_ad...
91
  		single.img = img.get_channel(c);
41acaf5d   David Mayerich   added a CUDA Gaus...
92
93
94
95
96
  
  		return single;
  
  	}
  
f186dbda   Tianshu Cheng   header file for b...
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
  	/// Copy the given data to the specified channel
  
  	/// @param c is the channel number that the data will be copied to
  	/// @param buffer is a pointer to the image to be copied to channel c
  
  	void set_channel(unsigned int c, T* buffer){
  
  		//calculate the number of pixels in a channel
  		unsigned int channel_size = width() * height();        
  
  		//retreive a pointer to the raw image data
  		T* ptr = img.data() + channel_size * c;
  
  		//copy the buffer to the specified channel
  		memcpy(ptr, buffer, sizeof(T) * channel_size);
  	}
  
6d30a707   Tianshu Cheng   add cuda/array_ad...
114
115
116
117
118
119
120
121
122
123
124
  	image<T> getslice(unsigned int c){
  
  		//create a new image
  		image<T> slice;
  
  		slice.img = img.get_slice(c);
  
  		return slice;
  
  	}
  
8b7be670   David Mayerich   implemented savin...
125
126
127
128
129
130
131
132
133
134
  	unsigned int channels(){
  		return (unsigned int)img.spectrum();
  	}
  
  	unsigned int width(){
  		return img.width();
  	}
  
  	unsigned int height(){
  		return img.height();
7b3948ab   David Mayerich   added support for...
135
  	}
d32a1854   David Mayerich   added framework f...
136
  
6d30a707   Tianshu Cheng   add cuda/array_ad...
137
138
139
140
  	T* data(){
  		return img.data();
  	}
  
7b3948ab   David Mayerich   added support for...
141
142
143
  	//returns the size (number of values) of the image
  	unsigned long size(){
  		return img.size();
d32a1854   David Mayerich   added framework f...
144
145
  	}
  
faef7718   David Mayerich   updates to stim::...
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
  	/// Returns the number of nonzero values
  	unsigned int nnz(){
  
  		unsigned long P = width() * height();
  		unsigned long C = channels();
  
  		T* ptr = img.data();
  
  		unsigned long n = 0;
  
  		for(unsigned long p = 0; p < P; p++){
  			for(unsigned long c = 0; c < C; c++){
  
  				if(ptr[c * P + p] > 0){
  					n++;
  					break;
  				}
  			}
  		}
  
  		return n;	//return the number of nonzero pixels
  
  	}
  
  	//this function returns indices of pixels that have nonzero values
  	std::vector<unsigned long> sparse_idx(){
  
  		std::vector<unsigned long> s;		//allocate an array
  		s.resize(nnz());					//allocate space in the array
  
  		unsigned long P = width() * height();
  		unsigned long C = channels();
  
  		T* ptr = img.data();				//get a pointer to the image data
  
  		unsigned long i = 0;
  		for(unsigned long p = 0; p < P; p++){
  			for(unsigned long c = 0; c < C; c++){
  
  				if(ptr[c * P + p] > 0){
  					s[i] = p;
  					i++;
  					break;
  				}
  			}
  		}
  
  		return s;			//return the index list
  	}
6d30a707   Tianshu Cheng   add cuda/array_ad...
195
  
d32a1854   David Mayerich   added framework f...
196
  	
6d30a707   Tianshu Cheng   add cuda/array_ad...
197
  	/// Returns the maximum pixel value in the image
96f9b10f   Laila Saadatifard   change the header...
198
  	T maxv(){
6d30a707   Tianshu Cheng   add cuda/array_ad...
199
200
201
202
203
204
205
206
207
208
209
210
211
  		float max = 0;
  		unsigned long N = width() * height();		//get the number of pixels
  
  		for (unsigned long i=0; i<N; i++){
  
  			if (img.data()[i] > max)
  			{
  				max = img.data()[i];
  			}	
  		}
  
  		return max;	
  	}
d32a1854   David Mayerich   added framework f...
212
  
6d30a707   Tianshu Cheng   add cuda/array_ad...
213
  	/// Returns the minimum pixel value in the image
96f9b10f   Laila Saadatifard   change the header...
214
  	T minv(){
6d30a707   Tianshu Cheng   add cuda/array_ad...
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
  		float min = 0;
  		unsigned long N = width() * height();		//get the number of pixels
  
  		for (unsigned long i=0; i<N; i++){
  
  			if (img.data()[i] < min)
  			{
  				min = img.data()[i];
  			}	
  		}
  
  		return min;	
  
  	}
  
  	image<T> srgb2lab(){
  
  		image<T> rgb;
  		rgb.img = img.get_sRGBtoRGB();
  
  		image<T> lab;
  		lab.img = rgb.img.get_RGBtoLab();
  
  		return lab;
  
  	}
  
  	image<T> convolve2(image<T> mask){
  		
  		image<T> result;
  
  		result.img = img.get_convolve(mask.img);
  
  		return result;
  	}
d32a1854   David Mayerich   added framework f...
250
251
  
  
f186dbda   Tianshu Cheng   header file for b...
252
253
254
255
256
257
258
259
260
261
262
263
  	image<T> rotate(float angle, float cx, float cy){
  		
  		image<T> result;
  		float zoom = 1;
  		unsigned int interpolation = 1;
  		unsigned int boundary = 1;
  		result.img = img.get_rotate (angle, cx, cy, zoom, interpolation, boundary);
  		//result.save("data_output/test_rotate_neum.bmp");
  
  		return result;
  	}
  	
d32a1854   David Mayerich   added framework f...
264
265
  };
  
7b3948ab   David Mayerich   added support for...
266
267
  };		//end namespace stim
  
d32a1854   David Mayerich   added framework f...
268
269
  
  #endif