|
eLynx SDK
v3.3.0 C++ image processing API reference |
Implementation of global to point image processing interface. More...
#include <ImageGlobalProcessingImpl.h>
Public Member Functions | |
Generic virtual services | |
| virtual bool | Normalize (AbstractImage &ioImage, uint32 iChannelMask=CM_All, ProgressNotifier &iNotifier=ProgressNotifier_NULL) const |
| Normalize an image. | |
| virtual bool | EqualizeHistogram (AbstractImage &ioImage, uint32 iChannelMask=CM_All, ProgressNotifier &iNotifier=ProgressNotifier_NULL) const |
| Equalize an image histogram. | |
| virtual bool | AutoBrightness (AbstractImage &ioImage, ProgressNotifier &iNotifier=ProgressNotifier_NULL) const |
| AutoBrightness of selected channels. | |
| virtual bool | AutoContrast (AbstractImage &ioImage, ProgressNotifier &iNotifier=ProgressNotifier_NULL) const |
| AutoContrast of selected channels. | |
| virtual bool | AutoColor (AbstractImage &ioImage, ProgressNotifier &iNotifier=ProgressNotifier_NULL) const |
| AutoColor enhancement on selected channels. | |
| virtual bool | AutoBalance (AbstractImage &ioImage, ProgressNotifier &iNotifier=ProgressNotifier_NULL) const |
| AutoBalance enhancement of color white balance on selected channels. | |
| virtual bool | DeconvolveRL (AbstractImage &ioImage, const IImagePSF &iPSF, uint32 iIterations, EBorderFill iBorder, uint32 iChannelMask=CM_All, ProgressNotifier &iNotifier=ProgressNotifier_NULL) const |
| Performs given number of iterations of Richardson-Lucy deconvolution on given image, using specified point spread function. | |
| virtual bool | ApplyFFT (AbstractImage &ioImage, const AbstractImage &iFilter, uint32 iChannelMask=CM_All, ProgressNotifier &iNotifier=ProgressNotifier_NULL) const |
| virtual bool | ApplyFFTLowPass (AbstractImage &ioImage, double iCutoff=0.5, uint32 iRank=2, uint32 iChannelMask=CM_All, ProgressNotifier &iNotifier=ProgressNotifier_NULL) const |
Static Public Member Functions | |
Specialized static services | |
| static bool | Normalize (ImageImpl< Pixel > &ioImage, uint32 iChannelMask=CM_All, ProgressNotifier &iNotifier=ProgressNotifier_NULL) |
| static bool | EqualizeHistogram (ImageImpl< Pixel > &ioImage, uint32 iChannelMask=CM_All, ProgressNotifier &iNotifier=ProgressNotifier_NULL) |
| static bool | AutoBrightness (ImageImpl< Pixel > &ioImage, ProgressNotifier &iNotifier=ProgressNotifier_NULL) |
| static bool | DeconvolveRL (ImageImpl< Pixel > &ioImage, const IImagePSF &iPSF, uint32 iIterations, EBorderFill iBorder, uint32 iChannelMask=CM_All, ProgressNotifier &iNotifier=ProgressNotifier_NULL) |
| static bool | ApplyFFT (ImageImpl< Pixel > &ioImage, const ImageImpl< PixelL< typename ResolutionTypeTraits< typename Pixel::type >::Floating_type > > &iFilter, uint32 iChannelMask=CM_All, ProgressNotifier &iNotifier=ProgressNotifier_NULL) |
| static bool | ApplyFFTLowPass (ImageImpl< Pixel > &ioImage, double iCutoff=0.5, uint32 iRank=2, uint32 iChannelMask=CM_All, ProgressNotifier &iNotifier=ProgressNotifier_NULL) |
Implementation of global to point image processing interface.
| virtual bool eLynx::Image::ImageGlobalProcessingImpl< Pixel >::AutoBalance | ( | AbstractImage & | ioImage, |
| ProgressNotifier & | iNotifier = ProgressNotifier_NULL |
||
| ) | const [virtual] |
AutoBalance enhancement of color white balance on selected channels.
| ioImage | image to process. |
| iNotifier | a notifier for progression, log and cancel. |
Implements eLynx::Image::IImageGlobalProcessing.
| virtual bool eLynx::Image::ImageGlobalProcessingImpl< Pixel >::AutoBrightness | ( | AbstractImage & | ioImage, |
| ProgressNotifier & | iNotifier = ProgressNotifier_NULL |
||
| ) | const [virtual] |
AutoBrightness of selected channels.
| ioImage | image to process. |
| iNotifier | a notifier for progression, log and cancel. |
Implements eLynx::Image::IImageGlobalProcessing.
| virtual bool eLynx::Image::ImageGlobalProcessingImpl< Pixel >::AutoColor | ( | AbstractImage & | ioImage, |
| ProgressNotifier & | iNotifier = ProgressNotifier_NULL |
||
| ) | const [virtual] |
AutoColor enhancement on selected channels.
| ioImage | image to process. |
| iNotifier | a notifier for progression, log and cancel. |
Implements eLynx::Image::IImageGlobalProcessing.
| virtual bool eLynx::Image::ImageGlobalProcessingImpl< Pixel >::AutoContrast | ( | AbstractImage & | ioImage, |
| ProgressNotifier & | iNotifier = ProgressNotifier_NULL |
||
| ) | const [virtual] |
AutoContrast of selected channels.
| ioImage | image to process. |
| iNotifier | a notifier for progression, log and cancel. |
Implements eLynx::Image::IImageGlobalProcessing.
| virtual bool eLynx::Image::ImageGlobalProcessingImpl< Pixel >::DeconvolveRL | ( | AbstractImage & | ioImage, |
| const IImagePSF & | iPSF, | ||
| uint32 | iIterations, | ||
| EBorderFill | iBorder, | ||
| uint32 | iChannelMask = CM_All, |
||
| ProgressNotifier & | iNotifier = ProgressNotifier_NULL |
||
| ) | const [virtual] |
Performs given number of iterations of Richardson-Lucy deconvolution on given image, using specified point spread function.
| ioImage | image to process |
| iPSF | the point spread function |
| iIterations | the number of iterations to be done |
| iBorder | how to fill border. |
| iChannelMask | selected channels to be processed. Default is all. |
| iNotifier | a notifier for progression, log and cancel. |
Implements eLynx::Image::IImageGlobalProcessing.
| virtual bool eLynx::Image::ImageGlobalProcessingImpl< Pixel >::EqualizeHistogram | ( | AbstractImage & | ioImage, |
| uint32 | iChannelMask = CM_All, |
||
| ProgressNotifier & | iNotifier = ProgressNotifier_NULL |
||
| ) | const [virtual] |
Equalize an image histogram.
| ioImage | image to process. |
| iChannelMask | selected channels to be processed. Default is all. |
| iNotifier | a notifier for progression, log and cancel. |
Implements eLynx::Image::IImageGlobalProcessing.
| virtual bool eLynx::Image::ImageGlobalProcessingImpl< Pixel >::Normalize | ( | AbstractImage & | ioImage, |
| uint32 | iChannelMask = CM_All, |
||
| ProgressNotifier & | iNotifier = ProgressNotifier_NULL |
||
| ) | const [virtual] |
Normalize an image.
| ioImage | image to normalize. |
| iChannelMask | selected channels to be processed. Default is all. |
| iNotifier | a notifier for progression, log and cancel. |
Implements eLynx::Image::IImageGlobalProcessing.