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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
|
//! \example tutorial-detection-object-mbt2.cpp
#include <visp3/core/vpConfig.h>
#include <visp3/core/vpIoTools.h>
#include <visp3/gui/vpDisplayGDI.h>
#include <visp3/gui/vpDisplayOpenCV.h>
#include <visp3/gui/vpDisplayX.h>
#include <visp3/io/vpVideoReader.h>
#include <visp3/mbt/vpMbGenericTracker.h>
#include <visp3/vision/vpKeyPoint.h>
#if defined(VISP_HAVE_OPENCV) && defined(HAVE_OPENCV_IMGPROC) && defined(HAVE_OPENCV_FEATURES2D)
void learnCube(const vpImage<unsigned char> &I, vpMbGenericTracker &tracker, vpKeyPoint &keypoint_learning, int id)
{
//! [Keypoints reference detection]
std::vector<cv::KeyPoint> trainKeyPoints;
double elapsedTime;
keypoint_learning.detect(I, trainKeyPoints, elapsedTime);
//! [Keypoints reference detection]
//! [Keypoints selection on faces]
std::vector<vpPolygon> polygons;
std::vector<std::vector<vpPoint> > roisPt;
std::pair<std::vector<vpPolygon>, std::vector<std::vector<vpPoint> > > pair = tracker.getPolygonFaces();
polygons = pair.first;
roisPt = pair.second;
std::vector<cv::Point3f> points3f;
vpHomogeneousMatrix cMo;
tracker.getPose(cMo);
vpCameraParameters cam;
tracker.getCameraParameters(cam);
vpKeyPoint::compute3DForPointsInPolygons(cMo, cam, trainKeyPoints, polygons, roisPt, points3f);
//! [Keypoints selection on faces]
//! [Keypoints build reference]
keypoint_learning.buildReference(I, trainKeyPoints, points3f, true, id);
//! [Keypoints build reference]
//! [Display reference keypoints]
for (std::vector<cv::KeyPoint>::const_iterator it = trainKeyPoints.begin(); it != trainKeyPoints.end(); ++it) {
vpDisplay::displayCross(I, (int)it->pt.y, (int)it->pt.x, 4, vpColor::red);
}
//! [Display reference keypoints]
}
#endif
int main(int argc, char **argv)
{
#if defined(VISP_HAVE_OPENCV) && defined(HAVE_OPENCV_IMGPROC) && defined(HAVE_OPENCV_FEATURES2D)
//! [MBT code]
try {
std::string videoname = "cube.mp4";
for (int i = 0; i < argc; i++) {
if (std::string(argv[i]) == "--name")
videoname = std::string(argv[i + 1]);
else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
std::cout << "\nUsage: " << argv[0] << " [--name <video name>] [--help] [-h]\n" << std::endl;
return EXIT_SUCCESS;
}
}
std::string parentname = vpIoTools::getParent(videoname);
std::string objectname = vpIoTools::getNameWE(videoname);
if (!parentname.empty())
objectname = parentname + "/" + objectname;
std::cout << "Video name: " << videoname << std::endl;
std::cout << "Tracker requested config files: " << objectname << ".[init,"
<< "xml,"
<< "cao or wrl]" << std::endl;
std::cout << "Tracker optional config files: " << objectname << ".[ppm]" << std::endl;
vpImage<unsigned char> I;
vpHomogeneousMatrix cMo;
vpCameraParameters cam;
vpMbGenericTracker tracker(vpMbGenericTracker::EDGE_TRACKER);
bool usexml = false;
if (vpIoTools::checkFilename(objectname + ".xml")) {
tracker.loadConfigFile(objectname + ".xml");
tracker.getCameraParameters(cam);
usexml = true;
}
if (!usexml) {
vpMe me;
me.setMaskSize(5);
me.setMaskNumber(180);
me.setRange(7);
me.setLikelihoodThresholdType(vpMe::NORMALIZED_THRESHOLD);
me.setThreshold(20);
me.setMu1(0.5);
me.setMu2(0.5);
me.setSampleStep(4);
me.setNbTotalSample(250);
tracker.setMovingEdge(me);
cam.initPersProjWithoutDistortion(547, 542, 339, 235);
tracker.setCameraParameters(cam);
tracker.setAngleAppear(vpMath::rad(89));
tracker.setAngleDisappear(vpMath::rad(89));
tracker.setNearClippingDistance(0.01);
tracker.setFarClippingDistance(10.0);
tracker.setClipping(tracker.getClipping() | vpMbtPolygon::FOV_CLIPPING);
}
tracker.setOgreVisibilityTest(false);
if (vpIoTools::checkFilename(objectname + ".cao"))
tracker.loadModel(objectname + ".cao");
else if (vpIoTools::checkFilename(objectname + ".wrl"))
tracker.loadModel(objectname + ".wrl");
tracker.setDisplayFeatures(true);
//! [MBT code]
//! [Keypoint declaration]
vpKeyPoint keypoint_learning("ORB", "ORB", "BruteForce-Hamming");
#if (VISP_HAVE_OPENCV_VERSION < 0x030000)
keypoint_learning.setDetectorParameter("ORB", "nLevels", 1);
#else
cv::Ptr<cv::ORB> orb_learning = keypoint_learning.getDetector("ORB").dynamicCast<cv::ORB>();
if (orb_learning) {
orb_learning->setNLevels(1);
}
#endif
//! [Keypoint declaration]
#if defined(VISP_HAVE_X11)
vpDisplayX display;
#elif defined(VISP_HAVE_GDI)
vpDisplayGDI display;
#elif defined(HAVE_OPENCV_HIGHGUI)
vpDisplayOpenCV display;
#else
std::cout << "No image viewer is available..." << std::endl;
return EXIT_FAILURE;
#endif
/*
* Start the part of the code dedicated to object learning from 3 images
*/
std::string imageName [] = { "cube0001.png", "cube0150.png", "cube0200.png" };
vpHomogeneousMatrix initPoseTab [] = {
vpHomogeneousMatrix(0.02143385294, 0.1098083886, 0.5127439561, 2.087159614, 1.141775176, -0.4701291124),
vpHomogeneousMatrix(0.02651282185, -0.03713587374, 0.6873765919, 2.314744454, 0.3492296488, -0.1226054828),
vpHomogeneousMatrix(0.02965448956, -0.07283091786, 0.7253526051, 2.300529617, -0.4286674806, 0.1788761025) };
for (int i = 0; i < 3; i++) {
vpImageIo::read(I, imageName[i]);
if (i == 0) {
display.init(I, 10, 10);
}
std::stringstream title;
title << "Learning cube on image: " << imageName[i];
vpDisplay::setTitle(I, title.str().c_str());
vpDisplay::display(I);
//! [Set tracker pose]
tracker.setPose(I, initPoseTab[i]);
//! [Set tracker pose]
//! [Refine pose]
tracker.track(I);
//! [Refine pose]
//! [Display tracker pose]
tracker.getPose(cMo);
tracker.display(I, cMo, cam, vpColor::red);
//! [Display tracker pose]
//! [Learn cube call]
learnCube(I, tracker, keypoint_learning, i);
//! [Learn cube call]
vpDisplay::displayText(I, 10, 10, "Learning step: keypoints are detected on visible cube faces", vpColor::red);
if (i < 2) {
vpDisplay::displayText(I, 30, 10, "Click to continue the learning...", vpColor::red);
}
else {
vpDisplay::displayText(I, 30, 10, "Click to continue with the detection...", vpColor::red);
}
vpDisplay::flush(I);
vpDisplay::getClick(I, true);
}
//! [Save learning data]
keypoint_learning.saveLearningData("cube_learning_data.bin", true);
//! [Save learning data]
/*
* Start the part of the code dedicated to detection and localization
*/
//! [Init keypoint detection]
vpKeyPoint keypoint_detection("ORB", "ORB", "BruteForce-Hamming");
#if (VISP_HAVE_OPENCV_VERSION < 0x030000)
keypoint_detection.setDetectorParameter("ORB", "nLevels", 1);
#else
cv::Ptr<cv::ORB> orb_detector = keypoint_detection.getDetector("ORB").dynamicCast<cv::ORB>();
orb_detector = keypoint_detection.getDetector("ORB").dynamicCast<cv::ORB>();
if (orb_detector) {
orb_detector->setNLevels(1);
}
#endif
//! [Init keypoint detection]
//! [Load teabox learning data]
keypoint_detection.loadLearningData("cube_learning_data.bin", true);
//! [Load teabox learning data]
//! [Create image matching]
vpImage<unsigned char> IMatching;
keypoint_detection.createImageMatching(I, IMatching);
//! [Create image matching]
vpVideoReader g;
g.setFileName(videoname);
g.open(I);
#if defined(VISP_HAVE_X11)
vpDisplayX display2;
#elif defined(VISP_HAVE_GTK)
vpDisplayGTK display2;
#elif defined(VISP_HAVE_GDI)
vpDisplayGDI display2;
#elif defined(HAVE_OPENCV_HIGHGUI)
vpDisplayOpenCV display2;
#endif
display2.init(IMatching, 50, 50, "Display matching between learned and current images");
vpDisplay::setTitle(I, "Cube detection and localization");
double error;
bool click_done = false;
while (!g.end()) {
g.acquire(I);
vpDisplay::display(I);
//! [Insert image matching]
keypoint_detection.insertImageMatching(I, IMatching);
//! [Insert image matching]
vpDisplay::display(IMatching);
vpDisplay::displayText(I, 10, 10, "Detection and localization in process...", vpColor::red);
double elapsedTime;
//! [Matching and pose estimation]
if (keypoint_detection.matchPoint(I, cam, cMo, error, elapsedTime)) {
//! [Matching and pose estimation]
//! [Tracker set pose]
tracker.setPose(I, cMo);
//! [Tracker set pose]
//! [Display]
tracker.display(I, cMo, cam, vpColor::red, 2);
vpDisplay::displayFrame(I, cMo, cam, 0.05, vpColor::none, 3);
//! [Display]
keypoint_detection.displayMatching(I, IMatching);
//! [Get RANSAC inliers outliers]
std::vector<vpImagePoint> ransacInliers = keypoint_detection.getRansacInliers();
std::vector<vpImagePoint> ransacOutliers = keypoint_detection.getRansacOutliers();
//! [Get RANSAC inliers outliers]
//! [Display RANSAC inliers]
for (std::vector<vpImagePoint>::const_iterator it = ransacInliers.begin(); it != ransacInliers.end(); ++it) {
vpDisplay::displayCircle(I, *it, 4, vpColor::green);
vpImagePoint imPt(*it);
imPt.set_u(imPt.get_u() + I.getWidth());
imPt.set_v(imPt.get_v() + I.getHeight());
vpDisplay::displayCircle(IMatching, imPt, 4, vpColor::green);
}
//! [Display RANSAC inliers]
//! [Display RANSAC outliers]
for (std::vector<vpImagePoint>::const_iterator it = ransacOutliers.begin(); it != ransacOutliers.end(); ++it) {
vpDisplay::displayCircle(I, *it, 4, vpColor::red);
vpImagePoint imPt(*it);
imPt.set_u(imPt.get_u() + I.getWidth());
imPt.set_v(imPt.get_v() + I.getHeight());
vpDisplay::displayCircle(IMatching, imPt, 4, vpColor::red);
}
//! [Display RANSAC outliers]
//! [Display image matching]
keypoint_detection.displayMatching(I, IMatching);
//! [Display image matching]
//! [Display model image matching]
vpCameraParameters cam2;
cam2.initPersProjWithoutDistortion(cam.get_px(), cam.get_py(), cam.get_u0() + I.getWidth(),
cam.get_v0() + I.getHeight());
tracker.setCameraParameters(cam2);
tracker.setPose(IMatching, cMo);
tracker.display(IMatching, cMo, cam2, vpColor::red, 2);
vpDisplay::displayFrame(IMatching, cMo, cam2, 0.05, vpColor::none, 3);
//! [Display model image matching]
}
vpDisplay::flush(I);
vpDisplay::displayText(IMatching, 30, 10, "A click to exit.", vpColor::red);
vpDisplay::flush(IMatching);
if (vpDisplay::getClick(I, false)) {
click_done = true;
break;
}
if (vpDisplay::getClick(IMatching, false)) {
click_done = true;
break;
}
}
if (!click_done)
vpDisplay::getClick(IMatching);
}
catch (const vpException &e) {
std::cout << "Catch an exception: " << e << std::endl;
}
#else
(void)argc;
(void)argv;
std::cout << "Install OpenCV and rebuild ViSP to use this example." << std::endl;
#endif
return EXIT_SUCCESS;
}
|