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

Replace static tabs by vectors to store the selected mailles into...

Replace static tabs by vectors to store the selected mailles into otbSARAmplitudeEstimationImageFilter
parent edad43b5
No related branches found
No related tags found
No related merge requests found
......@@ -170,9 +170,10 @@ protected:
ImageInPixelType CLZY_OutSideDown,int firstCol_into_outputRegion,
int nbCol_into_outputRegion, ImageOutPixelType * outValueAmplitude);
bool AmplitudeEstimation(int ind_LineSAR, int nbMailles, ImageInPixelType * CLZY_InSideUp_Tab,
ImageInPixelType * CLZY_InSideDown_Tab, ImageInPixelType * CLZY_OutSideUp_Tab,
ImageInPixelType * CLZY_OutSideDown_Tab, int firstCol_into_outputRegion,
bool AmplitudeEstimation(int ind_LineSAR, int nbMailles, std::vector<ImageInPixelType> * CLZY_InSideUp_Vec,
std::vector<ImageInPixelType> * CLZY_InSideDown_Vec,
std::vector<ImageInPixelType> * CLZY_OutSideUp_Vec,
std::vector<ImageInPixelType> * CLZY_OutSideDown_Vec, int firstCol_into_outputRegion,
int nbCol_into_outputRegion, ImageOutPixelType * outValueAmplitude);
private:
......
This diff is collapsed.
......@@ -175,7 +175,6 @@ SARDEMProjectionImageFilter< TImageIn, TImageOut >
ImageOutPixelType pixelOutput;
pixelOutput.Reserve(4);
// For each Line in MNT
while ( !InIt.IsAtEnd())
{
......
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