From 435b93cdd2f5b276039e1270aed1977efc1e46f4 Mon Sep 17 00:00:00 2001 From: Emmanuel Christophe <emmanuel.christophe@orfeo-toolbox.org> Date: Fri, 5 Dec 2008 13:06:15 +0800 Subject: [PATCH] ENH: increasing available information --- Code/IO/otbPointSetFileReader.h | 12 ++++++++++++ Code/IO/otbPointSetFileReader.txx | 13 ++++++++++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/Code/IO/otbPointSetFileReader.h b/Code/IO/otbPointSetFileReader.h index 35583ae006..512a8a69e6 100644 --- a/Code/IO/otbPointSetFileReader.h +++ b/Code/IO/otbPointSetFileReader.h @@ -59,6 +59,14 @@ template<class TOutputPointSet> itkSetStringMacro(FileName); itkGetStringMacro(FileName); + /** Get Macro*/ + itkGetMacro( NumberOfPoints, long int ); + itkGetMacro( MinX, double ); + itkGetMacro( MaxX, double ); + itkGetMacro( MinY, double ); + itkGetMacro( MaxY, double ); + + virtual void GenerateOutputInformation(void); /** Does the real work. */ @@ -74,6 +82,10 @@ template<class TOutputPointSet> std::string m_FileName; // The file to be read long int m_NumberOfPoints; + double m_MinX; + double m_MaxX; + double m_MinY; + double m_MaxY; private: PointSetFileReader(const Self&); //purposely not implemented diff --git a/Code/IO/otbPointSetFileReader.txx b/Code/IO/otbPointSetFileReader.txx index f3cd67701d..abe03621af 100644 --- a/Code/IO/otbPointSetFileReader.txx +++ b/Code/IO/otbPointSetFileReader.txx @@ -34,6 +34,10 @@ namespace otb ::PointSetFileReader() : otb::PointSetSource<TOutputPointSet>() { m_NumberOfPoints=-1; + m_MinX=0; + m_MaxX=0; + m_MinY=0; + m_MaxY=0; } template <class TOutputPointSet> @@ -85,7 +89,10 @@ namespace otb otbDebugMacro(<< "Points count: " << header.GetPointRecordsCount()); m_NumberOfPoints = header.GetPointRecordsCount(); - + m_MinX = header.GetMinX(); + m_MaxX = header.GetMaxX(); + m_MinY = header.GetMinY(); + m_MaxY = header.GetMaxY(); ifs.close(); } @@ -176,6 +183,10 @@ namespace otb { Superclass::PrintSelf(os, indent); os << indent << "Number of points: " << this->m_NumberOfPoints << std::endl; + os << indent << "Min X: " << this->m_MinX << std::endl; + os << indent << "Max X: " << this->m_MaxX << std::endl; + os << indent << "Min Y: " << this->m_MinY << std::endl; + os << indent << "Max Y: " << this->m_MaxY << std::endl; os << indent << "m_FileName: " << this->m_FileName << "\n"; } -- GitLab