aboutsummaryrefslogtreecommitdiff
path: root/pix_opencv_contours.cc
blob: 6032d1b808a422dac364c96c318ffe0e6c12544b (plain)
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
////////////////////////////////////////////////////////
//
// GEM - Graphics Environment for Multimedia
//
// zmoelnig@iem.kug.ac.at
//
// Implementation file
//
//    Copyright (c) 1997-2000 Mark Danks.
//    Copyright (c) Günther Geiger.
//    Copyright (c) 2001-2002 IOhannes m zmoelnig. forum::für::umläute. IEM
//    Copyright (c) 2002 James Tittle & Chris Clepper
//    For information on usage and redistribution, and for a DISCLAIMER OF ALL
//    WARRANTIES, see the file, "GEM.LICENSE.TERMS" in this distribution.
//
/////////////////////////////////////////////////////////
// based on code written by Lluis Gomez i Bigorda ( lluisgomez _at_ hangar _dot_ org ) (pix_opencv)
// pix_opencv_contours extract and simplify contours of incomming image
// by Antoine Villeret - 2012

#include "pix_opencv_contours.h"
#include <stdio.h>
#include <RTE/MessageCallbacks.h>


CPPEXTERN_NEW(pix_opencv_contours)

/////////////////////////////////////////////////////////
//
// pix_opencv_contours
//
/////////////////////////////////////////////////////////
// Constructor
//
/////////////////////////////////////////////////////////
pix_opencv_contours :: pix_opencv_contours() : 	m_area_threshold(30), \
												m_epsilon(2), \
												m_enable_contours(1), \
												m_enable_hulls(1), \
												m_enable_defects(1), \
												m_hierarchy_level(-1)
{ 
	m_dataout_middle = outlet_new(this->x_obj, 0);
	m_dataout_right = outlet_new(this->x_obj, 0);

	//~ post("build on %s at %s", __DATE__, __TIME__);
}

/////////////////////////////////////////////////////////
// Destructor
//
/////////////////////////////////////////////////////////
pix_opencv_contours :: ~pix_opencv_contours()
{ 
}

/////////////////////////////////////////////////////////
// processImage
//
/////////////////////////////////////////////////////////
void pix_opencv_contours :: processRGBAImage(imageStruct &image)
{ 
	error( "pix_opencv_contours : rgba format not supported" );
}

void pix_opencv_contours :: processRGBImage(imageStruct &image) {
	error( "pix_opencv_contours : rgb format not supported");
}

void pix_opencv_contours :: processYUVImage(imageStruct &image) {
	error( "pix_opencv_contours : yuv format not supported" );
}
    	
void pix_opencv_contours :: processGrayImage(imageStruct &image)
{ 
	if ( image.xsize < 0 || image.ysize < 0 ) return;

	cv::Mat imgMat2( image.ysize, image.xsize, CV_8UC1, image.data, image.csize*image.xsize); // just transform imageStruct to IplImage without copying data
	
	cv::Mat imgMat = imgMat2.clone(); // copy data because findContours need it...

	m_contours.clear();
	m_convexhulls.clear();
	
	/*****************/
	/* Find Contours */
	/*****************/
		
	std::vector<std::vector<cv::Point> > contours;
	std::vector<cv::Vec4i> hierarchy;

	cv::findContours(imgMat, contours, hierarchy, CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE);
	
	/*
	std::cout << "hierarchy : \n" << std::endl;
	std::cout << "id\tnext\tprev\tchild\tparent" << std::endl;
	for ( size_t i = 0; i < contours.size(); i++ )
	{
		std::cout << i << "\t" << hierarchy[i][0] << "\t" << hierarchy[i][1] << "\t" << hierarchy[i][2] << "\t" << hierarchy[i][3] << std::endl;
	}
	*/
	
	if ( m_hierarchy_level != -1 )
	{
		int i=0;
		int hierarchy_level=0;
		
		while ( i < (int) contours.size() && i!=-1 && hierarchy_level != -1 ) 
		{
			if ( cv::contourArea(contours[i], false) > m_area_threshold && hierarchy_level == m_hierarchy_level )
			{
				std::vector<cv::Point> one_contour;
				cv::approxPolyDP(contours[i], one_contour, m_epsilon, true);
				m_contours.push_back(one_contour); // push contour if it's big enough
			}
			if ( hierarchy_level < m_hierarchy_level && hierarchy[i][2] != -1 ){ // si on n'a pas atteint le niveau choisi et qu'il y a un enfant on le prend
				hierarchy_level++;
				int j = i;
				i=hierarchy[j][2]; // get the first child
			} else if ( hierarchy[i][0] != -1 ) {
				i=hierarchy[i][0]; // get the next contour at this hierarchy level if it exists
			} else {
				while ( hierarchy_level != -1 )
				{
					hierarchy_level--;
					i=hierarchy[i][3];
					if ( i < 0 ) break; // pas de parent...
					if ( hierarchy[i][0] != -1 ) {
						i=hierarchy[i][0]; // next du parent
						break;
					}
				}

			}
		}
	} else {	
		for ( size_t i = 0; i < contours.size(); i++ )
		{
			if ( cv::contourArea(contours[i], false) > m_area_threshold ){
				std::vector<cv::Point> one_contour;
				cv::approxPolyDP(contours[i], one_contour, m_epsilon, true);
				m_contours.push_back(one_contour);
			}
		}
	}
	
	if ( m_enable_contours )
	{
		t_atom*info;
		info = new t_atom[(int) m_contours.size()*20+2];
		// info : 20x(contour_nb) matrix
		// info for each contour : area, rotrect corner (8 float), rotrect center, rotrect size, rotation angle, segments number, other are reserved for future use
		int count(0);
		SETFLOAT(info+1, 20.);
		int info_offset(2);
		
		for( size_t i = 0 ; i < m_contours.size(); i++ )
		{
			if (!m_contours[i].empty() && m_contours[i].size() > 2) {
				SETFLOAT(info+info_offset, (float) cv::contourArea(m_contours[i]));
				
				cv::RotatedRect rot_rect = cv::minAreaRect(m_contours[i]);
				cv::Point2f corners[4];
				rot_rect.points(corners);
				for (int j=0;j<4;j++) {
					SETFLOAT(info+info_offset+j*2+1, corners[j].x/image.xsize);
					SETFLOAT(info+info_offset+j*2+2, corners[j].y/image.ysize);
				}

				SETFLOAT(info+info_offset+9, rot_rect.center.x/image.xsize);
				SETFLOAT(info+info_offset+10, rot_rect.center.y/image.ysize);
				SETFLOAT(info+info_offset+11, rot_rect.size.width/image.xsize);
				SETFLOAT(info+info_offset+12, rot_rect.size.height/image.xsize);
				SETFLOAT(info+info_offset+13, rot_rect.angle);
				SETFLOAT(info+info_offset+14, m_contours[i].size()); // number of points in segment
				SETFLOAT(info+info_offset+15, 0);
				SETFLOAT(info+info_offset+16, 0);
				SETFLOAT(info+info_offset+17, 0);
				SETFLOAT(info+info_offset+18, 0);
				SETFLOAT(info+info_offset+19, 0);
				
				info_offset+=20;
				count++;
			}
		}
		SETFLOAT(info, (float) count);
		if (count) outlet_anything(m_dataout_right, gensym("info"), count*20+2, info);
		else outlet_float(m_dataout_right, 0);
		
		for( size_t i = 0 ; i < m_contours.size() ; i++ )
		{
			if (!m_contours[i].empty() && m_contours[i].size() > 2) {
				int size = 2+m_contours[i].size()*2;
				t_atom*ap = new t_atom[size];
				SETFLOAT(ap, static_cast<t_float>(m_contours[i].size()));
				SETFLOAT(ap+1, 2.0);
				
				int offset(2);
				
				for ( size_t j = 0 ; j < m_contours[i].size() ; j++){
					cv::Point pt = m_contours[i][j];
					SETFLOAT(ap+offset,(float) pt.x/image.xsize);
					SETFLOAT(ap+offset+1,(float) pt.y/image.ysize);
					offset+=2;
				}
				outlet_anything(m_dataout_middle, gensym("contour"), size, ap);
				if(ap)delete[]ap;ap=NULL;	
				
			}
		}
		
		if (info) delete info;
		info = NULL;
	}
	
	//~ cv::drawContours(imgMat2, m_contours, -1, cv::Scalar(128,255,255), 3);
	
	/**********************/
	/* Compute Convexhull */
	/**********************/
	if ( m_enable_defects || m_enable_hulls )
	{
		for ( size_t i = 0; i < m_contours.size(); i++ )
		{
			std::vector<int> convexhull;
			cv::convexHull(m_contours[i], convexhull);
			m_convexhulls.push_back(convexhull);
		}
	}
	
	if ( m_enable_hulls )
	{	
		for ( size_t i = 0 ; i < m_convexhulls.size() ; i++ )
		{
			int list_size=(int) m_convexhulls[i].size()*2+2;
			
			t_atom* data = new t_atom[list_size];
			
			SETFLOAT(data,m_convexhulls[i].size()); // nb of points for current convexhull
			SETFLOAT(data+1, 2); // each point is represented by 2 values
			
			t_atom* apt=data+2;

			for ( size_t j = 0 ; j < m_convexhulls[i].size() ; j++){
				int k = m_convexhulls[i][j];
				cv::Point pt = m_contours[i][k];
				SETFLOAT(apt,   (float) pt.x/image.xsize);
				SETFLOAT(apt+1, (float) pt.y/image.ysize);
				apt+=2;
			}
			outlet_anything(m_dataout_middle, gensym("convexhull"), list_size, data);
			
			if (data) delete data;
			data = NULL;
		}
	}
	
	/*****************************/
	/* Compute convexity defects */
	/*****************************/
	if ( m_enable_defects )
	{
		for ( size_t i = 0 ; i < m_contours.size() ; i++ )
		{
			std::vector<cv::Vec4i> defects(m_convexhulls[i].size());
			
			cv::Ptr<CvMemStorage> storage = cvCreateMemStorage();
			cv::InputArray _points = m_contours[i];
			cv::InputArray _hull = m_convexhulls[i];
			
			cv::Mat points =  _points.getMat();
			cv::Mat hull = _hull.getMat();
			
			CvMat c_points = points, c_hull = hull;
			
			CvSeq* seq = cvConvexityDefects(&c_points, &c_hull, storage);
			
			double norm = sqrtf( image.xsize*image.ysize );
		
			if ( !seq ) {
					error("seq undefined...");
					continue;
			}
			
			int list_size=(int) seq->total*7+2; 
			
			if (seq->total > 0) 
			{
				t_atom* data = new t_atom[list_size];
				
				SETFLOAT(data, seq->total); // number of defect for current contour
				SETFLOAT(data+1, 7); // a defect is represented by 7 values : start point (x,y), end point (x,y), farthest point (x,y) and defect depth
				
			    cv::SeqIterator<CvConvexityDefect> it = cv::Seq<CvConvexityDefect>(seq).begin(); // TODO : crash sometimes but don't know why yet...
				t_atom* apt = data+2;
				
				for ( int j = 0 ; j < seq->total ; j++, ++it )
				{
					CvConvexityDefect& defect = *it;
					SETFLOAT(apt, (float) defect.start->x/image.xsize);
					SETFLOAT(apt+1, (float) defect.start->y/image.ysize);
					SETFLOAT(apt+2, (float) defect.end->x/image.xsize);
					SETFLOAT(apt+3, (float) defect.end->y/image.ysize);
					SETFLOAT(apt+4, (float) defect.depth_point->x/image.xsize);
					SETFLOAT(apt+5, (float) defect.depth_point->y/image.ysize);
					SETFLOAT(apt+6, (float) defect.depth/norm);
					apt+=7;
				}
				
				outlet_anything(m_dataout_middle, gensym("convexitydefects"), list_size, data);
				
				if (data) delete data;
				data = NULL;
			}
		}
	}
}

/////////////////////////////////////////////////////////
// static member function
//
/////////////////////////////////////////////////////////
void pix_opencv_contours :: obj_setupCallback(t_class *classPtr)
{
	CPPEXTERN_MSG1(classPtr, "epsilon",	epsilonMess, 		double);		    		  	  
	CPPEXTERN_MSG1(classPtr, "area",	areaMess, 			double);		    		  	  
	CPPEXTERN_MSG1(classPtr, "contours",	contoursMess, 			double);		    		  	  
	CPPEXTERN_MSG1(classPtr, "convexhulls",	convexhullsMess, 			double);		    		  	  
	CPPEXTERN_MSG1(classPtr, "convexitydefects",	convexitydefectsMess, 			double);		    		  	  
	CPPEXTERN_MSG1(classPtr, "hierarchy_level",	hierarchyMess, 			double);		    		  	  
}

/////////////////////////////////////////////////////////
// messages handling
//
/////////////////////////////////////////////////////////
void pix_opencv_contours :: epsilonMess(double arg)
{
	m_epsilon = arg > 0 ? arg : 3.;
	t_atom data_out;
	SETFLOAT(&data_out, (float) m_epsilon);
	outlet_anything( m_dataout_right, gensym("epsilon"), 1, &data_out);
}
void pix_opencv_contours :: areaMess(double arg)
{
	m_area_threshold = arg > 0 ? arg : 30.;
	t_atom data_out;
	SETFLOAT(&data_out, (float) m_area_threshold);
	outlet_anything( m_dataout_right, gensym("area"), 1, &data_out);
}
void pix_opencv_contours :: contoursMess(double arg)
{
	m_enable_contours = arg > 0;
}
void pix_opencv_contours :: convexhullsMess(double arg)
{
	m_enable_hulls = arg > 0;
}
void pix_opencv_contours :: convexitydefectsMess(double arg)
{
	m_enable_defects = arg > 0;
}
void pix_opencv_contours :: hierarchyMess(double arg)
{
	m_hierarchy_level = arg < -1 ? -1 : arg;
	m_mode = m_hierarchy_level == -1 ? CV_RETR_LIST : CV_RETR_TREE;
}