/usr/include/visp/vpMbHiddenFaces.h is in libvisp-dev 2.9.0-3+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 | /****************************************************************************
*
* $Id: vpMbTracker.h 4004 2012-11-23 17:34:44Z fspindle $
*
* This file is part of the ViSP software.
* Copyright (C) 2005 - 2014 by INRIA. All rights reserved.
*
* This software is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* ("GPL") version 2 as published by the Free Software Foundation.
* See the file LICENSE.txt at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using ViSP with software that can not be combined with the GNU
* GPL, please contact INRIA about acquiring a ViSP Professional
* Edition License.
*
* See http://www.irisa.fr/lagadic/visp/visp.html for more information.
*
* This software was developed at:
* INRIA Rennes - Bretagne Atlantique
* Campus Universitaire de Beaulieu
* 35042 Rennes Cedex
* France
* http://www.irisa.fr/lagadic
*
* If you have questions regarding the use of this file, please contact
* INRIA at visp@inria.fr
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* Description:
* Generic model based tracker. This class declares the methods to implement in
* order to have a model based tracker.
*
* Authors:
* Romain Tallonneau
* Aurélien Yol
*
*****************************************************************************/
#pragma once
#ifndef vpMbHiddenFaces_HH
#define vpMbHiddenFaces_HH
#include <visp/vpHomogeneousMatrix.h>
#include <visp/vpMeterPixelConversion.h>
#include <visp/vpPixelMeterConversion.h>
#include <visp/vpMbtPolygon.h>
#ifdef VISP_HAVE_OGRE
#include <visp/vpAROgre.h>
#endif
#include <vector>
#include <limits>
/*!
\class vpMbHiddenFaces
\brief Implementation of the polygons management for the model-based trackers.
\ingroup ModelBasedTracking
*/
template<class PolygonType = vpMbtPolygon>
class vpMbHiddenFaces
{
private:
//! List of polygons
std::vector<PolygonType *> Lpol ;
//! Number of visible polygon
unsigned int nbVisiblePolygon;
#ifdef VISP_HAVE_OGRE
vpImage<unsigned char> ogreBackground;
bool ogreInitialised;
vpAROgre *ogre;
std::vector< Ogre::ManualObject* > lOgrePolygons;
#endif
unsigned int setVisiblePrivate(const vpHomogeneousMatrix &cMo, const double &angleAppears, const double &angleDisappears,
bool &changed,
bool useOgre = false, bool testRoi = false,
const vpImage<unsigned char> &I = vpImage<unsigned char>(),
const vpCameraParameters &cam = vpCameraParameters()
) ;
public :
vpMbHiddenFaces() ;
~vpMbHiddenFaces() ;
void addPolygon(PolygonType *p) ;
#ifdef VISP_HAVE_OGRE
void displayOgre(const vpHomogeneousMatrix &cMo);
#endif
/*!
Get the list of polygons.
\return Mbt Klt polygons list.
*/
std::vector<PolygonType*>& getPolygon() {return Lpol;}
#ifdef VISP_HAVE_OGRE
void initOgre(const vpCameraParameters &cam = vpCameraParameters());
#endif
/*!
get the number of visible polygons.
\return number of visible polygons.
*/
unsigned int getNbVisiblePolygon() const {return nbVisiblePolygon;}
#ifdef VISP_HAVE_OGRE
/*!
Get the Ogre3D Context.
\return A pointer on a vpAROgre instance.
*/
vpAROgre* getOgreContext(){return ogre;}
#endif
bool isAppearing(const unsigned int i){ return Lpol[i]->isAppearing(); }
#ifdef VISP_HAVE_OGRE
/*!
Tell whether if Ogre Context is initialised or not.
\return True if it does, false otherwise.
*/
bool isOgreInitialised() { return ogreInitialised; }
#endif
/*!
Check if the polygon at position i in the list is visible.
\param i : TPosition in the list.
\return Return true if the polygon is visible.
*/
bool isVisible(const unsigned int i){ return Lpol[i]->isVisible(); }
#ifdef VISP_HAVE_OGRE
bool isVisibleOgre(const vpTranslationVector &cameraPos, const unsigned int &index);
#endif
//! operator[] as modifier.
inline PolygonType* operator[](const unsigned int i) { return Lpol[i];}
//! operator[] as reader.
inline const PolygonType* operator[](const unsigned int i) const { return Lpol[i];}
void reset();
#ifdef VISP_HAVE_OGRE
/*!
Set the background size (by default it is 640x480).
The background size has to match with the size of the image that you are using for the traking.
\warning This function has to be called before initOgre().
\param h : Height of the background
\param w : Width of the background
*/
void setBackgroundSizeOgre(const unsigned int &h, const unsigned int &w) { ogreBackground.resize(h,w); }
#endif
unsigned int setVisible(const vpImage<unsigned char>& I, const vpCameraParameters &cam, const vpHomogeneousMatrix &cMo, const double &angle, bool &changed) ;
unsigned int setVisible(const vpImage<unsigned char>& I, const vpCameraParameters &cam, const vpHomogeneousMatrix &cMo, const double &angleAppears, const double &angleDisappears, bool &changed) ;
unsigned int setVisible(const vpHomogeneousMatrix &cMo, const double &angleAppears, const double &angleDisappears, bool &changed) ;
#ifdef VISP_HAVE_OGRE
unsigned int setVisibleOgre(const vpImage<unsigned char>& I, const vpCameraParameters &cam, const vpHomogeneousMatrix &cMo, const double &angleAppears, const double &angleDisappears, bool &changed) ;
unsigned int setVisibleOgre(const vpHomogeneousMatrix &cMo, const double &angleAppears, const double &angleDisappears, bool &changed) ;
#endif
/*!
Get the number of polygons.
\return Size of the list.
*/
inline unsigned int size() const { return (unsigned int)Lpol.size(); }
#ifdef VISP_BUILD_DEPRECATED_FUNCTIONS
//! Boolean specifying if a polygon has to be entirely in front of the camera or not.
bool depthTest;
/*!
@name Deprecated functions
*/
/*!
\deprecated This method is deprecated since it is no more used since ViSP 2.7.2. \n
Get the depthTest value.
\return true if all the points of a polygon has to be in front of the camera, false otherwise.
*/
vp_deprecated bool getDepthTest(){return depthTest;}
/*!
\deprecated This method is deprecated since it is no more used since ViSP 2.7.2. \n
Set the depthTest value.
\param d : New value.
*/
vp_deprecated void setDepthTest(const bool &d){depthTest = d;}
unsigned int setVisible(const vpHomogeneousMatrix &cMo) ;
#endif
} ;
/*!
Basic constructor.
*/
template<class PolygonType>
vpMbHiddenFaces<PolygonType>::vpMbHiddenFaces()
: Lpol(), nbVisiblePolygon(0)
#ifdef VISP_BUILD_DEPRECATED_FUNCTIONS
, depthTest(false)
#endif
{
#ifdef VISP_HAVE_OGRE
ogreInitialised = false;
ogre = new vpAROgre();
ogre->setShowConfigDialog(false);
ogreBackground = vpImage<unsigned char>(480, 640);
#endif
}
/*!
Basic destructor.
*/
template<class PolygonType>
vpMbHiddenFaces<PolygonType>::~vpMbHiddenFaces()
{
for(unsigned int i = 0 ; i < Lpol.size() ; i++){
if (Lpol[i]!=NULL){
delete Lpol[i] ;
}
Lpol[i] = NULL ;
}
Lpol.resize(0);
#ifdef VISP_HAVE_OGRE
delete ogre;
#endif
}
/*!
Add a polygon to the list of polygons.
\param p : The polygon to add.
*/
template<class PolygonType>
void
vpMbHiddenFaces<PolygonType>::addPolygon(PolygonType *p)
{
PolygonType *p_new = new PolygonType;
p_new->index = p->index;
p_new->setNbPoint(p->nbpt);
p_new->isvisible = p->isvisible;
for(unsigned int i = 0; i < p->nbpt; i++)
p_new->p[i]= p->p[i];
Lpol.push_back(p_new);
}
/*!
Reset the Hidden faces (remove the list of PolygonType)
*/
template<class PolygonType>
void
vpMbHiddenFaces<PolygonType>::reset()
{
nbVisiblePolygon = 0;
for(unsigned int i = 0 ; i < Lpol.size() ; i++){
if (Lpol[i]!=NULL){
delete Lpol[i] ;
}
Lpol[i] = NULL ;
}
Lpol.resize(0);
}
/*!
Compute the number of visible polygons.
\param cMo : The pose of the camera
\param angleAppears : Angle used to test the appearance of a face
\param angleDisappears : Angle used to test the disappearance of a face
\param changed : True if a face appeared, disappeared or too many points have been lost. False otherwise
\param useOgre : True if a Ogre is used to test the visibility, False otherwise
\param testRoi : True if a face have to be entirely in the image False otherwise
\param I : Image used to test if a face is entirely projected in the image.
\param cam : Camera parameters.
\return Return the number of visible polygons
*/
template<class PolygonType>
unsigned int
vpMbHiddenFaces<PolygonType>::setVisiblePrivate(const vpHomogeneousMatrix &cMo, const double &angleAppears, const double &angleDisappears,
bool &changed, bool useOgre, bool testRoi,
const vpImage<unsigned char> &I,
const vpCameraParameters &cam
)
{
nbVisiblePolygon = 0;
changed = false;
vpTranslationVector cameraPos;
if(useOgre){
#ifdef VISP_HAVE_OGRE
cMo.inverse().extract(cameraPos);
ogre->renderOneFrame(ogreBackground, cMo);
#else
vpTRACE("ViSP doesn't have Ogre3D, simple visibility test used");
#endif
}
for (unsigned int i = 0; i < Lpol.size(); i += 1){
Lpol[i]->changeFrame(cMo);
Lpol[i]->isappearing = false;
if(Lpol[i]->isVisible())
{
bool testDisappear = false;
unsigned int nbCornerInsidePrev = 0;
if(testRoi){
nbCornerInsidePrev = Lpol[i]->getNbCornerInsidePrevImage();
if(Lpol[i]->getNbCornerInsideImage(I, cam) == 0)
testDisappear = true;
}
if(!testDisappear){
if(useOgre)
#ifdef VISP_HAVE_OGRE
testDisappear = ((!Lpol[i]->isVisible(cMo, angleDisappears, true)) || !isVisibleOgre(cameraPos,i));
#else
testDisappear = (!Lpol[i]->isVisible(cMo, angleDisappears));
#endif
else
testDisappear = (!Lpol[i]->isVisible(cMo, angleDisappears));
}
// test if the face is still visible
if(testDisappear){
// std::cout << "Face " << i << " disappears" << std::endl;
changed = true;
Lpol[i]->isvisible = false;
}
else {
nbVisiblePolygon++;
Lpol[i]->isvisible = true;
if(nbCornerInsidePrev > Lpol[i]->getNbCornerInsidePrevImage())
changed = true;
}
}
else
{
bool testAppear = true;
if(testRoi && Lpol[i]->getNbCornerInsideImage(I, cam) == 0)
testAppear = false;
if(testAppear){
if(useOgre)
#ifdef VISP_HAVE_OGRE
testAppear = ((Lpol[i]->isVisible(cMo, angleAppears, true)) && isVisibleOgre(cameraPos,i));
#else
testAppear = (Lpol[i]->isVisible(cMo, angleAppears));
#endif
else
testAppear = (Lpol[i]->isVisible(cMo, angleAppears));
}
if(testAppear){
// std::cout << "Face " << i << " appears" << std::endl;
Lpol[i]->isvisible = true;
changed = true;
nbVisiblePolygon++;
}
else
Lpol[i]->isvisible = false;
}
}
// std::cout << "Nombre de polygones visibles: " << nbVisiblePolygon << std::endl;
return nbVisiblePolygon;
}
/*!
Compute the number of visible polygons.
\param I : Image used to check if the region of interest is inside the image.
\param cam : Camera parameters.
\param cMo : The pose of the camera.
\param angle : Angle used to test the appearance and disappearance of a face.
\param changed : True if a face appeared, disappeared or too many points have been lost. False otherwise
\return Return the number of visible polygons
*/
template<class PolygonType>
unsigned int
vpMbHiddenFaces<PolygonType>::setVisible(const vpImage<unsigned char>& I, const vpCameraParameters &cam, const vpHomogeneousMatrix &cMo, const double &angle, bool &changed)
{
return setVisible(I, cam, cMo, angle, angle, changed);
}
/*!
Compute the number of visible polygons.
\param I : Image used to check if the region of interest is inside the image.
\param cam : Camera parameters.
\param cMo : The pose of the camera
\param changed : True if a face appeared, disappeared or too many points have been lost. False otherwise
\param angleAppears : Angle used to test the appearance of a face
\param angleDisappears : Angle used to test the disappearance of a face
\return Return the number of visible polygons
*/
template<class PolygonType>
unsigned int
vpMbHiddenFaces<PolygonType>::setVisible(const vpImage<unsigned char>& I, const vpCameraParameters &cam, const vpHomogeneousMatrix &cMo, const double &angleAppears, const double &angleDisappears, bool &changed)
{
return setVisiblePrivate(cMo,angleAppears,angleDisappears,changed,false,true,I,cam);
}
/*!
Compute the number of visible polygons.
\param cMo : The pose of the camera
\param angleAppears : Angle used to test the appearance of a face
\param angleDisappears : Angle used to test the disappearance of a face
\param changed : True if a face appeared, disappeared or too many points have been lost. False otherwise
\return Return the number of visible polygons
*/
template<class PolygonType>
unsigned int
vpMbHiddenFaces<PolygonType>::setVisible(const vpHomogeneousMatrix &cMo, const double &angleAppears, const double &angleDisappears, bool &changed)
{
return setVisiblePrivate(cMo,angleAppears,angleDisappears,changed,false);
}
#ifdef VISP_HAVE_OGRE
/*!
Initialise the ogre context for face visibility tests.
\param cam : Camera parameters.
*/
template<class PolygonType>
void
vpMbHiddenFaces<PolygonType>::initOgre(const vpCameraParameters &cam)
{
ogreInitialised = true;
ogre->setCameraParameters(cam);
ogre->init(ogreBackground, false, true);
for(unsigned int n = 0 ; n < Lpol.size(); n++){
Ogre::ManualObject* manual = ogre->getSceneManager()->createManualObject(Ogre::StringConverter::toString(n));
manual->begin("BaseWhiteNoLighting", Ogre::RenderOperation::OT_LINE_STRIP);
for(unsigned int i = 0; i < Lpol[n]->nbpt; i++){
manual->position( (Ogre::Real)Lpol[n]->p[i].get_oX(), (Ogre::Real)Lpol[n]->p[i].get_oY(), (Ogre::Real)Lpol[n]->p[i].get_oZ());
manual->colour(1.0, 1.0, 1.0);
manual->index(i);
}
manual->index(0);
manual->end();
ogre->getSceneManager()->getRootSceneNode()->createChildSceneNode()->attachObject(manual);
lOgrePolygons.push_back(manual);
}
}
/*!
Update the display in Ogre Window.
\param cMo : Pose used to display.
*/
template<class PolygonType>
void
vpMbHiddenFaces<PolygonType>::displayOgre(const vpHomogeneousMatrix &cMo)
{
if(ogreInitialised && !ogre->isWindowHidden()){
for(unsigned int i = 0 ; i < Lpol.size() ; i++){
if(Lpol[i]->isVisible()){
lOgrePolygons[i]->setVisible(true);
}
else
lOgrePolygons[i]->setVisible(false);
}
ogre->display(ogreBackground, cMo);
}
}
/*!
Compute the number of visible polygons through Ogre3D.
\param I : Image used to check if the region of interest is inside the image.
\param cam : Camera parameters.
\param cMo : The pose of the camera
\param changed : True if a face appeared, disappeared or too many points have been lost. False otherwise
\param angleAppears : Angle used to test the appearance of a face
\param angleDisappears : Angle used to test the disappearance of a face
\return Return the number of visible polygons
*/
template<class PolygonType>
unsigned int
vpMbHiddenFaces<PolygonType>::setVisibleOgre(const vpImage<unsigned char>& I, const vpCameraParameters &cam, const vpHomogeneousMatrix &cMo, const double &angleAppears, const double &angleDisappears, bool &changed)
{
return setVisiblePrivate(cMo,angleAppears,angleDisappears,changed,true,true,I,cam);
}
/*!
Compute the number of visible polygons through Ogre3D.
\param cMo : The pose of the camera
\param angleAppears : Angle used to test the appearance of a face
\param angleDisappears : Angle used to test the disappearance of a face
\param changed : True if a face appeared, disappeared or too many points have been lost. False otherwise
\return Return the number of visible polygons
*/
template<class PolygonType>
unsigned int
vpMbHiddenFaces<PolygonType>::setVisibleOgre(const vpHomogeneousMatrix &cMo, const double &angleAppears, const double &angleDisappears, bool &changed)
{
return setVisiblePrivate(cMo,angleAppears,angleDisappears,changed,true);
}
/*!
Test the visibility of a polygon through Ogre3D via RayCasting.
\param cameraPos : Position of the camera in the 3D world.
\param index : Index of the polygon.
\return Return true if the polygon is visible, False otherwise.
*/
template<class PolygonType>
bool
vpMbHiddenFaces<PolygonType>::isVisibleOgre(const vpTranslationVector &cameraPos, const unsigned int &index)
{
// std::cout << "visible" << std::endl;
// A line is always visible
if(Lpol[index]->getNbPoint() <= 2){
lOgrePolygons[index]->setVisible(true);
Lpol[index]->isvisible = true;
return true;
}
Ogre::Vector3 camera((Ogre::Real)cameraPos[0],(Ogre::Real)cameraPos[1],(Ogre::Real)cameraPos[2]);
if(!ogre->getCamera()->isVisible(lOgrePolygons[index]->getBoundingBox())){
lOgrePolygons[index]->setVisible(false);
Lpol[index]->isvisible = false;
return false;
}
//Get the center of gravity
Ogre::Vector3 origin(0,0,0);
for(unsigned int j = 0 ; j < Lpol[index]->getNbPoint() ; j++){
Ogre::Vector3 tmp((Ogre::Real)Lpol[index]->getPoint(j).get_oX(), (Ogre::Real)Lpol[index]->getPoint(j).get_oY(), (Ogre::Real)Lpol[index]->getPoint(j).get_oZ());
origin += tmp;
}
origin /= (Ogre::Real)Lpol[index]->getNbPoint();
Ogre::Vector3 direction = origin - camera;
Ogre::RaySceneQuery *mRaySceneQuery = ogre->getSceneManager()->createRayQuery(Ogre::Ray(camera, direction));
mRaySceneQuery->setSortByDistance(true);
Ogre::RaySceneQueryResult &result = mRaySceneQuery->execute();
Ogre::RaySceneQueryResult::iterator it = result.begin();
bool visible = false;
double distance, distancePrev;
if(it != result.end()){
if(it->movable->getName().find("SimpleRenderable") != Ogre::String::npos) //Test if the ogreBackground is intersect in first
it++;
if(it != result.end()){
distance = it->distance;
distancePrev = distance;
if(it->movable->getName() == Ogre::StringConverter::toString(index)){
visible = true;
}
else{
it++;
while(!visible && it != result.end()){
distance = it->distance;
//if(distance == distancePrev){
if(std::fabs(distance - distancePrev) < distance * std::numeric_limits<double>::epsilon()){
if(it->movable->getName() == Ogre::StringConverter::toString(index)){
visible = true;
break;
}
it++;
distancePrev = distance;
}
else
break;
}
}
}
}
if(visible){
lOgrePolygons[index]->setVisible(true);
Lpol[index]->isvisible = true;
}
else{
lOgrePolygons[index]->setVisible(false);
Lpol[index]->isvisible = false;
}
ogre->getSceneManager()->destroyQuery(mRaySceneQuery);
return Lpol[index]->isvisible;
}
#endif //VISP_HAVE_OGRE
#ifdef VISP_BUILD_DEPRECATED_FUNCTIONS
/*!
\deprecated This method is deprecated since it is no more used since ViSP 2.7.2. \n
Compute the number of visible polygons.
\param cMo : The pose of the camera
\return Return the number of visible polygons
*/
template<class PolygonType>
unsigned int
vpMbHiddenFaces<PolygonType>::setVisible(const vpHomogeneousMatrix &cMo)
{
nbVisiblePolygon = 0 ;
for(unsigned int i = 0 ; i < Lpol.size() ; i++){
if (Lpol[i]->isVisible(cMo, depthTest)){
nbVisiblePolygon++;
}
}
return nbVisiblePolygon ;
}
#endif //VISP_BUILD_DEPRECATED_FUNCTIONS
#endif // vpMbHiddenFaces
|