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 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824
|
/*
* Copyright (C) 2005-2022 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef otbPersistentSamplingFilterBase_hxx
#define otbPersistentSamplingFilterBase_hxx
#include "otbPersistentSamplingFilterBase.h"
#include "otbMaskedIteratorDecorator.h"
#include "itkImageRegionConstIteratorWithOnlyIndex.h"
#include "itkImageRegionConstIterator.h"
#include "otbMacro.h"
#include "otbStopwatch.h"
#include "itkProgressReporter.h"
namespace otb
{
template <class TInputImage, class TMaskImage>
PersistentSamplingFilterBase<TInputImage, TMaskImage>::PersistentSamplingFilterBase()
: m_FieldName(std::string("class")),
m_FieldIndex(0),
m_LayerIndex(0),
m_OutLayerName(std::string("output")),
m_OGRLayerCreationOptions(),
m_AdditionalFields(),
m_InMemoryInputs(),
m_InMemoryOutputs()
{
this->SetNthOutput(0, TInputImage::New());
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::SetOGRData(const otb::ogr::DataSource* vector)
{
this->SetNthInput(1, const_cast<otb::ogr::DataSource*>(vector));
}
template <class TInputImage, class TMaskImage>
const otb::ogr::DataSource* PersistentSamplingFilterBase<TInputImage, TMaskImage>::GetOGRData()
{
if (this->GetNumberOfInputs() < 2)
{
return 0;
}
return static_cast<const otb::ogr::DataSource*>(this->itk::ProcessObject::GetInput(1));
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::SetMask(const TMaskImage* mask)
{
this->SetNthInput(2, const_cast<TMaskImage*>(mask));
}
template <class TInputImage, class TMaskImage>
const TMaskImage* PersistentSamplingFilterBase<TInputImage, TMaskImage>::GetMask()
{
if (this->GetNumberOfInputs() < 3)
{
return 0;
}
return static_cast<const TMaskImage*>(this->itk::ProcessObject::GetInput(2));
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::SetOGRLayerCreationOptions(const std::vector<std::string>& options)
{
m_OGRLayerCreationOptions.clear();
m_OGRLayerCreationOptions = options;
}
template <class TInputImage, class TMaskImage>
const std::vector<std::string>& PersistentSamplingFilterBase<TInputImage, TMaskImage>::GetOGRLayerCreationOptions()
{
return m_OGRLayerCreationOptions;
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::GenerateOutputInformation()
{
Superclass::GenerateOutputInformation();
// Get OGR field index
const otb::ogr::DataSource* vectors = this->GetOGRData();
otb::ogr::Layer::const_iterator featIt = vectors->GetLayer(m_LayerIndex).begin();
int fieldIndex = featIt->ogr().GetFieldIndex(this->m_FieldName.c_str());
if (fieldIndex < 0)
{
itkGenericExceptionMacro("Field named " << this->m_FieldName << " not found!");
}
this->m_FieldIndex = fieldIndex;
const MaskImageType* mask = this->GetMask();
if (mask)
{
const InputImageType* input = this->GetInput();
if (mask->GetLargestPossibleRegion() != input->GetLargestPossibleRegion())
{
itkGenericExceptionMacro("Mask and input image have a different size!");
}
if (mask->GetOrigin() != input->GetOrigin())
{
itkGenericExceptionMacro("Mask and input image have a different origin!");
}
if (mask->GetSignedSpacing() != input->GetSignedSpacing())
{
itkGenericExceptionMacro("Mask and input image have a different spacing!");
}
}
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::GenerateInputRequestedRegion()
{
InputImageType* input = const_cast<InputImageType*>(this->GetInput());
MaskImageType* mask = const_cast<MaskImageType*>(this->GetMask());
RegionType requested = this->GetOutput()->GetRequestedRegion();
RegionType emptyRegion = input->GetLargestPossibleRegion();
emptyRegion.SetSize(0, 0);
emptyRegion.SetSize(1, 0);
input->SetRequestedRegion(emptyRegion);
if (mask)
{
mask->SetRequestedRegion(requested);
}
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::GenerateData(void)
{
this->AllocateOutputs();
this->BeforeThreadedGenerateData();
// Split the data into in-memory layers
this->DispatchInputVectors();
// struct to store filter pointer
VectorThreadStruct str;
str.Filter = this;
// Get the output pointer
// const InputImageType *outputPtr = this->GetOutput();
this->GetMultiThreader()->SetNumberOfThreads(this->GetNumberOfThreads());
this->GetMultiThreader()->SetSingleMethod(this->VectorThreaderCallback, &str);
// multithread the execution
this->GetMultiThreader()->SingleMethodExecute();
// gather the data from in-memory output layers
this->GatherOutputVectors();
this->AfterThreadedGenerateData();
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::AllocateOutputs(void)
{
Superclass::AllocateOutputs();
ogr::DataSource* vectors = const_cast<ogr::DataSource*>(this->GetOGRData());
ogr::Layer inLayer = vectors->GetLayer(m_LayerIndex);
unsigned int numberOfThreads = this->GetNumberOfThreads();
// Prepare temporary input
this->m_InMemoryInputs.clear();
this->m_InMemoryInputs.reserve(numberOfThreads);
std::string tmpLayerName("thread");
OGRSpatialReference* oSRS = nullptr;
if (inLayer.GetSpatialRef())
{
oSRS = inLayer.GetSpatialRef()->Clone();
}
OGRFeatureDefn& layerDefn = inLayer.GetLayerDefn();
// std::vector<ogr::Layer> tmpLayers;
for (unsigned int i = 0; i < numberOfThreads; i++)
{
ogr::DataSource::Pointer tmpOgrDS = ogr::DataSource::New();
ogr::Layer tmpLayer = tmpOgrDS->CreateLayer(tmpLayerName, oSRS, inLayer.GetGeomType());
// add field definitions
for (int k = 0; k < layerDefn.GetFieldCount(); k++)
{
OGRFieldDefn originDefn(layerDefn.GetFieldDefn(k));
ogr::FieldDefn fieldDefn(originDefn);
tmpLayer.CreateField(fieldDefn);
}
this->m_InMemoryInputs.push_back(tmpOgrDS);
}
// Prepare in-memory outputs
this->m_InMemoryOutputs.clear();
this->m_InMemoryOutputs.reserve(numberOfThreads);
tmpLayerName = std::string("threadOut");
for (unsigned int i = 0; i < numberOfThreads; i++)
{
std::vector<OGRDataPointer> tmpContainer;
// iterate over outputs, only process ogr::DataSource
for (unsigned int k = 0; k < this->GetNumberOfOutputs(); k++)
{
ogr::DataSource* realOutput = dynamic_cast<ogr::DataSource*>(this->itk::ProcessObject::GetOutput(k));
if (realOutput)
{
ogr::Layer realLayer = realOutput->GetLayersCount() == 1 ? realOutput->GetLayer(0) : realOutput->GetLayer(m_OutLayerName);
OGRFeatureDefn& outLayerDefn = realLayer.GetLayerDefn();
ogr::DataSource::Pointer tmpOutput = ogr::DataSource::New();
ogr::Layer tmpLayer = tmpOutput->CreateLayer(tmpLayerName, oSRS, realLayer.GetGeomType());
// add field definitions
for (int f = 0; f < outLayerDefn.GetFieldCount(); f++)
{
OGRFieldDefn originDefn(outLayerDefn.GetFieldDefn(f));
tmpLayer.CreateField(originDefn);
}
tmpContainer.push_back(tmpOutput);
}
}
this->m_InMemoryOutputs.push_back(tmpContainer);
}
if (oSRS)
{
oSRS->Release();
}
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::GatherOutputVectors(void)
{
// clean temporary inputs
this->m_InMemoryInputs.clear();
// gather temporary outputs and write to output
const otb::ogr::DataSource* vectors = this->GetOGRData();
otb::Stopwatch chrono = otb::Stopwatch::StartNew();
unsigned int count = 0;
for (unsigned int k = 0; k < this->GetNumberOfOutputs(); k++)
{
ogr::DataSource* realOutput = dynamic_cast<ogr::DataSource*>(this->itk::ProcessObject::GetOutput(k));
if (realOutput)
{
this->FillOneOutput(count, realOutput, bool(vectors == realOutput));
count++;
}
}
chrono.Stop();
otbMsgDebugMacro(<< "Writing OGR points took " << chrono.GetElapsedMilliseconds() << " ms");
this->m_InMemoryOutputs.clear();
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::FillOneOutput(unsigned int outIdx, ogr::DataSource* outDS, bool update)
{
ogr::Layer outLayer = outDS->GetLayersCount() == 1 ? outDS->GetLayer(0) : outDS->GetLayer(m_OutLayerName);
OGRErr err = outLayer.ogr().StartTransaction();
if (err != OGRERR_NONE)
{
itkExceptionMacro(<< "Unable to start transaction for OGR layer " << outLayer.ogr().GetName() << ".");
}
unsigned int numberOfThreads = this->GetNumberOfThreads();
for (unsigned int thread = 0; thread < numberOfThreads; thread++)
{
ogr::Layer inLayer = this->m_InMemoryOutputs[thread][outIdx]->GetLayerChecked(0);
if (!inLayer)
{
continue;
}
ogr::Layer::const_iterator tmpIt = inLayer.begin();
// This test only uses 1 input, not compatible with multiple OGRData inputs
if (update)
{
// Update mode
for (; tmpIt != inLayer.end(); ++tmpIt)
{
outLayer.SetFeature(*tmpIt);
}
}
else
{
// Copy mode
for (; tmpIt != inLayer.end(); ++tmpIt)
{
ogr::Feature dstFeature(outLayer.GetLayerDefn());
dstFeature.SetFrom(*tmpIt, TRUE);
outLayer.CreateFeature(dstFeature);
}
}
}
err = outLayer.ogr().CommitTransaction();
if (err != OGRERR_NONE)
{
itkExceptionMacro(<< "Unable to commit transaction for OGR layer " << outLayer.ogr().GetName() << ".");
}
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::ThreadedGenerateVectorData(const ogr::Layer& layerForThread, itk::ThreadIdType threadid)
{
// Retrieve inputs
TInputImage* inputImage = const_cast<TInputImage*>(this->GetInput());
TInputImage* outputImage = this->GetOutput();
RegionType requestedRegion = outputImage->GetRequestedRegion();
itk::ProgressReporter progress(this, threadid, layerForThread.GetFeatureCount(true));
// Loop across the features in the layer (filtered by requested region in BeforeTGD already)
ogr::Layer::const_iterator featIt = layerForThread.begin();
for (; featIt != layerForThread.end(); ++featIt)
{
// Compute the intersection of thread region and polygon bounding region, called "considered region"
// This need not be done in ThreadedGenerateData and could be pre-processed and cached before filter execution if needed
RegionType consideredRegion = FeatureBoundingRegion(inputImage, featIt);
bool regionNotEmpty = consideredRegion.Crop(requestedRegion);
if (regionNotEmpty)
{
this->PrepareFeature(*featIt, threadid);
this->ExploreGeometry(*featIt, featIt->ogr().GetGeometryRef(), consideredRegion, threadid);
}
progress.CompletedPixel();
}
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::ExploreGeometry(const ogr::Feature& feature, OGRGeometry* geom, RegionType& region,
itk::ThreadIdType& threadid)
{
typename TInputImage::PointType imgPoint;
typename TInputImage::IndexType imgIndex;
switch (geom->getGeometryType())
{
case wkbPoint:
case wkbPoint25D:
{
OGRPoint* castPoint = dynamic_cast<OGRPoint*>(geom);
if (castPoint == nullptr)
break;
imgPoint[0] = castPoint->getX();
imgPoint[1] = castPoint->getY();
const TInputImage* img = this->GetInput();
const TMaskImage* mask = this->GetMask();
img->TransformPhysicalPointToIndex(imgPoint, imgIndex);
if ((mask == nullptr) || mask->GetPixel(imgIndex))
{
this->ProcessSample(feature, imgIndex, imgPoint, threadid);
}
break;
}
case wkbLineString:
case wkbLineString25D:
{
OGRLineString* castLineString = dynamic_cast<OGRLineString*>(geom);
if (castLineString == nullptr)
break;
this->ProcessLine(feature, castLineString, region, threadid);
break;
}
case wkbPolygon:
case wkbPolygon25D:
{
OGRPolygon* castPolygon = dynamic_cast<OGRPolygon*>(geom);
if (castPolygon == nullptr)
break;
this->ProcessPolygon(feature, castPolygon, region, threadid);
break;
}
case wkbMultiPoint:
case wkbMultiPoint25D:
case wkbMultiLineString:
case wkbMultiLineString25D:
case wkbMultiPolygon:
case wkbMultiPolygon25D:
case wkbGeometryCollection:
case wkbGeometryCollection25D:
{
OGRGeometryCollection* geomCollection = dynamic_cast<OGRGeometryCollection*>(geom);
if (geomCollection)
{
unsigned int nbGeom = geomCollection->getNumGeometries();
for (unsigned int i = 0; i < nbGeom; ++i)
{
this->ExploreGeometry(feature, geomCollection->getGeometryRef(i), region, threadid);
}
}
else
{
otbWarningMacro("Geometry not recognized as a collection : " << geom->getGeometryName());
}
break;
}
default:
{
otbWarningMacro("Geometry not handled: " << geom->getGeometryName());
break;
}
}
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::ProcessLine(const ogr::Feature& feature, OGRLineString* line, RegionType& region,
itk::ThreadIdType& threadid)
{
OGRPolygon tmpPolygon;
OGRLinearRing ring;
ring.addPoint(0.0, 0.0, 0.0);
ring.addPoint(1.0, 0.0, 0.0);
ring.addPoint(1.0, 1.0, 0.0);
ring.addPoint(0.0, 1.0, 0.0);
ring.addPoint(0.0, 0.0, 0.0);
tmpPolygon.addRing(&ring);
const TInputImage* img = this->GetInput();
TMaskImage* mask = const_cast<TMaskImage*>(this->GetMask());
typename TInputImage::IndexType imgIndex;
typename TInputImage::PointType imgPoint;
typename TInputImage::SpacingType imgAbsSpacing = img->GetSignedSpacing();
if (imgAbsSpacing[0] < 0)
imgAbsSpacing[0] = -imgAbsSpacing[0];
if (imgAbsSpacing[1] < 0)
imgAbsSpacing[1] = -imgAbsSpacing[1];
if (mask)
{
// For pixels in consideredRegion and not masked
typedef MaskedIteratorDecorator<itk::ImageRegionConstIterator<TMaskImage>, itk::ImageRegionConstIterator<TMaskImage>> MaskedIteratorType;
MaskedIteratorType it(mask, mask, region);
it.GoToBegin();
while (!it.IsAtEnd())
{
imgIndex = it.GetIndex();
img->TransformIndexToPhysicalPoint(imgIndex, imgPoint);
bool isInside = this->IsSampleOnLine(line, imgPoint, imgAbsSpacing, tmpPolygon);
if (isInside)
{
this->ProcessSample(feature, imgIndex, imgPoint, threadid);
}
++it;
}
}
else
{
typedef itk::ImageRegionConstIteratorWithOnlyIndex<TInputImage> NoValueIteratorType;
NoValueIteratorType it(img, region);
it.GoToBegin();
while (!it.IsAtEnd())
{
imgIndex = it.GetIndex();
img->TransformIndexToPhysicalPoint(imgIndex, imgPoint);
bool isInside = this->IsSampleOnLine(line, imgPoint, imgAbsSpacing, tmpPolygon);
if (isInside)
{
this->ProcessSample(feature, imgIndex, imgPoint, threadid);
}
++it;
}
}
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::ProcessPolygon(const ogr::Feature& feature, OGRPolygon* polygon, RegionType& region,
itk::ThreadIdType& threadid)
{
const TInputImage* img = this->GetInput();
TMaskImage* mask = const_cast<TMaskImage*>(this->GetMask());
typename TInputImage::IndexType imgIndex;
typename TInputImage::PointType imgPoint;
OGRPoint tmpPoint;
if (mask)
{
// For pixels in consideredRegion and not masked
typedef MaskedIteratorDecorator<itk::ImageRegionConstIterator<TMaskImage>, itk::ImageRegionConstIterator<TMaskImage>> MaskedIteratorType;
MaskedIteratorType it(mask, mask, region);
it.GoToBegin();
while (!it.IsAtEnd())
{
imgIndex = it.GetIndex();
img->TransformIndexToPhysicalPoint(imgIndex, imgPoint);
tmpPoint.setX(imgPoint[0]);
tmpPoint.setY(imgPoint[1]);
bool isInside = this->IsSampleInsidePolygon(polygon, &tmpPoint);
if (isInside)
{
this->ProcessSample(feature, imgIndex, imgPoint, threadid);
}
++it;
}
}
else
{
typedef itk::ImageRegionConstIteratorWithOnlyIndex<TInputImage> NoValueIteratorType;
NoValueIteratorType it(img, region);
it.GoToBegin();
while (!it.IsAtEnd())
{
imgIndex = it.GetIndex();
img->TransformIndexToPhysicalPoint(imgIndex, imgPoint);
tmpPoint.setX(imgPoint[0]);
tmpPoint.setY(imgPoint[1]);
bool isInside = this->IsSampleInsidePolygon(polygon, &tmpPoint);
if (isInside)
{
this->ProcessSample(feature, imgIndex, imgPoint, threadid);
}
++it;
}
}
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::ProcessSample(const ogr::Feature&, typename TInputImage::IndexType&,
typename TInputImage::PointType&, itk::ThreadIdType&)
{
itkExceptionMacro("Method ProcessSample not implemented !");
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::PrepareFeature(const ogr::Feature&, itk::ThreadIdType&)
{
// Nothing to do here
}
template <class TInputImage, class TMaskImage>
inline bool PersistentSamplingFilterBase<TInputImage, TMaskImage>::IsSampleInsidePolygon(OGRPolygon* poly, OGRPoint* tmpPoint)
{
bool ret = poly->getExteriorRing()->isPointInRing(tmpPoint);
if (ret)
{
for (int k = 0; k < poly->getNumInteriorRings(); k++)
{
if (poly->getInteriorRing(k)->isPointInRing(tmpPoint))
{
ret = false;
break;
}
}
}
return ret;
}
template <class TInputImage, class TMaskImage>
inline bool PersistentSamplingFilterBase<TInputImage, TMaskImage>::IsSampleOnLine(OGRLineString* line, typename TInputImage::PointType& position,
typename TInputImage::SpacingType& absSpacing, OGRPolygon& tmpPolygon)
{
tmpPolygon.getExteriorRing()->setPoint(0, position[0] - 0.5 * absSpacing[0], position[1] - 0.5 * absSpacing[1], 0.0);
tmpPolygon.getExteriorRing()->setPoint(1, position[0] + 0.5 * absSpacing[0], position[1] - 0.5 * absSpacing[1], 0.0);
tmpPolygon.getExteriorRing()->setPoint(2, position[0] + 0.5 * absSpacing[0], position[1] + 0.5 * absSpacing[1], 0.0);
tmpPolygon.getExteriorRing()->setPoint(3, position[0] - 0.5 * absSpacing[0], position[1] + 0.5 * absSpacing[1], 0.0);
tmpPolygon.getExteriorRing()->setPoint(4, position[0] - 0.5 * absSpacing[0], position[1] - 0.5 * absSpacing[1], 0.0);
return line->Intersects(&tmpPolygon);
}
template <class TInputImage, class TMaskImage>
typename PersistentSamplingFilterBase<TInputImage, TMaskImage>::RegionType
PersistentSamplingFilterBase<TInputImage, TMaskImage>::FeatureBoundingRegion(const TInputImage* image, otb::ogr::Layer::const_iterator& featIt) const
{
// otb::ogr wrapper is incomplete and leaky abstraction is inevitable here
OGREnvelope envelope;
featIt->GetGeometry()->getEnvelope(&envelope);
itk::Point<double, 2> lowerPoint, upperPoint;
lowerPoint[0] = envelope.MinX;
lowerPoint[1] = envelope.MinY;
upperPoint[0] = envelope.MaxX;
upperPoint[1] = envelope.MaxY;
typename TInputImage::IndexType lowerIndex;
typename TInputImage::IndexType upperIndex;
image->TransformPhysicalPointToIndex(lowerPoint, lowerIndex);
image->TransformPhysicalPointToIndex(upperPoint, upperIndex);
// swap coordinate to keep lowerIndex as start index
if (lowerIndex[0] > upperIndex[0])
{
int tmp = lowerIndex[0];
lowerIndex[0] = upperIndex[0];
upperIndex[0] = tmp;
}
if (lowerIndex[1] > upperIndex[1])
{
int tmp = lowerIndex[1];
lowerIndex[1] = upperIndex[1];
upperIndex[1] = tmp;
}
RegionType region;
region.SetIndex(lowerIndex);
region.SetUpperIndex(upperIndex);
return region;
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::DispatchInputVectors()
{
TInputImage* outputImage = this->GetOutput();
ogr::DataSource* vectors = const_cast<ogr::DataSource*>(this->GetOGRData());
ogr::Layer inLayer = vectors->GetLayer(m_LayerIndex);
const RegionType& requestedRegion = outputImage->GetRequestedRegion();
itk::ContinuousIndex<double> startIndex(requestedRegion.GetIndex());
itk::ContinuousIndex<double> endIndex(requestedRegion.GetUpperIndex());
startIndex[0] += -0.5;
startIndex[1] += -0.5;
endIndex[0] += 0.5;
endIndex[1] += 0.5;
itk::Point<double, 2> startPoint;
itk::Point<double, 2> endPoint;
outputImage->TransformContinuousIndexToPhysicalPoint(startIndex, startPoint);
outputImage->TransformContinuousIndexToPhysicalPoint(endIndex, endPoint);
// create geometric extent
OGRPolygon tmpPolygon;
OGRLinearRing ring;
ring.addPoint(startPoint[0], startPoint[1], 0.0);
ring.addPoint(startPoint[0], endPoint[1], 0.0);
ring.addPoint(endPoint[0], endPoint[1], 0.0);
ring.addPoint(endPoint[0], startPoint[1], 0.0);
ring.addPoint(startPoint[0], startPoint[1], 0.0);
tmpPolygon.addRing(&ring);
inLayer.SetSpatialFilter(&tmpPolygon);
unsigned int numberOfThreads = this->GetNumberOfThreads();
std::vector<ogr::Layer> tmpLayers;
tmpLayers.reserve(numberOfThreads);
for (unsigned int i = 0; i < numberOfThreads; i++)
{
tmpLayers.push_back(this->GetInMemoryInput(i));
}
const unsigned int nbFeatThread = std::ceil(inLayer.GetFeatureCount(true) / (float)numberOfThreads);
// assert(nbFeatThread > 0);
OGRFeatureDefn& layerDefn = inLayer.GetLayerDefn();
ogr::Layer::const_iterator featIt = inLayer.begin();
unsigned int counter = 0;
unsigned int cptFeat = 0;
for (; featIt != inLayer.end(); ++featIt)
{
ogr::Feature dstFeature(layerDefn);
dstFeature.SetFrom(*featIt, TRUE);
dstFeature.SetFID(featIt->GetFID());
tmpLayers[counter].CreateFeature(dstFeature);
cptFeat++;
if (cptFeat > nbFeatThread && (counter + 1) < numberOfThreads)
{
counter++;
cptFeat = 0;
}
}
inLayer.SetSpatialFilter(nullptr);
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::InitializeOutputDataSource(ogr::DataSource* inputDS, ogr::DataSource* outputDS)
{
TInputImage* inputImage = const_cast<TInputImage*>(this->GetInput());
inputImage->UpdateOutputInformation();
ogr::Layer inLayer = inputDS->GetLayer(this->GetLayerIndex());
bool updateMode = false;
if (inputDS == outputDS)
{
updateMode = true;
// Check m_OutLayerName is same as input layer name
m_OutLayerName = inLayer.GetName();
}
// First get list of current fields
OGRFeatureDefn& layerDefn = inLayer.GetLayerDefn();
std::map<std::string, OGRFieldType> currentFields;
for (int k = 0; k < layerDefn.GetFieldCount(); k++)
{
OGRFieldDefn fieldDefn(layerDefn.GetFieldDefn(k));
std::string currentName(fieldDefn.GetNameRef());
currentFields[currentName] = fieldDefn.GetType();
}
ogr::Layer outLayer = inLayer;
if (!updateMode)
{
std::string projectionRefWkt = this->GetInput()->GetProjectionRef();
bool projectionInformationAvailable = !projectionRefWkt.empty();
OGRSpatialReference* oSRS = nullptr;
if (projectionInformationAvailable)
{
oSRS = static_cast<OGRSpatialReference*>(OSRNewSpatialReference(projectionRefWkt.c_str()));
}
// Create layer
outLayer = outputDS->CreateLayer(this->GetOutLayerName(), oSRS, wkbPoint, this->GetOGRLayerCreationOptions());
// Copy existing fields
for (int k = 0; k < layerDefn.GetFieldCount(); k++)
{
OGRFieldDefn fieldDefn(layerDefn.GetFieldDefn(k));
outLayer.CreateField(fieldDefn);
}
if (oSRS)
{
oSRS->Release();
}
}
// Add new fields
for (unsigned int k = 0; k < m_AdditionalFields.size(); k++)
{
OGRFieldDefn ogrFieldDefinition(m_AdditionalFields[k].Name.c_str(), m_AdditionalFields[k].Type);
ogrFieldDefinition.SetWidth(m_AdditionalFields[k].Width);
ogrFieldDefinition.SetPrecision(m_AdditionalFields[k].Precision);
ogr::FieldDefn fieldDef(ogrFieldDefinition);
// test if field is already present
if (currentFields.count(fieldDef.GetName()))
{
// test the field type
if (currentFields[fieldDef.GetName()] != fieldDef.GetType())
{
itkExceptionMacro("Field name " << fieldDef.GetName() << " already exists with a different type!");
}
}
else
{
outLayer.CreateField(fieldDef);
}
}
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::ClearAdditionalFields()
{
this->m_AdditionalFields.clear();
}
template <class TInputImage, class TMaskImage>
void PersistentSamplingFilterBase<TInputImage, TMaskImage>::CreateAdditionalField(std::string name, OGRFieldType type, int width, int precision)
{
SimpleFieldDefn defn;
defn.Name = name;
defn.Type = type;
defn.Width = width;
defn.Precision = precision;
this->m_AdditionalFields.push_back(defn);
}
template <class TInputImage, class TMaskImage>
const std::vector<typename PersistentSamplingFilterBase<TInputImage, TMaskImage>::SimpleFieldDefn>&
PersistentSamplingFilterBase<TInputImage, TMaskImage>::GetAdditionalFields()
{
return this->m_AdditionalFields;
}
template <class TInputImage, class TMaskImage>
ITK_THREAD_RETURN_TYPE PersistentSamplingFilterBase<TInputImage, TMaskImage>::VectorThreaderCallback(void* arg)
{
VectorThreadStruct* str = (VectorThreadStruct*)(((itk::MultiThreader::ThreadInfoStruct*)(arg))->UserData);
int threadId = ((itk::MultiThreader::ThreadInfoStruct*)(arg))->ThreadID;
int threadCount = ((itk::MultiThreader::ThreadInfoStruct*)(arg))->NumberOfThreads;
ogr::Layer layer = str->Filter->GetInMemoryInput(threadId);
if (threadId < threadCount)
{
str->Filter->ThreadedGenerateVectorData(layer, threadId);
}
return ITK_THREAD_RETURN_VALUE;
}
template <class TInputImage, class TMaskImage>
ogr::Layer PersistentSamplingFilterBase<TInputImage, TMaskImage>::GetInMemoryInput(unsigned int threadId)
{
if (threadId >= m_InMemoryInputs.size())
{
itkExceptionMacro(<< "Requested in-memory input layer not available " << threadId << " (total size : " << m_InMemoryInputs.size() << ").");
}
return m_InMemoryInputs[threadId]->GetLayerChecked(0);
}
template <class TInputImage, class TMaskImage>
ogr::Layer PersistentSamplingFilterBase<TInputImage, TMaskImage>::GetInMemoryOutput(unsigned int threadId, unsigned int index)
{
if (threadId >= m_InMemoryOutputs.size())
{
itkExceptionMacro(<< "Requested in-memory output layer not available " << threadId << " (total size : " << m_InMemoryOutputs.size() << ").");
}
if (index >= m_InMemoryOutputs[threadId].size())
{
itkExceptionMacro(<< "Requested output dataset not available " << index << " (available : " << m_InMemoryOutputs[threadId].size() << ").");
}
return m_InMemoryOutputs[threadId][index]->GetLayerChecked(0);
}
} // end namespace otb
#endif
|