/usr/include/visp/vpBasicKeyPoint.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 | /****************************************************************************
*
* $Id: vpBasicKeyPoint.h 4574 2014-01-09 08:48:51Z 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:
* Key point used in matching algorithm.
*
* Authors:
* Nicolas Melchior
*
*****************************************************************************/
#ifndef vpBasicKeyPoint_H
#define vpBasicKeyPoint_H
/*!
\file vpBasicKeyPoint.h
\brief class that defines what is a Keypoint
*/
#include <visp/vpColor.h>
#include <visp/vpImage.h>
#include <visp/vpImagePoint.h>
#include <visp/vpRect.h>
#include <vector>
/*!
\class vpBasicKeyPoint
\brief class that defines what is a Keypoint. This class provides
all the basic elements to implement classes which aims to match
points from an image to another.
*/
class VISP_EXPORT vpBasicKeyPoint
{
public:
vpBasicKeyPoint();
virtual ~vpBasicKeyPoint() {
matchedReferencePoints.resize(0);
currentImagePointsList.resize(0);
referenceImagePointsList.resize(0);
};
virtual unsigned int buildReference(const vpImage<unsigned char> &I) =0;
virtual unsigned int buildReference(const vpImage<unsigned char> &I,
const vpImagePoint &iP,
const unsigned int height, const unsigned int width) =0;
virtual unsigned int buildReference(const vpImage<unsigned char> &I,
const vpRect& rectangle) =0;
virtual unsigned int matchPoint(const vpImage<unsigned char> &I) =0;
virtual unsigned int matchPoint(const vpImage<unsigned char> &I,
const vpImagePoint &iP,
const unsigned int height, const unsigned int width) =0;
virtual unsigned int matchPoint(const vpImage<unsigned char> &I,
const vpRect& rectangle) =0;
virtual void display(const vpImage<unsigned char> &Iref,
const vpImage<unsigned char> &Icurrent, unsigned int size=3) =0;
virtual void display(const vpImage<unsigned char> &Icurrent, unsigned int size=3,
const vpColor &color=vpColor::green) =0;
/*!
Indicate wether the reference has been built or not.
\return True if the reference of the current instance has been built.
*/
bool referenceBuilt() const {return _reference_computed;}
/*!
Get the pointer to the complete list of reference points. The pointer is const. Thus the points can not be modified
\return The pointer to the complete list of reference points.
*/
inline const vpImagePoint* getAllPointsInReferenceImage() {
return &referenceImagePointsList[0];
} ;
/*!
Get the nth reference point. This point is copied in the vpImagePoint instance given in argument.
\param index : The index of the desired reference point. The index must be between 0 and the number of reference points - 1.
\param referencePoint : The coordinates of the desired reference point are copied there.
*/
inline void getReferencePoint (const unsigned int index, vpImagePoint &referencePoint )
{
if (index >= referenceImagePointsList.size())
{
vpTRACE("Index of the reference point out of range");
throw(vpException(vpException::fatalError,"Index of the reference point out of range"));
}
referencePoint.set_ij(referenceImagePointsList[index].get_i(), referenceImagePointsList[index].get_j());
}
/*!
Get the nth couple of reference point and current point which have been matched. These points are copied in the vpImagePoint instances given in argument.
\param index : The index of the desired couple of reference point and current point . The index must be between 0 and the number of matched points - 1.
\param referencePoint : The coordinates of the desired reference point are copied here.
\param currentPoint : The coordinates of the desired current point are copied here.
*/
inline void getMatchedPoints(const unsigned int index, vpImagePoint &referencePoint, vpImagePoint ¤tPoint) {
if (index >= matchedReferencePoints.size())
{
vpTRACE("Index of the matched points out of range");
throw(vpException(vpException::fatalError,"Index of the matched points out of range"));
}
referencePoint.set_ij(referenceImagePointsList[matchedReferencePoints[index]].get_i(),referenceImagePointsList[matchedReferencePoints[index]].get_j());
currentPoint.set_ij(currentImagePointsList[index].get_i(), currentImagePointsList[index].get_j());
};
/*!
Get the nth matched reference point index in the complete list of reference point.
In the code below referencePoint1 and referencePoint2 correspond to the same matched reference point.
\code
vpKeyPointSurf surf;
//Here the code to compute the reference points and the current points.
vpImagePoint referencePoint1;
vpImagePoint currentPoint;
surf.getMatchedPoints(1, referencePoint1, currentPoint); //Get the first matched points
vpImagePoint referencePoint2;
const vpImagePoint* referencePointsList = surf.getAllPointsInReferenceImage();
int index = surf.getIndexInAllReferencePointList(1); //Get the first matched reference point index in the complete reference point list
referencePoint2 = referencePointsList[index]; //Get the first matched reference point
\endcode
*/
inline unsigned int getIndexInAllReferencePointList ( const unsigned int indexInMatchedPointList ) {
if (indexInMatchedPointList >= matchedReferencePoints.size())
{
vpTRACE("Index of the matched reference point out of range");
throw(vpException(vpException::fatalError,"Index of the matched reference point out of range"));
}
return matchedReferencePoints[indexInMatchedPointList];
}
/*!
Get the number of reference points.
\return the number of reference points.
*/
inline unsigned int getReferencePointNumber() const {return (unsigned int)referenceImagePointsList.size();};
/*!
Get the number of matched points.
\return the number of matched points.
*/
inline unsigned int getMatchedPointNumber() const {return (unsigned int)matchedReferencePoints.size();};
/*!
Return the vector of reference image point.
\warning Should not be modified.
\return Vector of reference image point.
*/
const std::vector<vpImagePoint>& getReferenceImagePointsList() const {return referenceImagePointsList;}
/*!
Return the vector of current image point.
\warning Should not be modified.
\return Vector of the current image point.
*/
const std::vector<vpImagePoint>& getCurrentImagePointsList() const {return currentImagePointsList;}
/*!
Return the index of the matched associated to the current image point i.
The ith element of the vector is the index of the reference image point
matching with the current image point.
\warning Should not be modified.
\return The vector of matching index.
*/
const std::vector<unsigned int>& getMatchedReferencePoints() const {return matchedReferencePoints;}
private:
virtual void init()=0;
protected:
/*!
List of the points which define the reference.
*/
std::vector<vpImagePoint> referenceImagePointsList;
/*!
List of the points which belong to the current image and have
been matched with points belonging to the reference.
*/
std::vector<vpImagePoint> currentImagePointsList;
/*!
Array containing the index in the array "referenceImagePointsList" of the reference points which have been matched.
The first element of the "currentImagePointsList" array is matched with the nth element of the "referenceImagePointsList" array.
The value of n is stored in the first element of the "matchedReferencePoints" array.
*/
std::vector<unsigned int> matchedReferencePoints;
//! flag to indicate if the reference has been built.
bool _reference_computed;
};
#endif
/*
* Local variables:
* c-basic-offset: 2
* End:
*/
|