1 /* Copyright (C) <2010> Douglas Bagnall <douglas@halo.gen.nz>
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Library General Public
5 * License as published by the Free Software Foundation; either
6 * version 2 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Library General Public License for more details.
13 * You should have received a copy of the GNU Library General Public
14 * License along with this library; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 02111-1307, USA.
20 #include "gstsparrow.h"
27 /* Floodfill for find screen */
29 expand_one_mono(int x
, int y
, int c
,
30 CvPoint
*nexts
, int *n_nexts
, guint8
*im
, guint8
*mask
, int w
, int h
){
31 guint8 p
= im
[y
* w
+ x
];
32 guint8
*m
= &mask
[y
* w
+ x
];
35 nexts
[*n_nexts
].x
= x
;
36 nexts
[*n_nexts
].y
= y
;
42 im: the image to be analysed
43 mim: the mask image to be written
44 start: a point of the right colour.
48 floodfill_mono_superfast(IplImage
*im
, IplImage
*mim
, CvPoint start
)
50 guint8
* data
= (guint8
*)im
->imageData
;
51 guint8
* mdata
= (guint8
*)mim
->imageData
;
59 //malloc 2 lists of points. These *could* be as large as the image (but never should be)
60 void * mem
= malloc_or_die(w
* h
* 2 * sizeof(CvPoint
));
62 nexts
= starts
+ w
* h
;
69 for (i
= 0; i
< n_starts
; i
++){
72 int c
= data
[y
* w
+ x
];
74 expand_one_mono(x
- 1, y
, c
, nexts
, &n_nexts
, data
, mdata
, w
, h
);
77 expand_one_mono(x
+ 1, y
, c
, nexts
, &n_nexts
, data
, mdata
, w
, h
);
80 expand_one_mono(x
, y
- 1, c
, nexts
, &n_nexts
, data
, mdata
, w
, h
);
83 expand_one_mono(x
, y
+ 1, c
, nexts
, &n_nexts
, data
, mdata
, w
, h
);
86 CvPoint
*tmp
= starts
;
100 /* find a suitable threshold level by looking at the histogram of a monochrome
103 find_edges_threshold(IplImage
*im
)
107 CvSize small_size
= {w
/ 8, h
/ 8};
108 IplImage
*small
= cvCreateImage(small_size
, IPL_DEPTH_8U
, 1); /*for quicker histogram (stupid, perhaps?)*/
109 cvResize(im
, small
, CV_INTER_NN
);
110 int hist_size
[] = {255};
111 float range
[] = {0, 255};
112 float *ranges
[] = {range
};
113 CvHistogram
* hist
= cvCreateHist(1, hist_size
, CV_HIST_ARRAY
, ranges
, 1);
114 cvCalcHist(&small
, hist
, 0, NULL
);
116 int pixels
= small
->width
* small
->height
;
117 int min_black
= pixels
/ 16;
118 int max_black
= pixels
/ 2;
119 int totals
[256] = {0};
121 int best_d
= pixels
+ 1;
124 /* look for a low region in the histogram between the two peaks.
125 (big assumption: two peaks, with most in whiter peak) */
127 for (int i
= 0; i
< 255; i
++){
128 int v
= (int)cvQueryHistValue_1D(hist
, i
);
131 if (total
>= min_black
){
133 int diff
= total
- totals
[i
- 5];
138 if (total
>= max_black
){
144 GST_DEBUG("found best threshold %d -- %d pixel change at %d/%d pixels\n",
145 best_t
, best_d
, totals
[best_t
], pixels
);
147 cvReleaseImage(&small
);
148 cvReleaseHist(&hist
);
154 /* a minature state progression within this one, in case the processing is too
155 much for one frame.*/
156 INVISIBLE sparrow_state
157 mode_find_screen(GstSparrow
*sparrow
, guint8
*in
, guint8
*out
){
158 sparrow
->countdown
--;
159 GST_DEBUG("in find_screen with countdown %d\n", sparrow
->countdown
);
160 sparrow_find_screen_t
*finder
= &(sparrow
->findscreen
);
161 IplImage
*im
= sparrow
->in_ipl
[0];
162 IplImage
*green
= finder
->green
;
163 IplImage
*working
= finder
->working
;
164 IplImage
*mask
= finder
->mask
;
165 /* size is 1 byte per pixel, not 4! */
166 size_t size
= sparrow
->in
.pixcount
;
167 CvPoint middle
, corner
;
168 switch (sparrow
->countdown
){
170 /* time to look and see if the screen is there.
171 Look at the histogram of a single channel. */
172 im
->imageData
= (char*)in
;
173 guint32 gshift
= sparrow
->in
.gshift
;
175 (gshift
== 24) ? green
: NULL
,
176 (gshift
== 16) ? green
: NULL
,
177 (gshift
== 8) ? green
: NULL
,
178 (gshift
== 0) ? green
: NULL
);
179 int best_t
= find_edges_threshold(green
);
180 /*XXX if best_t is wrong, add to sparrow->countdown: probably the light is
181 not really on. But what counts as wrong? */
182 cvCmpS(green
, best_t
, mask
, CV_CMP_GT
);
185 /* floodfill where the screen is, removing outlying bright spots*/
186 middle
= (CvPoint
){sparrow
->in
.width
/ 2, sparrow
->in
.height
/ 2};
187 memset(working
->imageData
, 255, size
);
188 floodfill_mono_superfast(mask
, working
, middle
);
191 /* floodfill the border, removing onscreen dirt.*/
192 corner
= (CvPoint
){0, 0};
193 memset(mask
->imageData
, 255, size
);
194 floodfill_mono_superfast(working
, mask
, corner
);
195 sparrow
->screenmask
= (guint8
*)mask
->imageData
;
196 sparrow
->screenmask_ipl
= mask
;
197 cvReleaseImage(&(finder
->green
));
198 cvReleaseImage(&(finder
->working
));
201 /*send white and wait for the picture to arrive back. */
202 memset(out
, 255, sparrow
->out
.size
);
203 return SPARROW_STATUS_QUO
;
206 memset(out
, 0, sparrow
->out
.size
);
207 return SPARROW_STATUS_QUO
;
209 memset(out
, 0, sparrow
->out
.size
);
210 return SPARROW_NEXT_STATE
;
215 init_find_screen(GstSparrow
*sparrow
){
216 sparrow
->countdown
= sparrow
->lag
+ 4;
217 sparrow_find_screen_t
*finder
= &(sparrow
->findscreen
);
218 CvSize size
= {sparrow
->in
.width
, sparrow
->in
.height
};
219 finder
->green
= cvCreateImage(size
, IPL_DEPTH_8U
, 1);
220 finder
->working
= cvCreateImage(size
, IPL_DEPTH_8U
, 1);
221 finder
->mask
= cvCreateImage(size
, IPL_DEPTH_8U
, 1);