/usr/include/OTB-5.8/otbLabeledSampleLocalizationGenerator.txx is in libotb-dev 5.8.0+dfsg-3.
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 | /*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef otbLabeledSampleLocalizationGenerator_txx
#define otbLabeledSampleLocalizationGenerator_txx
#include "otbLabeledSampleLocalizationGenerator.h"
#include "otbMath.h"
namespace otb
{
template<class TVectorData>
LabeledSampleLocalizationGenerator<TVectorData>
::LabeledSampleLocalizationGenerator() :
m_ClassKey("Class"),
m_NoClassIdentifier(0),
m_RandomLocalizationDensity(.005),
m_InhibitionRadius(5.0),
m_NbMaxIteration(10000),
m_NumberOfPositiveSamplesPerPoint(50),
m_CurrentID(0)
{
this->SetNumberOfRequiredInputs(1);
this->SetNumberOfRequiredOutputs(1);
m_RandomGenerator = RandomGeneratorType::GetInstance();
}
template <class TVectorData>
void
LabeledSampleLocalizationGenerator<TVectorData>
::PrintSelf(std::ostream& os, itk::Indent indent) const
{
this->Superclass::PrintSelf(os, indent);
os << indent << "Class Key: " << m_ClassKey << std::endl;
os << indent << "Negative Class Identifier: " << m_NoClassIdentifier << std::endl;
os << indent << "Sampling Density: " << m_RandomLocalizationDensity << std::endl;
os << indent << "Inhibition Radius: " << m_InhibitionRadius << std::endl;
}
template <class TVectorData>
void
LabeledSampleLocalizationGenerator<TVectorData>
::PushBackInput(const VectorDataType * vectorData)
{
this->Superclass::SetNthInput(this->GetNumberOfIndexedInputs(), const_cast<VectorDataType *>(vectorData));
}
template <class TVectorData>
const TVectorData *
LabeledSampleLocalizationGenerator<TVectorData>
::GetInput(unsigned int idx) const
{
if (this->GetNumberOfInputs() < idx)
{
return ITK_NULLPTR;
}
return static_cast<const VectorDataType *>(this->Superclass::GetInput(idx));
}
template <class TVectorData>
typename LabeledSampleLocalizationGenerator<TVectorData>
::PointVectorType
LabeledSampleLocalizationGenerator<TVectorData>
::PointDensification(DataNodeType * node)
{
PointVectorType pPoint;
PointType centerPoint = node->GetPoint();
for(unsigned int i = 0; i < m_NumberOfPositiveSamplesPerPoint; ++i)
{
PointType point;
for(unsigned int dim = 0; dim < 2; ++dim)
{
point[dim] = centerPoint[dim]+this->m_RandomGenerator->GetUniformVariate(-m_InhibitionRadius, m_InhibitionRadius);
}
pPoint.push_back(point);
}
return pPoint;
}
template <class TVectorData>
typename LabeledSampleLocalizationGenerator<TVectorData>
::PointVectorType
LabeledSampleLocalizationGenerator<TVectorData>
::RandomPointsGenerator(DataNodeType * node)
{
// Output
PointVectorType vPoint;
// Euclidean distance
typename EuclideanDistanceMetricType::Pointer euclideanDistanceMetric = EuclideanDistanceMetricType::New();
// Gathering Information
RegionType generatorRegion = node->GetPolygonExteriorRing()->GetBoundingRegion();
typename RegionType::SizeType generatorRegionSize = generatorRegion.GetSize();
typename RegionType::IndexType generatorRegionIndex = generatorRegion.GetIndex();
//typename RegionType::IndexType generatorRegionOrigin = generatorRegion.GetOrigin();
// Identify inside known points
std::vector<PointType> insiders;
typename VectorDataType::ConstPointer vectorData = static_cast<const VectorDataType *>(this->GetOutput(0));
TreeIteratorType itVector(vectorData->GetDataTree());
itVector.GoToBegin();
while (!itVector.IsAtEnd())
{
if (itVector.Get()->IsPointFeature() && itVector.Get()->GetFieldAsInt(m_ClassKey) != m_NoClassIdentifier)
{
VertexType vertex;
vertex[0] = itVector.Get()->GetPoint()[0];
vertex[1] = itVector.Get()->GetPoint()[1];
if(node->GetPolygonExteriorRing()->IsInside(vertex))
{
insiders.push_back(itVector.Get()->GetPoint());
}
}
++itVector;
}
// Generation
unsigned int nbMaxPosition = (unsigned int)(node->GetPolygonExteriorRing()->GetArea()
* this->GetRandomLocalizationDensity());
unsigned long int nbIter = this->GetNbMaxIteration();
unsigned int nbPosition = nbMaxPosition;
PointType rangeMin, rangeMax;
for(unsigned int dim = 0; dim < 2; ++dim)
{
rangeMin[dim] = generatorRegionIndex[dim];
rangeMax[dim] = generatorRegionIndex[dim] + generatorRegionSize[dim];
}
while(nbIter > 0 && nbPosition > 0)
{
VertexType candidate;
for(unsigned int dim = 0; dim < 2; ++dim)
{
candidate[dim] = this->m_RandomGenerator->GetUniformVariate(rangeMin[dim], rangeMax[dim]);
}
if(node->GetPolygonExteriorRing()->IsInside(candidate))
{
typename PointVectorType::const_iterator pit = insiders.begin();
bool valid = true;
while(valid && pit!=insiders.end())
{
valid = (euclideanDistanceMetric->Evaluate(candidate, *pit) > this->GetInhibitionRadius());
++pit;
}
PointType point;
point[0] = candidate[0];
point[1] = candidate[1];
if(valid)
{
vPoint.push_back(point);
}
nbPosition --;
}
nbIter --;
}
return vPoint;
}
template <class TVectorData>
void
LabeledSampleLocalizationGenerator<TVectorData>
::GenerateData()
{
unsigned int nbInputs = this->GetNumberOfInputs();
this->GetOutput(0)->SetMetaDataDictionary(this->GetInput(0)->GetMetaDataDictionary());
// Retrieving root node
typename DataNodeType::Pointer root = this->GetOutput(0)->GetDataTree()->GetRoot()->Get();
// Create the document node
typename DataNodeType::Pointer document = DataNodeType::New();
document->SetNodeType(otb::DOCUMENT);
// Adding the layer to the data tree
this->GetOutput(0)->GetDataTree()->Add(document, root);
std::string positiveClassIdentifier;
bool firstFeature = true;
// Copy all point feature in output VectorData
for (unsigned int i=0; i<nbInputs; ++i)
{
typename VectorDataType::ConstPointer vectorData = static_cast<const VectorDataType *>(this->GetInput(i));
TreeIteratorType itVector(vectorData->GetDataTree());
itVector.GoToBegin();
while (!itVector.IsAtEnd())
{
if (itVector.Get()->IsPointFeature())
{
//Get the value of the positive value of
if (firstFeature)
{
positiveClassIdentifier = itVector.Get()->GetFieldAsString(m_ClassKey);
firstFeature = false;
}
// Duplicate input feature
typename DataNodeType::Pointer currentGeometry = DataNodeType::New();
currentGeometry->SetNodeId(this->GetNextID());
currentGeometry->SetNodeType(otb::FEATURE_POINT);
currentGeometry->SetPoint(itVector.Get()->GetPoint());
std::vector<std::string> fields = itVector.Get()->GetFieldList();
for (std::vector<std::string>::const_iterator it = fields.begin(); it != fields.end(); ++it)
{
currentGeometry->SetFieldAsString( *it, itVector.Get()->GetFieldAsString(*it) );
// The PositiveClass identifier must be an attribute of the class
}
this->GetOutput(0)->GetDataTree()->Add(currentGeometry, document);
}
++itVector;
}
}
// Iterates through the polygon features and generates random point inside the polygon with
// the "NoClass" identifier
for (unsigned int i=0; i<nbInputs; ++i)
{
typename VectorDataType::ConstPointer vectorData = static_cast<const VectorDataType *>(this->GetInput(i));
TreeIteratorType itVector(vectorData->GetDataTree());
itVector.GoToBegin();
while (!itVector.IsAtEnd())
{
if (itVector.Get()->IsPolygonFeature())
{
PointVectorType vPoints = RandomPointsGenerator(itVector.Get());
for (typename PointVectorType::const_iterator it = vPoints.begin(); it != vPoints.end(); ++it)
{
typename DataNodeType::Pointer currentGeometry = DataNodeType::New();
currentGeometry->SetNodeId(this->GetNextID());
currentGeometry->SetNodeType(otb::FEATURE_POINT);
currentGeometry->SetPoint(*it);
currentGeometry->SetFieldAsInt(this->GetClassKey(), this->GetNoClassIdentifier());
this->GetOutput(0)->GetDataTree()->Add(currentGeometry, document);
}
}
++itVector;
}
}
// Densify positive points
for (unsigned int i=0; i<nbInputs; ++i)
{
typename VectorDataType::ConstPointer vectorData = static_cast<const VectorDataType *>(this->GetInput(i));
TreeIteratorType itVector(vectorData->GetDataTree());
itVector.GoToBegin();
while (!itVector.IsAtEnd())
{
if (itVector.Get()->IsPointFeature())
{
PointVectorType pPoints = PointDensification(itVector.Get());
for (typename PointVectorType::const_iterator it = pPoints.begin(); it != pPoints.end(); ++it)
{
typename DataNodeType::Pointer currentGeometry = DataNodeType::New();
currentGeometry->SetNodeId(this->GetNextID());
currentGeometry->SetNodeType(otb::FEATURE_POINT);
currentGeometry->SetPoint(*it);
currentGeometry->SetFieldAsInt(this->GetClassKey(), atoi(positiveClassIdentifier.c_str()) );
this->GetOutput(0)->GetDataTree()->Add(currentGeometry, document);
}
}
++itVector;
}
}
}
} // end namespace otb
#endif
|