/usr/include/visp/vpMomentGravityCenter.h is in libvisp-dev 2.8.0-4.
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 | /****************************************************************************
*
* $Id: vpMomentGravityCenter.h 4220 2013-04-17 10:03:36Z mbakthav $
*
* This file is part of the ViSP software.
* Copyright (C) 2005 - 2013 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:
* 2D Gravity Center moment descriptor (usually described by the pair Xg,Yg)
*
* Authors:
* Filip Novotny
*
*****************************************************************************/
/*!
\file vpMomentGravityCenter.h
\brief 2D Gravity Center moment descriptor (usually described by the pair Xg,Yg).
*/
#ifndef __MOMENTGRAVITYCENTER_H__
#define __MOMENTGRAVITYCENTER_H__
#include <visp/vpMoment.h>
#include <visp/vpMomentDatabase.h>
class vpMomentObject;
/*!
\class vpMomentGravityCenter
\ingroup TrackingMoments
\brief Class describing 2D gravity center moment.
This moment can be computed from scratch (no need to compute any different moments before computing this).
It gives access to both coordinates of the gravity center \f$x_g\f$ and \f$y_g\f$.
These coordinates are defined as follows: \f$x_g = \frac{m_{01}}{m_{00}} \f$,\f$y_g = \frac{m_{10}}{m_{00}} \f$
\code
#include <visp/vpMomentObject.h>
#include <visp/vpPoint.h>
#include <visp/vpMomentGravityCenter.h>
#include <iostream>
int main()
{
// Define the contour of an object by a 5 clockwise vertices on a plane
vpPoint p;
std::vector<vpPoint> vec_p; // vector that contains the vertices of the contour polygon
p.set_x(-0.2); p.set_y(0.1); // coordinates in meters in the image plane (vertex 1)
vec_p.push_back(p);
p.set_x(+0.3); p.set_y(0.1); // coordinates in meters in the image plane (vertex 2)
vec_p.push_back(p);
p.set_x(+0.2); p.set_y(-0.1); // coordinates in meters in the image plane (vertex 3)
vec_p.push_back(p);
p.set_x(-0.2); p.set_y(-0.15); // coordinates in meters in the image plane (vertex 4)
vec_p.push_back(p);
p.set_x(-0.2); p.set_y(0.1); // close the contour (vertex 5 = vertex 1)
vec_p.push_back(p);
vpMomentObject obj(1); // Create an image moment object with 1 as
// maximum order (because only m00,m01,m10
// are needed to compute the gravity center primitive.
obj.setType(vpMomentObject::DENSE_POLYGON); // The object is defined by a countour polygon
obj.fromVector(vec_p); // Init the dense object with the polygon
vpMomentGravityCenter g; // declaration of gravity center
g.update(obj); // specify the object
g.compute(); // compute the moment
std::cout << "Xg=" << g.getXg() << std::endl; // access to Xg
std::cout << "Yg=" << g.getYg() << std::endl; // access to Yg
std::cout << g << std:: endl; // print gravity center
return 0;
}
\endcode
This example produces the following results:
\code
Xg=0.0166667
Yg=-0.00833333
Xg=0.0166667, Yg=-0.00833333
\endcode
*/
class VISP_EXPORT vpMomentGravityCenter : public vpMoment {
public:
vpMomentGravityCenter();
void compute();
std::vector<double>& get();
/*!
Shortcut function to retrieve \f$x_g\f$.
\return The first gravity center coordinate.
*/
double getXg() const { return values[0]; }
/*!
Shortcut function to retrieve \f$y_g\f$.
\return The second gravity center coordinate.
*/
double getYg() const { return values[1]; }
/*!
The class's string name.
*/
const char* name(){return "vpMomentGravityCenter";}
friend VISP_EXPORT std::ostream & operator<<(std::ostream & os, const vpMomentGravityCenter& v);
};
#endif
|