tracker_dataset.cpp 6.53 KB
Newer Older
Vladimir's avatar
Vladimir committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
/*M///////////////////////////////////////////////////////////////////////////////////////
//
//  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
//  By downloading, copying, installing or using the software you agree to this license.
//  If you do not agree to this license, do not download, install,
//  copy or use the software.
//
//
//                           License Agreement
//                For Open Source Computer Vision Library
//
// Copyright (C) 2013, OpenCV Foundation, all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
//   * Redistribution's of source code must retain the above copyright notice,
//     this list of conditions and the following disclaimer.
//
//   * Redistribution's in binary form must reproduce the above copyright notice,
//     this list of conditions and the following disclaimer in the documentation
//     and/or other materials provided with the distribution.
//
//   * The name of the copyright holders may not be used to endorse or promote products
//     derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
40
//M*/
Vladimir's avatar
Vladimir committed
41

42 43 44 45 46 47 48 49

//
//  !!! this sample requires the opencv_datasets module !!!
//

#include "opencv2/opencv_modules.hpp"
#ifdef HAVE_OPENCV_DATASETS

50
#include "opencv2/datasets/track_vot.hpp"
Vladimir's avatar
Vladimir committed
51 52 53 54
#include <opencv2/core/utility.hpp>
#include <opencv2/tracking.hpp>
#include <opencv2/videoio.hpp>
#include <opencv2/highgui.hpp>
55 56
#include <opencv2/imgproc.hpp>

Vladimir's avatar
Vladimir committed
57 58 59 60
#include <iostream>

using namespace std;
using namespace cv;
61
using namespace cv::datasets;
Vladimir's avatar
Vladimir committed
62

63 64
#define NUM_TEST_FRAMES 300
#define TEST_VIDEO_INDEX 1		//TLD Dataset Video Index from 1-10
Vladimir's avatar
Vladimir committed
65 66 67 68 69 70 71 72
//#define RECORD_VIDEO_FLG

static Mat image;
static Rect2d boundingBox;
static bool paused;
static bool selectObject = false;
static bool startSelection = false;

73 74 75
static const char* keys =
{ "{@tracker_algorithm | | Tracker algorithm }"
"{@dataset_path     |true| Dataset path     }"
76
"{@dataset_id     |1| Dataset ID     }"
77 78
};

Vladimir's avatar
Vladimir committed
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
static void onMouse(int event, int x, int y, int, void*)
{
	if (!selectObject)
	{
		switch (event)
		{
		case EVENT_LBUTTONDOWN:
			//set origin of the bounding box
			startSelection = true;
			boundingBox.x = x;
			boundingBox.y = y;
			boundingBox.width = boundingBox.height = 0;
			break;
		case EVENT_LBUTTONUP:
			//sei with and height of the bounding box
			boundingBox.width = std::abs(x - boundingBox.x);
			boundingBox.height = std::abs(y - boundingBox.y);
			paused = false;
			selectObject = true;
			break;
		case EVENT_MOUSEMOVE:

			if (startSelection && !selectObject)
			{
				//draw the bounding box
				Mat currentFrame;
				image.copyTo(currentFrame);
				rectangle(currentFrame, Point((int)boundingBox.x, (int)boundingBox.y), Point(x, y), Scalar(255, 0, 0), 2, 1);
				imshow("Tracking API", currentFrame);
			}
			break;
		}
	}
}

114 115 116
static void help()
{
	cout << "\nThis example shows the functionality of \"Long-term optical tracking API\""
117
		"TLD dataset ID: 1~10, VOT2015 dataset ID: 1~60\n"
118
		"-- pause video [p] and draw a bounding box around the target to start the tracker\n"
119 120
		"Example:\n"
		"./example_tracking_tracker_dataset <tracker_algorithm> <dataset_path> <dataset_id>\n"
121 122 123 124 125 126 127 128
		<< endl;

	cout << "\n\nHot keys: \n"
		"\tq - quit the program\n"
		"\tp - pause video\n";
}

int main(int argc, char *argv[])
Vladimir's avatar
Vladimir committed
129
{
130 131 132 133 134 135 136 137 138 139
	CommandLineParser parser(argc, argv, keys);
	string tracker_algorithm = parser.get<string>(0);
	string datasetRootPath = parser.get<string>(1);
	int datasetID = parser.get<int>(2);
	if (tracker_algorithm.empty() || datasetRootPath.empty())
	{
		help();
		return -1;
	}

Vladimir's avatar
Vladimir committed
140 141 142 143 144
	Mat frame;
	paused = false;
	namedWindow("Tracking API", 0);
	setMouseCallback("Tracking API", onMouse, 0);

145 146
	//Create Tracker
	Ptr<Tracker> tracker = Tracker::create(tracker_algorithm);
Vladimir's avatar
Vladimir committed
147 148 149 150
	if (tracker == NULL)
	{
		cout << "***Error in the instantiation of the tracker...***\n";
		getchar();
Vladimir's avatar
Vladimir committed
151
		return 0;
Vladimir's avatar
Vladimir committed
152 153
	}

154 155 156 157
	//Init Dataset
	Ptr<TRACK_vot> dataset = TRACK_vot::create();
	dataset->load(datasetRootPath);
	dataset->initDataset(datasetID);
Vladimir's avatar
Vladimir committed
158

159 160 161
	//Read first frame
	dataset->getNextFrame(frame);
	frame.copyTo(image);
Vladimir's avatar
Vladimir committed
162 163 164 165 166 167

	rectangle(image, boundingBox, Scalar(255, 0, 0), 2, 1);
	imshow("Tracking API", image);


	bool initialized = false;
168
	paused = true;
Vladimir's avatar
Vladimir committed
169 170 171
	int frameCounter = 0;

	//Time measurment
Vladimir's avatar
Vladimir committed
172
	int64 e3 = getTickCount();
Vladimir's avatar
Vladimir committed
173 174 175 176
	for (;;)
	{
		if (!paused)
		{
177 178 179
			//Time measurment
			int64 e1 = getTickCount();
			if (initialized){
180
				if (!dataset->getNextFrame(frame))
181 182
					break;
				frame.copyTo(image);
Vladimir's avatar
Vladimir committed
183 184
			}

185
			if (!initialized && selectObject)
Vladimir's avatar
Vladimir committed
186
			{
187 188
				//initializes the tracker
				if (!tracker->init(frame, boundingBox))
Vladimir's avatar
Vladimir committed
189
				{
190 191
					cout << "***Could not initialize tracker...***\n";
					return -1;
Vladimir's avatar
Vladimir committed
192
				}
193 194 195 196 197 198
				initialized = true;
			}
			else if (initialized)
			{
				//updates the tracker
				if (tracker->update(frame, boundingBox))
Vladimir's avatar
Vladimir committed
199
				{
200
					rectangle(image, boundingBox, Scalar(255, 0, 0), 2, 1);
Vladimir's avatar
Vladimir committed
201 202 203
				}
			}
			imshow("Tracking API", image);
204
			frameCounter++;
Vladimir's avatar
Vladimir committed
205
			//Time measurment
Vladimir's avatar
Vladimir committed
206 207 208
			int64 e2 = getTickCount();
			double t1 = (e2 - e1) / getTickFrequency();
			cout << frameCounter << "\tframe :  " << t1 * 1000.0 << "ms" << endl;
Vladimir's avatar
Vladimir committed
209
		}
210 211 212 213 214 215 216 217 218 219

		char c = (char)waitKey(2);
		if (c == 'q')
			break;
		if (c == 'p')
			paused = !paused;



		//waitKey(0);
Vladimir's avatar
Vladimir committed
220 221 222
	}

	//Time measurment
Vladimir's avatar
Vladimir committed
223 224 225
	int64 e4 = getTickCount();
	double t2 = (e4 - e3) / getTickFrequency();
	cout << "Average Time for Frame:  " << t2 * 1000.0 / frameCounter << "ms" << endl;
Vladimir's avatar
Vladimir committed
226 227 228 229
	cout << "Average FPS:  " << 1.0 / t2*frameCounter << endl;


	waitKey(0);
Vladimir's avatar
Vladimir committed
230 231

	return 0;
232 233 234 235 236
}



#else // ! HAVE_OPENCV_DATASETS
237
#include <opencv2/core.hpp>
238 239 240 241 242
int main() {
	CV_Error(cv::Error::StsNotImplemented , "this sample needs to be built with opencv_datasets !");
	return -1;
}
#endif // HAVE_OPENCV_DATASETS