[8] | 1 | /* OpenCV Hello world, with filtering of various filters
|
---|
| 2 | * Based on http://home.iitk.ac.in/~swagatk/faq/opencv.html#Colar_Based_Tracking
|
---|
| 3 | * Rick van der Zwet <info@rickvanderzwet.nl>
|
---|
| 4 | */
|
---|
| 5 |
|
---|
| 6 | #include <cv.h>
|
---|
| 7 | #include <cxcore.h>
|
---|
| 8 | #include <cvaux.h>
|
---|
| 9 | #include <highgui.h>
|
---|
| 10 | #include <stdio.h>
|
---|
| 11 |
|
---|
[9] | 12 | #define DEBUG 1
|
---|
[8] | 13 |
|
---|
[9] | 14 | #define RVALUE(x,y,step) (x*step+y*3+2)
|
---|
| 15 | #define GVALUE(x,y,step) (x*step+y*3+1)
|
---|
| 16 | #define BVALUE(x,y,step) (x*step+y*3+0)
|
---|
| 17 |
|
---|
| 18 | /* Used for playing with bounderies, returned max value of the pair */
|
---|
| 19 | int max(const int x, const int y) {
|
---|
| 20 | return ((x > y) ? x : y);
|
---|
| 21 | }
|
---|
| 22 |
|
---|
| 23 | /* Used for playing with bounderies, returned min value of the pair */
|
---|
| 24 | int min(const int x, const int y) {
|
---|
| 25 | return ((x < y) ? x : y);
|
---|
| 26 |
|
---|
| 27 | }
|
---|
| 28 |
|
---|
[8] | 29 | int cvInitSystem(int argc, char *argv[]) {
|
---|
| 30 | // Don't care which camera to use. Use specified number elsewise
|
---|
| 31 | int cam_number = atoi(argv[1]) > 0 ? atoi(argv[1]) : -1;
|
---|
| 32 | CvCapture *capture = cvCaptureFromCAM(cam_number);
|
---|
| 33 | int width = cvGetCaptureProperty(capture, CV_CAP_PROP_FRAME_WIDTH);
|
---|
| 34 | int height = cvGetCaptureProperty(capture, CV_CAP_PROP_FRAME_HEIGHT);
|
---|
| 35 |
|
---|
| 36 |
|
---|
[9] | 37 | uchar *filterdata, *outdata, *routdata, *goutdata, *boutdata;
|
---|
[8] | 38 |
|
---|
| 39 |
|
---|
| 40 | //Create a window
|
---|
| 41 | cvNamedWindow("RGB_Image", CV_WINDOW_AUTOSIZE);
|
---|
| 42 | cvMoveWindow("RGB_Image",0,0);
|
---|
| 43 | cvNamedWindow("R_Image", CV_WINDOW_AUTOSIZE);
|
---|
| 44 | cvMoveWindow("R_Image",0,height);
|
---|
| 45 | cvNamedWindow("G_Image", CV_WINDOW_AUTOSIZE);
|
---|
| 46 | cvMoveWindow("G_Image",width,0);
|
---|
| 47 | cvNamedWindow("B_Image", CV_WINDOW_AUTOSIZE);
|
---|
| 48 | cvMoveWindow("B_Image",width,height);
|
---|
| 49 | cvNamedWindow("F_Image", CV_WINDOW_AUTOSIZE);
|
---|
| 50 |
|
---|
| 51 |
|
---|
| 52 | //Create Image Skeletons
|
---|
| 53 | IplImage *image = NULL;
|
---|
| 54 | IplImage *output = cvCreateImage( cvSize(width,height), 8, 3);
|
---|
| 55 | IplImage *boutput = cvCreateImage( cvSize(width,height), 8, 3);
|
---|
| 56 | IplImage *routput = cvCreateImage( cvSize(width,height), 8, 3);
|
---|
| 57 | IplImage *goutput = cvCreateImage( cvSize(width,height), 8, 3);
|
---|
| 58 | IplImage *filter = cvCreateImage( cvSize(width,height), 8, 3);
|
---|
[9] | 59 | IplImage *target = cvCreateImage( cvSize(width,height), 8, 3);
|
---|
[8] | 60 |
|
---|
| 61 |
|
---|
| 62 | // Some temp pointers
|
---|
[9] | 63 | int i, j, k, m, n, o, p;
|
---|
| 64 | int r, g, b;
|
---|
| 65 | int q;
|
---|
| 66 |
|
---|
[8] | 67 |
|
---|
| 68 | // Video run starts here ...
|
---|
| 69 | while (1)
|
---|
| 70 | {
|
---|
| 71 | image = cvQueryFrame(capture);
|
---|
| 72 |
|
---|
| 73 | // We need some input before running any further
|
---|
| 74 | if (image == NULL) {
|
---|
| 75 | printf("Ehm no input in the image\n");
|
---|
| 76 | continue;
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | //This is needed for accessing pixel elements
|
---|
| 80 | int step = image->widthStep/sizeof(uchar);
|
---|
| 81 |
|
---|
| 82 | cvCopy(image, output, NULL);
|
---|
| 83 | cvCopy(image, routput, NULL);
|
---|
| 84 | cvCopy(image, goutput, NULL);
|
---|
| 85 | cvCopy(image, boutput, NULL);
|
---|
| 86 |
|
---|
| 87 |
|
---|
[9] | 88 | outdata = (uchar *) output->imageData;
|
---|
[8] | 89 | routdata = (uchar *) routput->imageData;
|
---|
| 90 | goutdata = (uchar *) goutput->imageData;
|
---|
| 91 | boutdata = (uchar *) boutput->imageData;
|
---|
| 92 |
|
---|
| 93 | k = 0, p = 0;
|
---|
| 94 | for( m = 0; m < image->height; m++) //row
|
---|
| 95 | {
|
---|
| 96 | for( n = 0; n < image->width; n++) //column
|
---|
| 97 | {
|
---|
[9] | 98 | routdata[BVALUE(m,n,step)] = 0; // clear blue part
|
---|
| 99 | routdata[GVALUE(m,n,step)] = 0; // clear green part
|
---|
[8] | 100 |
|
---|
[9] | 101 | goutdata[BVALUE(m,n,step)] = 0; // clear blue part
|
---|
| 102 | goutdata[RVALUE(m,n,step)] = 0; // clear red part
|
---|
[8] | 103 |
|
---|
[9] | 104 | boutdata[GVALUE(m,n,step)] = 0; // clear green part
|
---|
| 105 | boutdata[RVALUE(m,n,step)] = 0; // clear red part
|
---|
[8] | 106 | }
|
---|
| 107 | }
|
---|
| 108 |
|
---|
| 109 | // Clear filter for new use
|
---|
[9] | 110 | // cvSetZero(filter);
|
---|
| 111 | // ... or clone orginal image for mapping over it
|
---|
| 112 | //cvCopy(goutput, filter, NULL);
|
---|
[8] | 113 |
|
---|
| 114 | // Make it yellow
|
---|
| 115 | //cvOr( routput, goutput, filter, NULL);
|
---|
| 116 |
|
---|
[9] | 117 | // XXX: Use stuff like cvMat, cvGetRawData instead of internal hacking
|
---|
| 118 | // Make green 'fade' out by the presence of many red as well
|
---|
| 119 | filterdata = (uchar *) filter->imageData;
|
---|
| 120 | for( m = 0; m < image->height; m++) //row
|
---|
| 121 | {
|
---|
| 122 | for( n = 0; n < image->width; n++) //column
|
---|
| 123 | {
|
---|
| 124 | r = outdata[RVALUE(m,n,step)];
|
---|
| 125 | g = outdata[GVALUE(m,n,step)];
|
---|
| 126 | b = outdata[BVALUE(m,n,step)];
|
---|
| 127 | // Many red, less blue and green. Good for laser pointer tracing
|
---|
| 128 | p = (r < 220) ? 0 : r;
|
---|
| 129 | p = (b < 180 || g < 180) ? 0 : p;
|
---|
| 130 | //p = (abs(p - filterdata[GVALUE(m,n,step)]) > 20) ? p : 0;
|
---|
| 131 | filterdata[GVALUE(m,n,step)] = p;
|
---|
| 132 | }
|
---|
| 133 | }
|
---|
[8] | 134 |
|
---|
[9] | 135 |
|
---|
[8] | 136 | int xmin = 0, xmax = 0;
|
---|
| 137 | int ymin = 0, ymax = 0;
|
---|
[9] | 138 | int value = 0, cmax = 0;
|
---|
[8] | 139 |
|
---|
| 140 | // Find the 'very' green point and mark it's surroundings
|
---|
[9] | 141 | const int stepSize = 5;
|
---|
| 142 | for(m = 0; m < image->height; m = m+stepSize)
|
---|
[8] | 143 | {
|
---|
[9] | 144 | for(n = 0; n < image->width; n = n+stepSize)
|
---|
[8] | 145 | {
|
---|
| 146 | // Make it stop processing all points, pick the ones with high value
|
---|
[9] | 147 | value = filterdata[GVALUE(m,n,step)];
|
---|
| 148 | if (value > cmax)
|
---|
| 149 | {
|
---|
| 150 | // detect 'square'
|
---|
| 151 | p = 0;
|
---|
[10] | 152 | int SIZE = 3;
|
---|
[9] | 153 | for (i = m; i < min(m+SIZE,height); i++)
|
---|
| 154 | {
|
---|
| 155 | for (j = n; j < min(n+SIZE,width); j++)
|
---|
| 156 | {
|
---|
| 157 | value = filterdata[GVALUE(i,j,step)];
|
---|
| 158 | if (value > cmax)
|
---|
| 159 | {
|
---|
| 160 | p++;
|
---|
| 161 | }
|
---|
| 162 | }
|
---|
| 163 | }
|
---|
| 164 |
|
---|
[10] | 165 |
|
---|
| 166 | SIZE = 6;
|
---|
[9] | 167 | /* Make sure envirionment is 'low' */
|
---|
| 168 | for (i = max(m-SIZE,0); i < m; i++)
|
---|
| 169 | {
|
---|
| 170 | for (j = max(n-SIZE,0); j < n; j++)
|
---|
| 171 | {
|
---|
| 172 | q = filterdata[GVALUE(i,j,step)];
|
---|
| 173 | if (q > value)
|
---|
| 174 | {
|
---|
| 175 | p--;
|
---|
| 176 | }
|
---|
| 177 | }
|
---|
| 178 | }
|
---|
| 179 | for (i = min(m+SIZE,height); i < min(m+(2*SIZE),height); i++)
|
---|
| 180 | {
|
---|
| 181 | for (j= min(m+SIZE,width); j < min(m+(2*SIZE),width); j++)
|
---|
| 182 | {
|
---|
| 183 | q = filterdata[GVALUE(i,j,step)];
|
---|
| 184 | if (q > value)
|
---|
| 185 | {
|
---|
| 186 | p--;
|
---|
| 187 | }
|
---|
| 188 | }
|
---|
| 189 | }
|
---|
| 190 |
|
---|
| 191 | if (p > SIZE)
|
---|
| 192 | {
|
---|
[10] | 193 | //printf("%ix%i=%i\n",n,m,value);
|
---|
[9] | 194 | cmax = value;
|
---|
| 195 | xmax = n;
|
---|
| 196 | ymax = m;
|
---|
| 197 | }
|
---|
[8] | 198 | }
|
---|
| 199 | }
|
---|
| 200 | }
|
---|
[9] | 201 |
|
---|
| 202 | // Prepare combined output
|
---|
[10] | 203 | // Some way of making the picture more pretty
|
---|
| 204 | //cvSmooth(filter,target, CV_MEDIAN, 3, 3, 3, 3);
|
---|
| 205 | cvCopy(filter,target, NULL);
|
---|
[9] | 206 | cvCircle(target, cvPoint(xmax, ymax), 10, CV_RGB(255,0,0),4, 8, 0);
|
---|
[8] | 207 |
|
---|
| 208 |
|
---|
| 209 | // Show all the images
|
---|
| 210 | cvShowImage("RGB_Image", output);
|
---|
| 211 | cvShowImage("R_Image", routput);
|
---|
| 212 | cvShowImage("B_Image", boutput);
|
---|
| 213 | cvShowImage("G_Image", goutput);
|
---|
[9] | 214 | cvShowImage("F_Image", target);
|
---|
[8] | 215 |
|
---|
| 216 |
|
---|
[9] | 217 | // wait for any to press to quit
|
---|
| 218 | // Eeks! also HACK to make it refresh properly
|
---|
[8] | 219 | if (cvWaitKey(20) != -1) {
|
---|
| 220 | break;
|
---|
| 221 | }
|
---|
| 222 | } //for each frame ...
|
---|
| 223 |
|
---|
| 224 |
|
---|
| 225 | cvReleaseCapture(&capture);
|
---|
| 226 | cvDestroyWindow("RGB_Image");
|
---|
| 227 | cvDestroyWindow("R_Image");
|
---|
| 228 | cvDestroyWindow("G_Image");
|
---|
| 229 | cvDestroyWindow("B_Image");
|
---|
| 230 | cvDestroyWindow("F_Image");
|
---|
| 231 |
|
---|
| 232 | return 0;
|
---|
| 233 |
|
---|
| 234 | }
|
---|
| 235 |
|
---|
[9] | 236 | // Get ourself into the highGUI main stuff
|
---|
[8] | 237 | int main(int argc, char *argv[]) {
|
---|
| 238 | return cvInitSystem(argc, argv);
|
---|
| 239 | }
|
---|