#include <ImageProcessing.hpp>
Public Member Functions | |
| virtual | ~ImageProcessing () |
| Virtual destructor. | |
| virtual void | filterOnCopy (const Image< T > &img, Image< T > &result)=0 |
| Processing applied on copy of image. | |
| virtual void | filter (Image< T > &img)=0 |
| Processing applied in place on image. | |
Definition at line 50 of file ImageProcessing.hpp.
| virtual kn::ImageProcessing< T >::~ImageProcessing | ( | ) | [inline, virtual] |
| virtual void kn::ImageProcessing< T >::filter | ( | Image< T > & | img | ) | [pure virtual] |
Processing applied in place on image.
| img | Image to process |
Implemented in kn::ImageConvolution< T >.
| virtual void kn::ImageProcessing< T >::filterOnCopy | ( | const Image< T > & | img, | |
| Image< T > & | result | |||
| ) | [pure virtual] |
Processing applied on copy of image.
| img | Image to process | |
| result | Result image |
Implemented in kn::ImageConvolution< T >.
1.5.8