eLynx SDK
v3.3.0 C++ image processing API reference |
Interface for image analyse methods. More...
#include <IImageAnalyse.h>
Public Member Functions | |
virtual bool | ComputeMin (const AbstractImage &iImage, double &oMin, bool ibNormalized) const =0 |
virtual bool | ComputeMin (const AbstractImage &iImage, double(&oMin)[PC_MAX], bool ibNormalized) const =0 |
virtual bool | ComputeMinLuminance (const AbstractImage &iImage, double &oMinLuminance, bool ibNormalized) const =0 |
virtual bool | ComputeMax (const AbstractImage &iImage, double &oMax, bool ibNormalized) const =0 |
virtual bool | ComputeMax (const AbstractImage &iImage, double(&oMax)[PC_MAX], bool ibNormalized) const =0 |
virtual bool | ComputeMaxLuminance (const AbstractImage &iImage, double &oMaxLuminance, bool ibNormalized) const =0 |
virtual bool | ComputeMinMax (const AbstractImage &iImage, double &oMin, double &oMax, bool ibNormalized) const =0 |
virtual bool | ComputeMinMax (const AbstractImage &iImage, double(&oMin)[PC_MAX], double(&oMax)[PC_MAX], bool ibNormalized) const =0 |
virtual bool | ComputeMinMaxLuminance (const AbstractImage &iImage, double &oMinLuminance, double &oMaxLuminance, bool ibNormalized) const =0 |
virtual bool | ComputeMean (const AbstractImage &iImage, double &oMean, bool ibNormalized) const =0 |
virtual bool | ComputeMean (const AbstractImage &iImage, double(&oMean)[PC_MAX], bool ibNormalized) const =0 |
virtual bool | ComputeMedian (const AbstractImage &iImage, double &oMedian, bool ibNormalized) const =0 |
virtual bool | ComputeMedian (const AbstractImage &iImage, double(&oMedian)[PC_MAX], bool ibNormalized) const =0 |
virtual bool | ComputeStandardDeviation (const AbstractImage &iImage, double &oDeviation, bool ibNormalized) const =0 |
virtual bool | ComputeStandardDeviation (const AbstractImage &iImage, double(&oDeviation)[PC_MAX], bool ibNormalized) const =0 |
virtual bool | ComputeStandardDeviation (const AbstractImage &iImage, double &oDeviation, double &oMean, bool ibNormalized) const =0 |
virtual bool | ComputeStandardDeviation (const AbstractImage &iImage, double(&oDeviation)[PC_MAX], double(&oMean)[PC_MAX], bool ibNormalized) const =0 |
virtual bool | ComputeVariance (const AbstractImage &iImage, double &oVariance) const =0 |
virtual bool | ComputeVariance (const AbstractImage &iImage, double(&oVariance)[PC_MAX]) const =0 |
virtual bool | ComputeEnergy (const AbstractImage &iImage, double &oEnergy) const =0 |
virtual bool | ComputeEnergy (const AbstractImage &iImage, double(&oEnergy)[PC_MAX]) const =0 |
virtual bool | ComputeEntropy (const AbstractImage &iImage, double &oEntropy) const =0 |
virtual bool | ComputeEntropy (const AbstractImage &iImage, double(&oEntropy)[PC_MAX]) const =0 |
virtual bool | ComputeHistogram (const AbstractImage &iImage, ImageHistogram &oHistogram) const =0 |
Interface for image analyse methods.
Analyse methods just compute some values from map. They do not modify image.