UsTK : Ultrasound ToolKit  version 2.0.1 under development (2024-05-20)
usTracker2DQtWrapper.cpp
1 /****************************************************************************
2  *
3  * This file is part of the ustk software.
4  * Copyright (C) 2016 - 2017 by Inria. All rights reserved.
5  *
6  * This software is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * ("GPL") version 2 as published by the Free Software Foundation.
9  * See the file LICENSE.txt at the root directory of this source
10  * distribution for additional information about the GNU GPL.
11  *
12  * For using ustk with software that can not be combined with the GNU
13  * GPL, please contact Inria about acquiring a ViSP Professional
14  * Edition License.
15  *
16  * This software was developed at:
17  * Inria Rennes - Bretagne Atlantique
18  * Campus Universitaire de Beaulieu
19  * 35042 Rennes Cedex
20  * France
21  *
22  * If you have questions regarding the use of this file, please contact
23  * Inria at ustk@inria.fr
24  *
25  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
26  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
27  *
28  * Authors:
29  * Marc Pouliquen
30  *
31  *****************************************************************************/
32 
38 #include <visp3/ustk_gui/usTracker2DQtWrapper.h>
39 
40 #if (defined(USTK_HAVE_VTK_QT) || defined(USTK_HAVE_QT5)) && defined(VISP_HAVE_MODULE_USTK_TEMPLATE_TRACKING)
41 
45 usTracker2DQtWrapper::usTracker2DQtWrapper()
46  : QObject(), m_tracker(), m_firstImage(), m_firstFrameArrived(false), m_isInitialized(false)
47 {
48 }
49 
53 usTracker2DQtWrapper::~usTracker2DQtWrapper() {}
54 
59 void usTracker2DQtWrapper::initTracker(vpRectOriented rect)
60 {
61  if (m_firstFrameArrived) {
62  m_tracker.init(m_firstImage, rect);
63  m_isInitialized = true;
64  } else {
65  throw(vpException(vpException::fatalError, "Cannot init tracker: no frames sent to usTracker2DQtWrapper."));
66  }
67 }
68 
73 void usTracker2DQtWrapper::updateImage(vpImage<unsigned char> image)
74 {
75  if (m_isInitialized) {
76  m_tracker.update(image);
77  emit(newTrackedRectangle(m_tracker.getTarget()));
78  } else {
79  m_firstImage = image;
80  m_firstFrameArrived = true;
81  }
82 }
83 
88 void usTracker2DQtWrapper::updateImage(usImagePreScan2D<unsigned char> image)
89 {
90  if (m_isInitialized) {
91  m_tracker.update(image);
92  emit(newTrackedRectangle(m_tracker.getTarget()));
93  } else {
94  m_firstImage = image;
95  m_firstFrameArrived = true;
96  }
97 }
98 
103 void usTracker2DQtWrapper::updateImage(usImagePostScan2D<unsigned char> image)
104 {
105  if (m_isInitialized) {
106  m_tracker.update(image);
107  emit(newTrackedRectangle(m_tracker.getTarget()));
108  } else {
109  m_firstImage = image;
110  m_firstFrameArrived = true;
111  }
112 }
113 
117 void usTracker2DQtWrapper::stopTracking()
118 {
119  m_firstFrameArrived = false;
120  m_isInitialized = false;
121 }
122 #endif