Skip to content
Snippets Groups Projects
Commit c911feed authored by Julien Michel's avatar Julien Michel
Browse files

ENH: (Visu Refactoring) Removing histogram generation from image layer generator

parent cadf9032
No related branches found
No related tags found
No related merge requests found
......@@ -27,8 +27,8 @@ namespace otb
/** \class ImageLayerGenerator
* \brief Helper class to generate image layer for visualization.
* This class is a helper class for displayable layer generation.
* It generates a layer with all the needed information, histograms
* and optionnaly quicklook.
* It generates a layer with all the needed information and
* optionnaly quicklook.
*
* It ca also suggest a subsampling rate if a user want to generate
* the quicklook by itself.
......@@ -120,11 +120,6 @@ protected:
*/
virtual void GenerateQuicklook();
/**
* Generate histograms.
*/
virtual void GenerateHistograms();
private:
ImageLayerGenerator(const Self&); // purposely not implemented
void operator=(const Self&); // purposely not implemented
......
......@@ -66,9 +66,6 @@ ImageLayerGenerator<TImageLayer>
// Generate it
this->GenerateQuicklook();
}
// Generate histograms
this->GenerateHistograms();
}
template < class TImageLayer >
......@@ -170,14 +167,6 @@ ImageLayerGenerator<TImageLayer>
}
}
template < class TImageLayer >
void
ImageLayerGenerator<TImageLayer>
::GenerateHistograms()
{
/// TODO: Implement histogram generation
}
template < class TImageLayer >
void
ImageLayerGenerator<TImageLayer>
......
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