Skip to content
Snippets Groups Projects
Commit 69f495c7 authored by Gaëlle USSEGLIO's avatar Gaëlle USSEGLIO
Browse files

BUG : Correction into keyword list for number of samples and of lines

parent e98b1e4a
No related branches found
No related tags found
No related merge requests found
......@@ -99,8 +99,8 @@ SarBurstExtractionImageFilter<TImage>::GenerateOutputInformation()
largestPossibleRegion.SetSize(burstSize);
outputPtr->SetLargestPossibleRegion(largestPossibleRegion);
newKwl.AddKey("support_data_number_samples", std::to_string(burstSize[0]));
newKwl.AddKey("support_data_number_lines", std::to_string(burstSize[1]));
newKwl.AddKey("support_data.number_samples", std::to_string(burstSize[0]));
newKwl.AddKey("support_data.number_lines", std::to_string(burstSize[1]));
newKwl.AddKey("number_samples", std::to_string(burstSize[0]));
newKwl.AddKey("number_lines", std::to_string(burstSize[1]));
......
......@@ -74,10 +74,10 @@ SarConcatenateBurstsImageFilter<TImage>
// Output KeywordList
ImageType * outputPtr = this->GetOutput();
m_DeburstSLCImageKWL.AddKey("support_data_number_samples", std::to_string(this->GetOutput()->
m_DeburstSLCImageKWL.AddKey("support_data.number_samples", std::to_string(this->GetOutput()->
GetLargestPossibleRegion().
GetSize()[0]));
m_DeburstSLCImageKWL.AddKey("support_data_number_lines", std::to_string(this->GetOutput()->
m_DeburstSLCImageKWL.AddKey("support_data.number_lines", std::to_string(this->GetOutput()->
GetLargestPossibleRegion().
GetSize()[1]));
......
......@@ -143,8 +143,8 @@ SarDeburstImageFilter<TImage>::GenerateOutputInformation()
largestPossibleRegion.SetSize(deburstSize);
outputPtr->SetLargestPossibleRegion(largestPossibleRegion);
newKwl.AddKey("support_data_number_samples", std::to_string(deburstSize[0]));
newKwl.AddKey("support_data_number_lines", std::to_string(deburstSize[1]));
newKwl.AddKey("support_data.number_samples", std::to_string(deburstSize[0]));
newKwl.AddKey("support_data.number_lines", std::to_string(deburstSize[1]));
newKwl.AddKey("number_samples", std::to_string(deburstSize[0]));
newKwl.AddKey("number_lines", std::to_string(deburstSize[1]));
......
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