/usr/include/OTB-5.8/otbDEMToImageGenerator.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 | /*=========================================================================
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 otbDEMToImageGenerator_txx
#define otbDEMToImageGenerator_txx
#include "otbDEMToImageGenerator.h"
#include "otbMacro.h"
#include "itkProgressReporter.h"
namespace otb
{
template<class TDEMImage>
DEMToImageGenerator<TDEMImage>
::DEMToImageGenerator()
{
m_DEMHandler = DEMHandlerType::Instance();
m_OutputSpacing[0] = 0.0001;
m_OutputSpacing[1] = -0.0001;
m_OutputSize[0] = 1;
m_OutputSize[1] = 1;
m_OutputOrigin[0] = 0;
m_OutputOrigin[1] = 0;
m_DefaultUnknownValue = itk::NumericTraits<PixelType>::ZeroValue();
m_AboveEllipsoid = false;
m_Transform = GenericRSTransformType::New();
}
// GenerateOutputInformation method
template <class TDEMImage>
void DEMToImageGenerator<TDEMImage>
::GenerateOutputInformation()
{
DEMImageType *output;
output = this->GetOutput(0);
IndexType start;
start[0] = 0;
start[1] = 0;
// Specify region parameters
OutputImageRegionType largestPossibleRegion;
largestPossibleRegion.SetSize(m_OutputSize);
largestPossibleRegion.SetIndex(start);
output->SetLargestPossibleRegion(largestPossibleRegion);
output->SetSpacing(m_OutputSpacing);
output->SetOrigin(m_OutputOrigin);
// Get the Output MetaData Dictionary
itk::MetaDataDictionary& dict = output->GetMetaDataDictionary();
// Encapsulate the metadata set by the user
itk::EncapsulateMetaData<std::string>(dict, MetaDataKey::ProjectionRefKey,
m_Transform->GetInputProjectionRef());
if (this->GetOutputKeywordList().GetSize() > 0)
{
itk::EncapsulateMetaData<ImageKeywordlist>(dict, MetaDataKey::OSSIMKeywordlistKey,
m_Transform->GetInputKeywordList());
}
}
// InstantiateTransform method
template <class TDEMImage>
void DEMToImageGenerator<TDEMImage>
::InstantiateTransform()
{
m_Transform->InstantiateTransform();
}
template <class TDEMImage>
void DEMToImageGenerator<TDEMImage>
::BeforeThreadedGenerateData()
{
InstantiateTransform();
DEMImagePointerType DEMImage = this->GetOutput();
// allocate the output buffer
DEMImage->SetBufferedRegion(DEMImage->GetRequestedRegion());
DEMImage->Allocate();
DEMImage->FillBuffer(0);
}
template <class TDEMImage>
void
DEMToImageGenerator<TDEMImage>
::ThreadedGenerateData(const OutputImageRegionType& outputRegionForThread,
itk::ThreadIdType threadId)
{
DEMImagePointerType DEMImage = this->GetOutput();
// Create an iterator that will walk the output region
ImageIteratorType outIt = ImageIteratorType(DEMImage, outputRegionForThread);
// support progress methods/callbacks
itk::ProgressReporter progress(this, threadId, outputRegionForThread.GetNumberOfPixels());
// Walk the output image, evaluating the height at each pixel
IndexType currentindex;
PointType phyPoint;
double height;
PointType geoPoint;
for (outIt.GoToBegin(); !outIt.IsAtEnd(); ++outIt)
{
currentindex = outIt.GetIndex();
DEMImage->TransformIndexToPhysicalPoint(currentindex, phyPoint);
if(m_Transform.IsNotNull())
{
geoPoint = m_Transform->TransformPoint(phyPoint);
if(m_AboveEllipsoid)
{
height = m_DEMHandler->GetHeightAboveEllipsoid(geoPoint); // Altitude
// calculation
}
else
{
height = m_DEMHandler->GetHeightAboveMSL(geoPoint); // Altitude
// calculation
}
}
else
{
if(m_AboveEllipsoid)
{
height = m_DEMHandler->GetHeightAboveEllipsoid(phyPoint); // Altitude
// calculation
}
else
{
height = m_DEMHandler->GetHeightAboveMSL(phyPoint); // Altitude
// calculation
}
}
/* otbMsgDevMacro(<< "Index : (" << currentindex[0]<< "," << currentindex[1] << ") -> PhyPoint : ("
<< phyPoint[0] << "," << phyPoint[1] << ") -> GeoPoint: ("
<< geoPoint[0] << "," << geoPoint[1] << ") -> height" << height);
*/
// otbMsgDevMacro(<< "height" << height);
// DEM sets a default value (-32768) at point where it doesn't have altitude information.
// OSSIM has chosen to change this default value in OSSIM_DBL_NAN (-4.5036e15).
if (!vnl_math_isnan(height))
{
// Fill the image
DEMImage->SetPixel(currentindex, static_cast<PixelType>(height));
}
else
{
// Back to the MNT default value
DEMImage->SetPixel(currentindex, m_DefaultUnknownValue);
}
progress.CompletedPixel();
}
}
template <class TDEMImage>
void
DEMToImageGenerator<TDEMImage>
::PrintSelf(std::ostream& os, itk::Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "Output Spacing:" << m_OutputSpacing[0] << "," << m_OutputSpacing[1] << std::endl;
os << indent << "Output Origin:" << m_OutputOrigin[0] << "," << m_OutputOrigin[1] << std::endl;
os << indent << "Output Size:" << m_OutputSize[0] << "," << m_OutputSize[1] << std::endl;
}
} // namespace otb
#endif
|