Move the sources to trunk
[opencv] / apps / cvcsdemo / csdemoview.cpp
1 /*M///////////////////////////////////////////////////////////////////////////////////////
2 //
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4 //
5 //  By downloading, copying, installing or using the software you agree to this license.
6 //  If you do not agree to this license, do not download, install,
7 //  copy or use the software.
8 //
9 //
10 //                        Intel License Agreement
11 //                For Open Source Computer Vision Library
12 //
13 // Copyright (C) 2000, Intel Corporation, all rights reserved.
14 // Third party copyrights are property of their respective owners.
15 //
16 // Redistribution and use in source and binary forms, with or without modification,
17 // are permitted provided that the following conditions are met:
18 //
19 //   * Redistribution's of source code must retain the above copyright notice,
20 //     this list of conditions and the following disclaimer.
21 //
22 //   * Redistribution's in binary form must reproduce the above copyright notice,
23 //     this list of conditions and the following disclaimer in the documentation
24 //     and/or other materials provided with the distribution.
25 //
26 //   * The name of Intel Corporation may not be used to endorse or promote products
27 //     derived from this software without specific prior written permission.
28 //
29 // This software is provided by the copyright holders and contributors "as is" and
30 // any express or implied warranties, including, but not limited to, the implied
31 // warranties of merchantability and fitness for a particular purpose are disclaimed.
32 // In no event shall the Intel Corporation or contributors be liable for any direct,
33 // indirect, incidental, special, exemplary, or consequential damages
34 // (including, but not limited to, procurement of substitute goods or services;
35 // loss of use, data, or profits; or business interruption) however caused
36 // and on any theory of liability, whether in contract, strict liability,
37 // or tort (including negligence or otherwise) arising in any way out of
38 // the use of this software, even if advised of the possibility of such damage.
39 //
40 //M*/
41
42 // LkDemoView.cpp : implementation of the CCsDemoView class
43
44 #if _MSC_VER >= 1200
45 #pragma warning( disable: 4514 )
46 #endif
47
48 #include <math.h>
49 #include "csdemoview.h"
50
51
52 /////////////////////////////////////////////////////////////////////////////
53 // CCsDemoView
54
55 CCsDemoView::CCsDemoView()
56 {
57     m_track = false;
58     m_start = false;
59
60     m_params.x = 0.4f; 
61     m_params.y = 0.3f;
62     m_params.width = 0.2f;
63     m_params.height = 0.3f;
64     
65     m_params.Smin = 20;
66     m_params.Vmin = 40;
67     m_params.Vmax = 255;
68     m_params.bins = 20;
69     m_params.view = 0;
70     m_params.threshold = 0;
71
72     m_ImgSize.width=0; 
73     m_ImgSize.height=0;
74     m_VwSize.width=0; 
75     m_VwSize.height=0;
76 }
77
78 CCsDemoView::~CCsDemoView()
79 {
80 }
81
82 CvSize CCsDemoView::SetVwSize (int w,int h)
83 {
84     m_VwSize.width = w;
85     m_VwSize.height = h;
86     return m_VwSize;
87 }
88
89 CvSize CCsDemoView::GetVwSize ()
90 {
91     return m_VwSize;
92 }
93
94 CvSize CCsDemoView::SetImgSize (int w,int h)
95 {
96     m_ImgSize.width = w;
97     m_ImgSize.height = h;
98     return m_ImgSize;
99 }
100
101 CvSize CCsDemoView::GetImgSize ()
102 {
103     return m_ImgSize;
104 }
105
106 CvPoint CCsDemoView::ConvertViewToImage( CvPoint point )
107 {
108     point.x = point.x * m_ImgSize.width/m_VwSize.width;
109     point.y = point.y * m_ImgSize.height/m_VwSize.height;
110     
111     return point;
112 }
113
114 CvPoint CCsDemoView::ConvertImageToView( CvPoint point )
115 {
116     point.x = point.x * m_VwSize.width/m_ImgSize.width;
117     point.y = point.y * m_VwSize.height/m_ImgSize.height;
118     
119     return point;
120 }
121 /////////////////////////////////////////////////////////////////////////////