/usr/include/pcl-1.7/pcl/recognition/hypothesis.h is in libpcl-dev 1.7.2-14build1.
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 | /*
* Software License Agreement (BSD License)
*
* Point Cloud Library (PCL) - www.pointclouds.org
* Copyright (c) 2010-2012, Willow Garage, Inc.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions 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.
* * Neither the name of Willow Garage, Inc. nor the names of its
* contributors may 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
* COPYRIGHT OWNER 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.
*
*
*/
/*
* hypothesis.h
*
* Created on: Mar 12, 2013
* Author: papazov
*/
#ifndef PCL_RECOGNITION_HYPOTHESIS_H_
#define PCL_RECOGNITION_HYPOTHESIS_H_
#include <pcl/recognition/ransac_based/model_library.h>
#include <pcl/recognition/ransac_based/auxiliary.h>
namespace pcl
{
namespace recognition
{
class HypothesisBase
{
public:
HypothesisBase (const ModelLibrary::Model* obj_model)
: obj_model_ (obj_model)
{}
HypothesisBase (const ModelLibrary::Model* obj_model, const float* rigid_transform)
: obj_model_ (obj_model)
{
memcpy (rigid_transform_, rigid_transform, 12*sizeof (float));
}
virtual ~HypothesisBase (){}
void
setModel (const ModelLibrary::Model* model)
{
obj_model_ = model;
}
public:
float rigid_transform_[12];
const ModelLibrary::Model* obj_model_;
};
class Hypothesis: public HypothesisBase
{
public:
Hypothesis (const ModelLibrary::Model* obj_model = NULL)
: HypothesisBase (obj_model),
match_confidence_ (-1.0f),
linear_id_ (-1)
{
}
Hypothesis (const Hypothesis& src)
: HypothesisBase (src.obj_model_, src.rigid_transform_),
match_confidence_ (src.match_confidence_),
explained_pixels_ (src.explained_pixels_)
{
}
virtual ~Hypothesis (){}
const Hypothesis&
operator =(const Hypothesis& src)
{
memcpy (this->rigid_transform_, src.rigid_transform_, 12*sizeof (float));
this->obj_model_ = src.obj_model_;
this->match_confidence_ = src.match_confidence_;
this->explained_pixels_ = src.explained_pixels_;
return *this;
}
void
setLinearId (int id)
{
linear_id_ = id;
}
int
getLinearId () const
{
return (linear_id_);
}
void
computeBounds (float bounds[6]) const
{
const float *b = obj_model_->getBoundsOfOctreePoints ();
float p[3];
// Initialize 'bounds'
aux::transform (rigid_transform_, b[0], b[2], b[4], p);
bounds[0] = bounds[1] = p[0];
bounds[2] = bounds[3] = p[1];
bounds[4] = bounds[5] = p[2];
// Expand 'bounds' to contain the other 7 points of the octree bounding box
aux::transform (rigid_transform_, b[0], b[2], b[5], p); aux::expandBoundingBoxToContainPoint (bounds, p);
aux::transform (rigid_transform_, b[0], b[3], b[4], p); aux::expandBoundingBoxToContainPoint (bounds, p);
aux::transform (rigid_transform_, b[0], b[3], b[5], p); aux::expandBoundingBoxToContainPoint (bounds, p);
aux::transform (rigid_transform_, b[1], b[2], b[4], p); aux::expandBoundingBoxToContainPoint (bounds, p);
aux::transform (rigid_transform_, b[1], b[2], b[5], p); aux::expandBoundingBoxToContainPoint (bounds, p);
aux::transform (rigid_transform_, b[1], b[3], b[4], p); aux::expandBoundingBoxToContainPoint (bounds, p);
aux::transform (rigid_transform_, b[1], b[3], b[5], p); aux::expandBoundingBoxToContainPoint (bounds, p);
}
void
computeCenterOfMass (float center_of_mass[3]) const
{
aux::transform (rigid_transform_, obj_model_->getOctreeCenterOfMass (), center_of_mass);
}
public:
float match_confidence_;
std::set<int> explained_pixels_;
int linear_id_;
};
} // namespace recognition
} // namespace pcl
#endif /* PCL_RECOGNITION_HYPOTHESIS_H_ */
|