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
|
/*=========================================================================
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 otbSpectralAngleDistanceImageFilter_txx
#define otbSpectralAngleDistanceImageFilter_txx
#include "otbSpectralAngleDistanceImageFilter.h"
#include "itkImageRegionIterator.h"
#include "itkProgressReporter.h"
#include "otbMacro.h"
#include "otbMath.h"
namespace otb
{
/**
* Constructor
*/
template <class TInputImage, class TOutputImage>
SpectralAngleDistanceImageFilter<TInputImage, TOutputImage>
::SpectralAngleDistanceImageFilter()
{
m_ReferencePixel = 0;
}
template <class TInputImage, class TOutputImage>
void
SpectralAngleDistanceImageFilter<TInputImage, TOutputImage>
::BeforeThreadedGenerateData()
{
if (this->GetInput()->GetNumberOfComponentsPerPixel() == 1)
{
itkExceptionMacro(<< "Not valid input image : mono channel image gives a nul output image.");
}
}
template <class TInputImage, class TOutputImage>
void
SpectralAngleDistanceImageFilter<TInputImage, TOutputImage>
::ThreadedGenerateData(const OutputImageRegionType& outputRegionForThread, itk::ThreadIdType threadId)
{
if (m_ReferencePixel.Size() == 0)
{
itkExceptionMacro(<< "Reference pixel is not set!");
}
InputImageConstPointerType inputPtr = this->GetInput();
OutputImagePointerType outputPtr = this->GetOutput();
//inputPtr->UpdateOutputInformation();
// Check if the reference pixel size matches the input image number of components.
if (m_ReferencePixel.GetSize() != inputPtr->GetNumberOfComponentsPerPixel())
{
itkExceptionMacro(<< "Reference pixel size (" << m_ReferencePixel.GetSize() << " and input image pixel size ("
<< inputPtr->GetNumberOfComponentsPerPixel() << ") don't match!");
}
// Define the portion of the input to walk for this thread, using
// the CallCopyOutputRegionToInputRegion method allows for the input
// and output images to be different dimensions
InputImageRegionType inputRegionForThread;
this->CallCopyOutputRegionToInputRegion(inputRegionForThread, outputRegionForThread);
// Define the iterators
itk::ImageRegionConstIterator<InputImageType> inputIt(inputPtr, inputRegionForThread);
itk::ImageRegionIterator<OutputImageType> outputIt(outputPtr, outputRegionForThread);
itk::ProgressReporter progress(this, threadId, outputRegionForThread.GetNumberOfPixels());
inputIt.GoToBegin();
outputIt.GoToBegin();
while (!inputIt.IsAtEnd() && !outputIt.IsAtEnd())
{
double dist = 0.0;
double scalarProd = 0.0;
double normProd = 0.0;
double normProd1 = 0.0;
double normProd2 = 0.0;
InputPixelType pixel = inputIt.Get();
for (unsigned int i = 0; i < pixel.Size(); ++i)
{
scalarProd += pixel[i] * m_ReferencePixel[i];
normProd1 += pixel[i] * pixel[i];
normProd2 += m_ReferencePixel[i] * m_ReferencePixel[i];
}
normProd = normProd1 * normProd2;
if (normProd == 0.0)
{
dist = 0.0;
}
else
{
dist = vcl_acos(scalarProd / vcl_sqrt(normProd));
}
//------ This part was suppressed since the filter must perform only the spectral angle computation ---
// Spectral angle normalization
// dist = dist/(CONST_PI_2);
//square ponderation
// dist = vcl_sqrt(dist);
outputIt.Set(static_cast<OutputPixelType>(dist));
++inputIt;
++outputIt;
progress.CompletedPixel(); // potential exception thrown here
}
}
/**
* PrintSelf Method
*/
template <class TInputImage, class TOutputImage>
void
SpectralAngleDistanceImageFilter<TInputImage, TOutputImage>
::PrintSelf(std::ostream& os, itk::Indent indent) const
{
Superclass::PrintSelf(os, indent);
}
} // End namespace otb
#endif
|