/usr/include/OTB-5.8/otbVectorDataExtractROI.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 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 | /*=========================================================================
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 otbVectorDataExtractROI_txx
#define otbVectorDataExtractROI_txx
#include "otbVectorDataExtractROI.h"
#include "otbGenericMapProjection.h"
#include "itkIdentityTransform.h"
#include "otbGenericRSTransform.h"
#include "otbObjectList.h"
#include "otbMacro.h"
#include "itkProgressReporter.h"
#include "itkTimeProbe.h"
namespace otb
{
/**
*
*/
template <class TVectorData>
VectorDataExtractROI<TVectorData>
::VectorDataExtractROI() :
m_ProjectionNeeded(false),
m_ROI(),
m_Kept(0)
{
}
/**
*
*/
template <class TVectorData>
void
VectorDataExtractROI<TVectorData>
::PrintSelf(std::ostream& os, itk::Indent indent) const
{
Superclass::PrintSelf(os, indent);
}
/**
*
*/
template <class TVectorData>
void
VectorDataExtractROI<TVectorData>
::GenerateData(void)
{
this->AllocateOutputs();
typename VectorDataType::ConstPointer inputPtr = this->GetInput();
typename VectorDataType::Pointer outputPtr = this->GetOutput();
// Find out the projection needed
if (!inputPtr->GetProjectionRef().empty()) outputPtr->SetProjectionRef(inputPtr->GetProjectionRef());
/** Need to check if it is necessary to project the roi*/
this->CompareInputAndRegionProjection();
/** If Projection of the region is needed, we project on the vectorData coordinate axis*/
if (m_ProjectionNeeded)
{
otbMsgDevMacro(<< "Reprojecting region in vector data projection");
this->ProjectRegionToInputVectorProjection();
}
else
{
otbMsgDevMacro(<< "Region and vector data projection are similar");
m_GeoROI = m_ROI;
}
otbMsgDevMacro(<< "ROI: " << this->m_ROI);
otbMsgDevMacro(<< "GeoROI: " << this->m_GeoROI);
// Retrieve the output tree
typename VectorDataType::DataTreePointerType tree = outputPtr->GetDataTree();
// Get the input tree root
InternalTreeNodeType * inputRoot = const_cast<InternalTreeNodeType *>(inputPtr->GetDataTree()->GetRoot());
// Create the output tree root
DataNodePointerType newDataNode = DataNodeType::New();
newDataNode->SetNodeType(inputRoot->Get()->GetNodeType());
newDataNode->SetNodeId(inputRoot->Get()->GetNodeId());
typename InternalTreeNodeType::Pointer outputRoot = InternalTreeNodeType::New();
outputRoot->Set(newDataNode);
tree->SetRoot(outputRoot);
m_Kept = 0;
// Start recursive processing
itk::TimeProbe chrono;
chrono.Start();
ProcessNode(inputRoot, outputRoot);
chrono.Stop();
otbMsgDevMacro(
<< "VectorDataExtractROI: " << m_Kept << " Features processed in " << chrono.GetMean() << " seconds.");
} /*End GenerateData()*/
template <class TVectorData>
void
VectorDataExtractROI<TVectorData>
::ProcessNode(InternalTreeNodeType * source, InternalTreeNodeType * destination)
{
// Get the children list from the input node
ChildrenListType children = source->GetChildrenList();
// For each child
for (typename ChildrenListType::iterator it = children.begin(); it != children.end(); ++it)
{
typename InternalTreeNodeType::Pointer newContainer;
DataNodePointerType dataNode = (*it)->Get();
DataNodePointerType newDataNode = DataNodeType::New();
newDataNode->SetNodeType(dataNode->GetNodeType());
newDataNode->SetNodeId(dataNode->GetNodeId());
newDataNode->SetMetaDataDictionary(dataNode->GetMetaDataDictionary());
switch (dataNode->GetNodeType())
{
case ROOT:
{
newContainer = InternalTreeNodeType::New();
newContainer->Set(newDataNode);
destination->AddChild(newContainer);
ProcessNode((*it), newContainer);
++m_Kept;
break;
}
case DOCUMENT:
{
newContainer = InternalTreeNodeType::New();
newContainer->Set(newDataNode);
destination->AddChild(newContainer);
++m_Kept;
ProcessNode((*it), newContainer);
break;
}
case FOLDER:
{
newContainer = InternalTreeNodeType::New();
newContainer->Set(newDataNode);
destination->AddChild(newContainer);
++m_Kept;
ProcessNode((*it), newContainer);
break;
}
case FEATURE_POINT:
{
if (m_GeoROI.IsInside(this->PointToContinuousIndex(dataNode->GetPoint())))
{
newDataNode->SetPoint(dataNode->GetPoint());
newContainer = InternalTreeNodeType::New();
newContainer->Set(newDataNode);
destination->AddChild(newContainer);
++m_Kept;
}
break;
}
case FEATURE_LINE:
{
if (this->IsLineIntersectionNotNull(dataNode->GetLine()))
{
newDataNode->SetLine(dataNode->GetLine());
newContainer = InternalTreeNodeType::New();
newContainer->Set(newDataNode);
destination->AddChild(newContainer);
++m_Kept;
}
break;
}
case FEATURE_POLYGON:
{
if (this->IsPolygonIntersectionNotNull(dataNode->GetPolygonExteriorRing()))
{
newDataNode->SetPolygonExteriorRing(dataNode->GetPolygonExteriorRing());
newDataNode->SetPolygonInteriorRings(dataNode->GetPolygonInteriorRings());
newContainer = InternalTreeNodeType::New();
newContainer->Set(newDataNode);
destination->AddChild(newContainer);
++m_Kept;
}
break;
}
case FEATURE_MULTIPOINT:
{
newContainer = InternalTreeNodeType::New();
newContainer->Set(newDataNode);
destination->AddChild(newContainer);
++m_Kept;
ProcessNode((*it), newContainer);
break;
}
case FEATURE_MULTILINE:
{
newContainer = InternalTreeNodeType::New();
newContainer->Set(newDataNode);
destination->AddChild(newContainer);
++m_Kept;
ProcessNode((*it), newContainer);
break;
}
case FEATURE_MULTIPOLYGON:
{
newContainer = InternalTreeNodeType::New();
newContainer->Set(newDataNode);
destination->AddChild(newContainer);
++m_Kept;
ProcessNode((*it), newContainer);
break;
}
case FEATURE_COLLECTION:
{
newContainer = InternalTreeNodeType::New();
newContainer->Set(newDataNode);
destination->AddChild(newContainer);
++m_Kept;
ProcessNode((*it), newContainer);
break;
}
}
}
}
/**
*
*/
template <class TVectorData>
bool
VectorDataExtractROI<TVectorData>
::IsPolygonIntersectionNotNull(PolygonPointerType polygon)
{
// Get the VertexList
// -2 cause we don't want the last point
// which is the same as the first one (closed Ring)
for (unsigned int i = 0; i<polygon->GetVertexList()->Size() - 2; ++i )
{
// Get the components of the polygon 2 by 2
VertexType firstVertex;
VertexType secondVertex;
firstVertex = polygon->GetVertexList()->GetElement(i);
secondVertex = polygon->GetVertexList()->GetElement(i+1);
// Build a line with each two vertex
typename LineType::Pointer line = LineType::New();
line->AddVertex(firstVertex);
line->AddVertex(secondVertex);
if (this->IsLineIntersectionNotNull(line))
return true;
}
return false;
}
/**
*
*/
template <class TVectorData>
bool
VectorDataExtractROI<TVectorData>
::IsLineIntersectionNotNull(LinePointerType line)
{
RegionType lineRegion(line->GetBoundingRegion());
// if the line bounding box have a null
// intersection with the geoROI
// the line and the region do not intersect
if (!lineRegion.Crop(m_GeoROI))
{
return false;
}
else
{
// Get the VertexList
for (unsigned int i = 0; i<line->GetVertexList()->Size() -1; ++i )
{
// Get the components of the line 2 by 2
VertexType firstVertex;
VertexType secondVertex;
firstVertex = line->GetVertexList()->GetElement(i);
secondVertex = line->GetVertexList()->GetElement(i+1);
// -------------------
// Case 1 : Check if one of the two points are in the region
PointType firstPoint, secondPoint;
firstPoint[0] = firstVertex[0];
firstPoint[1] = firstVertex[1];
secondPoint[0] = secondVertex[0];
secondPoint[1] = secondVertex[1];
if (m_GeoROI.IsInside(this->PointToContinuousIndex(firstPoint))
|| m_GeoROI.IsInside(this->PointToContinuousIndex(secondPoint)))
{
return true;
}
else
{
// -------------------
// Case 2 : If any of the point is in the region
if (!m_GeoROI.IsInside(this->PointToContinuousIndex(firstPoint))
&& !m_GeoROI.IsInside(this->PointToContinuousIndex(secondPoint)))
{
// Build a line with each two vertex
typename LineType::Pointer tempLine = LineType::New();
tempLine->AddVertex(firstVertex);
tempLine->AddVertex(secondVertex);
// Check if the intersection is not null
RegionType region(tempLine->GetBoundingRegion());
if (region.Crop(m_GeoROI))
return true;
// -------------------
// TODO : check if the segment cut
// one of the region edges
}
}
}
}
return false;
}
template <class TVectorData>
bool
VectorDataExtractROI<TVectorData>
::IsSegmentIntersectSegment(LinePointerType segmentLineAB, LinePointerType segmentLineCD)
{
PointType vertexA, vertexB, vertexC, vertexD;
vertexA = segmentLineAB->GetVertexList()->GetElement(0);
vertexB = segmentLineAB->GetVertexList()->GetElement(1);
vertexC = segmentLineCD->GetVertexList()->GetElement(0);
vertexD = segmentLineCD->GetVertexList()->GetElement(1);
int CounterClockWiseValueWithC = CounterClockWise(vertexA, vertexB, vertexC);
int CounterClockWiseValueWithD = CounterClockWise(vertexA, vertexB, vertexD);
if(CounterClockWiseValueWithC == CounterClockWiseValueWithD)
{
return false;
}
int CounterClockWiseValueWithA = CounterClockWise(vertexC, vertexD, vertexA);
int CounterClockWiseValueWithB = CounterClockWise(vertexC, vertexD, vertexB);
if(CounterClockWiseValueWithA == CounterClockWiseValueWithB)
{
return false;
}
return true;
}
template <class TVectorData>
int
VectorDataExtractROI<TVectorData>
::CounterClockWise(PointType firstPoint, PointType secondPoint, PointType thirdPoint)
{
PointType SecondMinusFirstPoint;
PointType ThirdMinusFirstPoint;
SecondMinusFirstPoint = secondPoint - firstPoint;
ThirdMinusFirstPoint = thirdPoint - firstPoint;
double dX1dY2MinusdY1dX2;
dX1dY2MinusdY1dX2 = static_cast<double>( SecondMinusFirstPoint[0]*ThirdMinusFirstPoint[1]
- SecondMinusFirstPoint[1]*ThirdMinusFirstPoint[0]);
if( dX1dY2MinusdY1dX2 > 0.0)
{
return 1;
}
if( dX1dY2MinusdY1dX2 < 0.0)
{
return -1;
}
double dX1dX2;
double dY1dY2;
dX1dX2 = static_cast<double>(SecondMinusFirstPoint[0] * ThirdMinusFirstPoint[0]);
dY1dY2 = static_cast<double>(SecondMinusFirstPoint[1] * ThirdMinusFirstPoint[1]);
if( (dX1dX2 < 0.0) || (dY1dY2 < 0.0) )
{
return -1;
}
double dX1dX1, dX2dX2, dY1dY1, dY2dY2;
dX1dX1 = static_cast<double>(SecondMinusFirstPoint[0] * SecondMinusFirstPoint[0]);
dX2dX2 = static_cast<double>(ThirdMinusFirstPoint[0] * ThirdMinusFirstPoint[0]);
dY1dY1 = static_cast<double>(SecondMinusFirstPoint[1] * SecondMinusFirstPoint[1]);
dY2dY2 = static_cast<double>(ThirdMinusFirstPoint[1] * ThirdMinusFirstPoint[1]);
if( (dX1dX1+dY1dY1) < (dX2dX2 + dY2dY2) )
{
return 1;
}
return 0;
}
/**
* CompareInputAndRegionProjection
*/
template <class TVectorData>
void
VectorDataExtractROI<TVectorData>
::CompareInputAndRegionProjection()
{
std::string regionProjection = m_ROI.GetRegionProjection();
std::string inputVectorProjection = this->GetInput()->GetProjectionRef();
//FIXME: the string comparison is not sufficient to say that two
//projections are different
if (regionProjection == inputVectorProjection) m_ProjectionNeeded = false;
else m_ProjectionNeeded = true;
}
/**
* ProjectRegionToInputVectorProjection
*/
template <class TVectorData>
void
VectorDataExtractROI<TVectorData>
::ProjectRegionToInputVectorProjection()
{
/* Use the RS Generic projection */
typedef otb::GenericRSTransform<> GenericRSTransformType;
typename GenericRSTransformType::Pointer genericTransform = GenericRSTransformType::New();
/** Set up the projection */
genericTransform->SetInputProjectionRef(m_ROI.GetRegionProjection());
genericTransform->SetInputKeywordList(m_ROI.GetKeywordList());
genericTransform->SetOutputProjectionRef(this->GetInput()->GetProjectionRef());
const itk::MetaDataDictionary& inputDict = this->GetInput()->GetMetaDataDictionary();
genericTransform->SetOutputDictionary(inputDict);
genericTransform->SetOutputOrigin(this->GetInput()->GetOrigin());
genericTransform->SetOutputSpacing(this->GetInput()->GetSpacing());
genericTransform->InstantiateTransform();
otbMsgDevMacro(<< genericTransform);
typename VertexListType::Pointer regionCorners = VertexListType::New();
ProjPointType point1, point2, point3, point4;
/** Compute the extremities of the region*/
point1[0] = m_ROI.GetOrigin()[0];
point1[1] = m_ROI.GetOrigin()[1];
point2[0] = m_ROI.GetOrigin()[0] + m_ROI.GetSize()[0];
point2[1] = m_ROI.GetOrigin()[1];
point3[0] = m_ROI.GetOrigin()[0] + m_ROI.GetSize()[0];
point3[1] = m_ROI.GetOrigin()[1] + m_ROI.GetSize()[1];
point4[0] = m_ROI.GetOrigin()[0];
point4[1] = m_ROI.GetOrigin()[1] + m_ROI.GetSize()[1];
/** Fill the vertex List : First Convert Point To*/
regionCorners->InsertElement(regionCorners->Size(),
this->PointToContinuousIndex(genericTransform->TransformPoint(point1)));
regionCorners->InsertElement(regionCorners->Size(),
this->PointToContinuousIndex(genericTransform->TransformPoint(point2)));
regionCorners->InsertElement(regionCorners->Size(),
this->PointToContinuousIndex(genericTransform->TransformPoint(point3)));
regionCorners->InsertElement(regionCorners->Size(),
this->PointToContinuousIndex(genericTransform->TransformPoint(point4)));
/** Due to The projection : the Projected ROI can be rotated */
m_GeoROI = this->ComputeVertexListBoundingRegion(regionCorners.GetPointer());
m_GeoROI.SetRegionProjection(this->GetInput()->GetProjectionRef());
}
/**
* itk::Point to ContinuousIndex
*/
template <class TVectorData>
typename VectorDataExtractROI<TVectorData>
::VertexType
VectorDataExtractROI<TVectorData>
::PointToContinuousIndex(ProjPointType point)
{
VertexType vertex;
vertex[0] = point[0];
vertex[1] = point[1];
return vertex;
}
/**
* ComputeVertexListBoundingRegion
*/
template <class TVectorData>
typename VectorDataExtractROI<TVectorData>
::RegionType
VectorDataExtractROI<TVectorData>
::ComputeVertexListBoundingRegion(typename VertexListType::ConstPointer vertexlist)
{
double x = 0., y = 0.;
IndexType index;
IndexType maxId;
SizeType size;
index.Fill(0.);
maxId.Fill(0.);
size.Fill(0.);
typename VertexListType::ConstIterator it = vertexlist->Begin();
if (vertexlist->Size() > 0)
{
x = static_cast<double>(it.Value()[0]);
y = static_cast<double>(it.Value()[1]);
index[0] = x;
index[1] = y;
maxId[0] = x;
maxId[1] = y;
++it;
while (it != vertexlist->End())
{
x = static_cast<double>(it.Value()[0]);
y = static_cast<double>(it.Value()[1]);
// Index search
if (x < index[0])
{
index[0] = x;
}
if (y > index[1])
{
index[1] = y;
}
// Max Id search for size computation
if (x > maxId[0])
{
maxId[0] = x;
}
if (y < maxId[1])
{
maxId[1] = y;
}
++it;
}
size[0] = maxId[0] - index[0];
size[1] = maxId[1] - index[1];
}
RegionType region;
region.SetSize(size);
region.SetOrigin(index);
return region;
}
} // end namespace otb
#endif
|