cleanup. mostly notes, not code
[ozzloy@gmail.com/oble] / oble.cpp
CommitLineData
a92408ab 1//use the camera to aid the decision to sleep.
2//Copyright 2009 Daniel Watson
ccb0e7df 3/*
4 use a camera to prevent screensaver
5 Copyright (C) 2009 daniel watson, ozzloy@gmail.com
6
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
19*/
a92408ab 20/*
4d640880 21 This file is part of oble.
a92408ab 22
4d640880 23 oble is free software: you can redistribute it and/or modify
24 it under the terms of the GNU General Public License as published by
25 the Free Software Foundation, either version 3 of the License, or
26 (at your option) any later version.
a92408ab 27
4d640880 28 oble is distributed in the hope that it will be useful,
29 but WITHOUT ANY WARRANTY; without even the implied warranty of
30 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 GNU General Public License for more details.
a92408ab 32
4d640880 33 You should have received a copy of the GNU General Public License
34 along with oble. If not, see <http://www.gnu.org/licenses/>.
a92408ab 35
4d640880 36*/
b7e484d5 37#include <cv.h>
38#include <highgui.h>
39#include <stdio.h>
4d640880 40#include <iostream>
e0c48375 41#include <time.h>
124727d2 42#include "oble.h"
b8b01547 43
e0c48375 44using namespace std;
b7e484d5 45
0d6b136c 46// argument for cvFlip(src, dest, FLIP_TYPE)
4d640880 47#define MIRROR 1
0d6b136c 48
64fb0216 49CvHaarClassifierCascade* load_object_detector(const char* cascade_path)
b7e484d5 50{
21323a92 51 return (CvHaarClassifierCascade*)cvLoad(cascade_path);
b7e484d5 52}
53
9cd4e78c 54void detect_and_draw_objects(IplImage* image,
b7e484d5 55 CvHaarClassifierCascade* cascade,
9cd4e78c 56 int do_pyramids)
b7e484d5 57{
58 IplImage* small_image = image;
59 CvMemStorage* storage = cvCreateMemStorage(0);
60 CvSeq* faces;
61 int i, scale = 1;
62
63 /* if the flag is specified, down-scale the input image to get a
64 performance boost w/o loosing quality (perhaps) */
21323a92 65 if(do_pyramids)
b7e484d5 66 {
21323a92 67 small_image = cvCreateImage(cvSize(image->width/2,image->height/2),
68 IPL_DEPTH_8U, 3);
69 cvPyrDown(image, small_image, CV_GAUSSIAN_5x5);
b7e484d5 70 scale = 2;
71 }
72
73 /* use the fastest variant */
21323a92 74 faces = cvHaarDetectObjects(small_image, cascade, storage, 1.2, 2,
75 CV_HAAR_DO_CANNY_PRUNING);
b7e484d5 76
4d640880 77 if(0 < faces->total)
b8b01547 78 {
e0c48375 79 t_current = time(NULL);
b8b01547 80 }
b8b01547 81
b7e484d5 82 /* draw all the rectangles */
21323a92 83 for(i = 0; i < faces->total; i++)
b7e484d5 84 {
85 /* extract the rectangles only */
21323a92 86 CvRect face = *(CvRect*)cvGetSeqElem(faces, i);
79292335 87 CvPoint upperLeft = cvPoint(face.x * scale, face.y * scale);
88 CvPoint bottomRight = cvPoint((face.x + face.width) * scale,
89 (face.y + face.height) * scale);
21323a92 90 cvRectangle(image, upperLeft, bottomRight, CV_RGB(255,0,0), 3);
b7e484d5 91 }
92
21323a92 93 if(small_image != image)
94 cvReleaseImage(&small_image);
95 cvReleaseMemStorage(&storage);
b7e484d5 96}
97
e0c48375 98void screensave(time_t t_current)
b7e484d5 99{
e0c48375 100 static int last_elapse = 0;
101 static int activated = 0;
102 int elapse = difftime(time(NULL), t_current);
103 int timeout = 10;
104 if(elapse > timeout && elapse != last_elapse)
b8b01547 105 {
e0c48375 106 last_elapse = elapse;
107 printf("elapse = %d\n", elapse);
108 if(!activated)
109 {
110 printf("activated\n");
111 activated = 1;
112 system("gnome-screensaver-command -a");
113 }
114 }
115 if(elapse < timeout && activated)
116 {
117 printf("deactivated\n");
118 activated = 0;
119 system("gnome-screensaver-command -d");
120 }
121}
b8b01547 122
e0c48375 123// A Simple Camera Capture Framework.
124int main(int argc, char** argv)
125{
b7e484d5 126 CvHaarClassifierCascade* cascade = load_object_detector(argv[1]);
127
21323a92 128 CvCapture* capture = cvCaptureFromCAM(CV_CAP_ANY);
129 if(!capture) {
4d640880 130 cerr << "ERROR: capture is NULL " << endl;
b7e484d5 131 getchar();
132 return -1;
133 }
134
135 // Create a window in which the captured images will be presented
21323a92 136 cvNamedWindow("mywindow", CV_WINDOW_AUTOSIZE);
b7e484d5 137
0d6b136c 138 IplImage* frame = cvQueryFrame(capture);
139 if(!frame) {
4d640880 140 cerr << "ERROR: frame is null..." << endl;
0d6b136c 141 getchar();
142 return -1;
143 }
b8b01547 144 IplImage* mirrored =
0d6b136c 145 cvCreateImage(cvGetSize(frame), frame->depth, frame->nChannels);
e0c48375 146 t_current = time(NULL);
b7e484d5 147 // Show the image captured from the camera in the window and repeat
21323a92 148 while(1) {
b7e484d5 149 // Get one frame
0d6b136c 150 frame = cvQueryFrame(capture);
21323a92 151 if(!frame) {
4d640880 152 cerr << "ERROR: frame is null..." << endl;
b7e484d5 153 getchar();
154 break;
155 }
156
21323a92 157 //flip the image so displayed right/left corresponds to physical right/left
4d640880 158 cvFlip(frame, mirrored, MIRROR);
64fb0216 159
b8b01547 160 detect_and_draw_objects(mirrored, cascade, 1);
161 cvShowImage("mywindow", mirrored);
b7e484d5 162 // Do not release the frame!
e0c48375 163 screensave(t_current);
b7e484d5 164
165 //If ESC key pressed, Key=0x10001B under OpenCV 0.9.7(linux version),
166 //remove higher bits using AND operator
e0c48375 167 if((cvWaitKey(100) & 255) == 27) break;
b7e484d5 168 }
169
170 // Release the capture device housekeeping
21323a92 171 cvReleaseCapture(&capture);
172 cvDestroyWindow("mywindow");
b8b01547 173 cvReleaseImage(&mirrored);
b7e484d5 174 return 0;
175}