Tizen 2.1 base
[apps/native/sample/FaceTracker.git] / project / src / FaceData.cpp
1 //
2 // Tizen C++ SDK
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.tizenopensource.org/license
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an AS IS BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 #include "FaceData.h"
19 #include <FUix.h>
20
21 using namespace Tizen::Uix::Vision;
22 using namespace Tizen::Graphics;
23
24 FaceData::FaceData(void)
25         : __similarity(0)
26         , __isFaceDetected(false)
27         , __isThreadCompleted(true)
28 {
29 }
30
31 FaceData::~FaceData(void)
32 {
33 }
34
35 void
36 FaceData::SetRectangle(Tizen::Graphics::Rectangle rect)
37 {
38         __faceRect.x = rect.x;
39         __faceRect.y = rect.y;
40         __faceRect.width = rect.width;
41         __faceRect.height = rect.height;
42 }
43
44 void
45 FaceData::SetSimilarity(int similarity)
46 {
47         __similarity = similarity;
48 }
49
50 void
51 FaceData::SetFaceDetected(bool isFaceDetect)
52 {
53         __isFaceDetected = isFaceDetect;
54 }
55
56 void
57 FaceData::SetThreadCompleted(bool isThreadComplete)
58 {
59         __isThreadCompleted = isThreadComplete;
60 }
61
62 Tizen::Graphics::Rectangle
63 FaceData::GetRectangle(void)
64 {
65         return __faceRect;
66 }
67
68 int
69 FaceData::GetSimilarity(void)
70 {
71         return __similarity;
72 }
73
74 bool
75 FaceData::GetFaceDetected(void)
76 {
77         return __isFaceDetected;
78 }
79
80 bool
81 FaceData::GetThreadCompleted(void)
82 {
83         return __isThreadCompleted;
84 }
85
86
87
88