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
|
/*
* Copyright (C) 2005-2017 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 otbOGRLayerStreamStitchingFilter_h
#define otbOGRLayerStreamStitchingFilter_h
#include "otbOGRDataSourceWrapper.h"
#include "otbMacro.h"
//#if(GDAL_VERSION_NUM < 1800)
//#error OGRLayerStreamStitchingFilter requires GDAL version >= 1.8.0
//#endif
#include "itkProgressReporter.h"
#include <algorithm>
namespace otb
{
/** \class OGRLayerStreamStitchingFilter
* \brief This filter fusion the geometries in a layer (\c OGRLayer) along streaming lines.
* It is a in-line filter which means that the result of the fusion overwrites the input layer.
* The strategy for merging polygons is quite simple. A polygon P1 is merge with a polygon P2 if:
* - P1 and P2 are on different side of the streaming line
* - P1 and P2 intersect each other.
* - P2 has the largest intersection with P1 among all other polygons Pi intersecting P1.
* The \c SetStreamSize() method allows retrieving the number of streams in row and column,
* and their pixel coordinates.
* The input image is used to transform pixel coordinates of the streaming lines into
* coordinate system of the image, which must be the same as the one in the OGR input file.
* This filter is intended to be used after \c StreamingVectorizedSegmentationOGR.
* @see Example/StreamingMeanShiftSegmentation.cxx
*
* \ingroup OBIA
*
*
*
* \ingroup OTBOGRProcessing
*/
template <class TInputImage>
class ITK_EXPORT OGRLayerStreamStitchingFilter :
public itk::ProcessObject
{
public:
/** typedef for the classes standards. */
typedef OGRLayerStreamStitchingFilter Self;
typedef itk::ProcessObject Superclass;
typedef itk::SmartPointer<Self> Pointer;
typedef itk::SmartPointer<const Self> ConstPointer;
/** Definition of the input image */
typedef TInputImage InputImageType;
typedef typename InputImageType::PixelType InputPixelType;
typedef typename InputImageType::IndexType InputIndexType;
typedef typename InputImageType::SizeType SizeType;
typedef typename InputImageType::RegionType RegionType;
typedef typename InputImageType::SpacingType SpacingType;
typedef typename InputImageType::PointType OriginType;
typedef typename InputImageType::IndexType IndexType;
typedef ogr::Layer OGRLayerType;
typedef ogr::Feature OGRFeatureType;
/** Set the input image of this process object. */
using Superclass::SetInput;
virtual void SetInput(const InputImageType *input);
/** Get the input image. */
virtual const InputImageType * GetInput(void);
/** Method for management of the object factory. */
itkNewMacro(Self);
/** Return the name of the class. */
itkTypeMacro(OGRLayerStreamStitchingFilter, ProcessObject);
/** Set the input OGRLayer */
void SetOGRLayer( const OGRLayerType & ogrLayer );
/** Get the input OGRLayer */
const OGRLayerType & GetOGRLayer( void ) const;
/** Set the stream size.
* As this filter is intended to be used right after the \c StreamingVectorizedSegmentation,
* use the \c GetStreamSize() method on it to get the correct stream size.
*/
itkSetMacro(StreamSize, SizeType);
/** Get stream size*/
itkGetMacro(StreamSize, SizeType);
/** Generate Data method. This method must be called explicitly (not through the \c Update method). */
void GenerateData() override;
protected:
OGRLayerStreamStitchingFilter();
~OGRLayerStreamStitchingFilter() override {}
struct FusionStruct
{
unsigned int indStream1;
unsigned int indStream2;
double overlap;
};
struct FeatureStruct
{
FeatureStruct(OGRFeatureDefn & defn) : feat(defn), fusioned(false)
{
}
OGRFeatureType feat;
bool fusioned;
};
struct SortFeatureStruct
{
bool operator() (FusionStruct f1, FusionStruct f2) { return (f1.overlap > f2.overlap); }
} SortFeature;
/**
Main computation method. if line is true process row part, else process column part.
*/
void ProcessStreamingLine(bool line, itk::ProgressReporter &progress);
/** get length in case of OGRGeometryCollection.
* This function recodes the get_lenght method available since gdal 1.8.0
* in the case of OGRGeometryCollection. The aim is to allow accessing polygon stiching
* functionalities with gdal 1.6.
*/
double GetLengthOGRGeometryCollection(OGRGeometryCollection * intersection);
private:
OGRLayerStreamStitchingFilter(const Self &); //purposely not implemented
void operator =(const Self&); //purposely not implemented
SizeType m_StreamSize;
unsigned int m_Radius;
OGRLayerType m_OGRLayer;
};
} // end namespace otb
#ifndef OTB_MANUAL_INSTANTIATION
#include "otbOGRLayerStreamStitchingFilter.txx"
#endif
#endif
|