~ubuntu-branches/ubuntu/maverick/freecad/maverick

« back to all changes in this revision

Viewing changes to src/Mod/Image/App/CaptureClass.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam C. Powell, IV
  • Date: 2010-01-11 08:48:33 UTC
  • mfrom: (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100111084833-4g9vgdqbkw8u34zb
Tags: 0.9.2646.5-1
* New upstream version (closes: #561696).
* Added swig to Build-Depends (closes: #563523, #563772).
* Removed python-opencv from Build-Depends and Recommends (closes: #560768).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (c) J�rgen Riegel          (juergen.riegel@web.de) 2007     *
3
 
 *                                                                         *
4
 
 *   This file is part of the FreeCAD CAx development system.              *
5
 
 *                                                                         *
6
 
 *   This library is free software; you can redistribute it and/or         *
7
 
 *   modify it under the terms of the GNU Library General Public           *
8
 
 *   License as published by the Free Software Foundation; either          *
9
 
 *   version 2 of the License, or (at your option) any later version.      *
10
 
 *                                                                         *
11
 
 *   This library  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 Library General Public License for more details.                  *
15
 
 *                                                                         *
16
 
 *   You should have received a copy of the GNU Library General Public     *
17
 
 *   License along with this library; see the file COPYING.LIB. If not,    *
18
 
 *   write to the Free Software Foundation, Inc., 59 Temple Place,         *
19
 
 *   Suite 330, Boston, MA  02111-1307, USA                                *
20
 
 *                                                                         *
21
 
 ***************************************************************************/
22
 
 
23
 
 
24
 
#ifndef CaptureClassH
25
 
#define CaptureClassH
26
 
 
27
 
 
28
 
#include <cv.h>
29
 
#include <highgui.h>
30
 
//---------------------------------------------------------------------------
31
 
 
32
 
class ImageAppExport Capturerer
33
 
{
34
 
public:
35
 
        /// Constructor with an Capture number, 0 will ask for one
36
 
        Capturerer(int num = 0);
37
 
        /// Constructor with an File name.      Object will capture from that Video file
38
 
        Capturerer(const char* fileName);
39
 
 
40
 
    ~Capturerer();
41
 
 
42
 
    static int chooseCamNum(void);
43
 
 
44
 
        void setCaptureWindows(bool On);
45
 
 
46
 
        char getOneCapture(const char *text=0);
47
 
 
48
 
private:
49
 
  CvCapture* capture;
50
 
  IplImage *captureImage;
51
 
  bool _bIsWinOn;
52
 
 
53
 
  CvSize size;
54
 
 
55
 
    // font stuff
56
 
    CvFont font;
57
 
    double hScale;
58
 
    double vScale;
59
 
    int    lineWidth;
60
 
    bool   useLabel;
61
 
    char   buff[100];
62
 
 
63
 
 
64
 
};
65
 
 
66
 
 
67
 
 
68
 
 
69
 
 
70
 
 
71
 
#endif