#include <Thresholding.h>
Inheritance diagram for prapi::texture::Thresholding< T >:

Public Methods | |
| Thresholding (T lowerThreshold, T upperThreshold=0) | |
| Constructor of thresholding. | |
| ~Thresholding () | |
| The destructor of thresholding. | |
| util::Matrix< T > | getTransformedImage (const util::Matrix< T > &mat) throw (ImageTransformException&) |
| Makes the thresholding for the picture by given threshold. | |
| T | getLowerThreshold (void) const |
| Gives the value of threshold. | |
| T | getUpperThreshold (void) const |
| void | setLowerThreshold (T threshold) |
| Set the new value for threshold. | |
| void | setUpperThreshold (T threshold) |
Protected Methods | |
| Thresholding () | |
| Constructor used if need to calculate threshold before it will be used. | |
Protected Attributes | |
| T | _lowerThreshold |
| _threshold is the value of threshold. | |
| T | _upperThreshold |
|
||||||||||||||||
|
Constructor of thresholding.
|
|
||||||||||
|
Makes the thresholding for the picture by given threshold.
Implements prapi::ImageTransform< T, T >. Reimplemented in prapi::texture::HysteresisThresholding< T >. |