Skip to content
Snippets Groups Projects
Commit fed625b9 authored by Otmane Lahlou's avatar Otmane Lahlou
Browse files

STYLE

parent c32e25de
No related branches found
No related tags found
No related merge requests found
......@@ -33,20 +33,20 @@ void
ShiftScaleSampleListFilter<TInputSampleList,TOutputSampleList>
::GenerateData()
{
// Retrieve input and output pointers
typename InputSampleListObjectType::ConstPointer inputPtr = this->GetInput();
typename OutputSampleListObjectType::Pointer outputPtr = this->GetOutput();
// Retrieve input and output pointers
typename InputSampleListObjectType::ConstPointer inputPtr = this->GetInput();
typename OutputSampleListObjectType::Pointer outputPtr = this->GetOutput();
// Retrieve the ListSample
InputSampleListConstPointer inputSampleListPtr = inputPtr->Get();
OutputSampleListPointer outputSampleListPtr = const_cast<OutputSampleListType *>(outputPtr->Get());
// Compute the 1/(sigma) vector
InputMeasurementVectorType invertedScales = m_Scales;
for(unsigned int idx = 0;idx < invertedScales.Size();++idx)
{
invertedScales[idx] = 1 / m_Scales[idx];
}
// Compute the 1/(sigma) vector
InputMeasurementVectorType invertedScales = m_Scales;
for(unsigned int idx = 0;idx < invertedScales.Size();++idx)
{
invertedScales[idx] = 1 / m_Scales[idx];
}
// Clear any previous output
outputSampleListPtr->Clear();
......@@ -61,24 +61,24 @@ ShiftScaleSampleListFilter<TInputSampleList,TOutputSampleList>
{
// Retrieve current input sample
InputMeasurementVectorType currentInputMeasurement = inputIt.GetMeasurementVector();
// Build current output sample
OutputMeasurementVectorType currentOutputMeasurement;
currentOutputMeasurement.SetSize(currentInputMeasurement.GetSize());
// Center and reduce each component
for(unsigned int idx = 0;idx < invertedScales.Size();++idx)
{
currentOutputMeasurement[idx] = static_cast<OutputValueType>(
(currentInputMeasurement[idx]-m_Shifts[idx])*invertedScales[idx]);
}
// Add the current output sample to the output SampleList
outputSampleListPtr->PushBack(currentOutputMeasurement);
// Update progress
progress.CompletedPixel();
++inputIt;
}
}
......@@ -92,7 +92,6 @@ ShiftScaleSampleListFilter<TInputSampleList,TOutputSampleList>
Superclass::PrintSelf(os,indent);
}
} // End namespace Statistics
} // End namespace otb
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment