hv_OpenCV.cpp
上传用户:lijia5631
上传日期:2008-11-10
资源大小:1214k
文件大小:7k
源码类别:

视频捕捉/采集

开发平台:

MultiPlatform

  1. /**
  2. * HandVu - a library for computer vision-based hand gesture
  3. * recognition.
  4. * Copyright (C) 2004 Mathias Kolsch, matz@cs.ucsb.edu
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, 
  19. * Boston, MA  02111-1307, USA.
  20. *
  21. * $Id: hv_OpenCV.cpp,v 1.15 2006/01/03 21:44:15 matz Exp $
  22. **/
  23. #ifdef WIN32
  24. #include <windows.h>
  25. #endif
  26. #include <stdio.h>
  27. #include <cv.h>
  28. #include <highgui.h>
  29. #include <ctype.h>
  30. #include <time.h>
  31. #include "HandVu.h"
  32. IplImage *capture_image = 0;
  33. IplImage *display_image = 0;
  34. bool async_processing = false;
  35. int num_async_bufs = 30;
  36. IplImage *m_async_image = 0;
  37. int m_async_bufID = -1;
  38. bool sync_display = true;
  39. CvPoint origin;
  40. int select_object = 0;
  41. int sel_area_left=0, sel_area_top=0, sel_area_right=0, sel_area_bottom=0;
  42. bool correct_distortion = false;
  43. void OnMouse( int event, int x, int y, int /*flags*/, void* /*params*/ )
  44. {
  45.   if( !capture_image )
  46.     return;
  47.   if( capture_image->origin )
  48.     y = capture_image->height - y;
  49.   if( select_object )
  50.   {
  51.     sel_area_left = MIN(x,origin.x);
  52.     sel_area_top = MIN(y,origin.y);
  53.     sel_area_right = sel_area_left + CV_IABS(x - origin.x);
  54.     sel_area_bottom = sel_area_top + CV_IABS(y - origin.y);
  55.     sel_area_left = MAX( sel_area_left, 0 );
  56.     sel_area_top = MAX( sel_area_top, 0 );
  57.     sel_area_right = MIN( sel_area_right, capture_image->width );
  58.     sel_area_bottom = MIN( sel_area_bottom, capture_image->height );
  59.     if( sel_area_right-sel_area_left > 0 && sel_area_bottom-sel_area_top> 0 )
  60.       hvSetDetectionArea(sel_area_left, sel_area_top,
  61.                          sel_area_right, sel_area_bottom);
  62.   }
  63.   switch( event )
  64.   {
  65.   case CV_EVENT_LBUTTONDOWN:
  66.     origin = cvPoint(x,y);
  67.     sel_area_left = sel_area_right = x;
  68.     sel_area_top = sel_area_bottom = y;
  69.     select_object = 1;
  70.     break;
  71.   case CV_EVENT_LBUTTONUP:
  72.     select_object = 0;
  73.     break;
  74.   }
  75. }
  76. void showFrame(IplImage* img, hvAction action)
  77. {
  78.   if (action==HV_DROP_FRAME) {
  79.     // HandVu recommends dropping the frame entirely
  80.     // printf("HandVuFilter: dropping framen");
  81.     return;
  82.   } else if (action==HV_SKIP_FRAME) {
  83.     // HandVu recommends displaying the frame, but not doing any further
  84.     // processing on it - keep going
  85.     // printf("HandVuFilter: supposed to skip framen");
  86.   } else if (action==HV_PROCESS_FRAME) {
  87.     // full processing was done and is recommended for following steps;
  88.     // keep going
  89.     //printf("HandVuFilter: processed framen");
  90.   } else {
  91.     assert(0); // unknown action
  92.   }
  93.   
  94.   hvState state;
  95.   hvGetState(0, state);
  96.   
  97.   cvShowImage( "HandVu", img );
  98. }
  99. void displayCallback(IplImage* img, hvAction action)
  100. {
  101.   if (sync_display) {
  102.     cvCopy(img, display_image);
  103.   } else {
  104.     showFrame(img, action);
  105.   }
  106. }
  107. int main( int argc, char** argv )
  108. {
  109.   CvCapture* capture = 0;
  110.   if (argc<2) {
  111.     printf("you need to specify a conductor file as first argumentn");
  112.     printf("for example: ../config/default.conductorn");
  113.     return -1;
  114.   }
  115.   string conductor_fname(argv[1]);
  116.   printf("will load conductor from file:n%sn", conductor_fname.c_str());
  117.   if( argc == 2 || argc == 3) {
  118.     int num = 0;
  119.     if (argc==3) {
  120.       num = atoi(argv[2]);
  121.     }
  122.     capture = cvCaptureFromCAM( num );
  123.     if (!capture) {
  124.       capture = cvCaptureFromAVI( argv[2] ); 
  125.     }
  126.   }
  127.   if( !capture )
  128.   {
  129.     fprintf(stderr,"Could not initialize capturing through OpenCV.n");
  130.     return -1;
  131.   }
  132.   printf( "Hot keys: n"
  133.     "tESC - quit the programn"
  134.     "tr - restart the trackingn"
  135.     "t0-3 - set the overlay (verbosity) leveln"
  136.     "use the mouse to select the initial detection arean" );
  137.  
  138.   int p = 0; // according to docs, these calls don't work in OpenCV beta 4 yet
  139.   p = cvSetCaptureProperty(capture, CV_CAP_PROP_FRAME_WIDTH, 640);
  140.   p = cvSetCaptureProperty(capture, CV_CAP_PROP_FRAME_HEIGHT, 480);
  141.   capture_image = cvQueryFrame( capture );
  142.   if ( !capture_image ) {
  143.     fprintf(stderr,"Could not retrieve image through OpenCV.n");
  144.     return -1;
  145.   }
  146.   /* allocate all the buffers */
  147.   CvSize size = cvGetSize(capture_image);
  148.   hvInitialize(size.width, size.height);
  149.   hvLoadConductor(conductor_fname);
  150.   hvStartRecognition();
  151.   hvSetOverlayLevel(2);
  152.   if (async_processing) {
  153.     hvAsyncSetup(num_async_bufs, displayCallback);
  154.     if (sync_display) display_image = cvCloneImage(capture_image);
  155.   }
  156.   cvSetMouseCallback( "HandVu", OnMouse );
  157.   int success = cvNamedWindow( "HandVu", 1 );
  158.   if (success!=1) {
  159.     printf("can't open window - did you compile OpenCV with highgui support?");
  160.     return -1;
  161.   }
  162.   fprintf(stderr, "initialized highguin");
  163.   for (;;) {
  164.     int c;
  165.     
  166.     if (async_processing) {
  167.       // asynchronous processing in HandVu
  168.       if (sync_display) cvShowImage("HandVu", display_image);
  169.       
  170.       // ------- main library call ---------
  171.       hvAsyncGetImageBuffer(&m_async_image, &m_async_bufID);
  172.       cvCopy(capture_image, m_async_image);
  173.       hvAsyncProcessFrame(m_async_bufID);
  174.       // -------
  175.       
  176.     } else {
  177.       // synchronous processing in HandVu
  178.       
  179.       // ------- main library call ---------
  180.       hvAction action = HV_INVALID_ACTION;
  181.       action = hvProcessFrame(capture_image);
  182.       // -------
  183.       
  184.       showFrame(capture_image, action);
  185.       
  186.     }
  187.     
  188.     c = cvWaitKey(10);
  189.     if( c == 27 || c == 'q' )
  190.       break;
  191.     switch( c )
  192.       {
  193.       case 'r':
  194.         hvStopRecognition();
  195.         hvStartRecognition();
  196.         break;
  197.       case '0':
  198.         hvSetOverlayLevel(0);
  199.         break;
  200.       case '1':
  201.         hvSetOverlayLevel(1);
  202.         break;
  203.       case '2':
  204.         hvSetOverlayLevel(2);
  205.         break;
  206.       case '3':
  207.         hvSetOverlayLevel(3);
  208.         break;
  209.       case 'u':
  210.         if (hvCanCorrectDistortion()) {
  211.           correct_distortion = !correct_distortion;
  212.           hvCorrectDistortion(correct_distortion);
  213.         }
  214.         break;
  215.       default:
  216.         ;
  217.       }
  218.     
  219.     // capture next image
  220.     capture_image = cvQueryFrame( capture );
  221.     if ( !capture_image ) {
  222.       fprintf(stderr,"Could not retrieve image through OpenCV.n");
  223.       break;
  224.     }
  225.   }
  226.   
  227.   cvReleaseCapture( &capture );
  228.   cvDestroyWindow("HandVu");
  229.   return 0;
  230. }