![]() |
ViSP
3.0.0
|
#include <visp3/core/vpHistogramPeak.h>
Inheritance diagram for vpHistogramPeak:Public Member Functions | |
| vpHistogramPeak () | |
| vpHistogramPeak (unsigned char level, unsigned value) | |
| vpHistogramPeak (const vpHistogramPeak &p) | |
| virtual | ~vpHistogramPeak () |
| vpHistogramPeak & | operator= (const vpHistogramPeak &p) |
| bool | operator== (const vpHistogramPeak &p) const |
| void | setLevel (unsigned char lvl) |
| void | setValue (unsigned val) |
| void | set (unsigned char lvl, unsigned val) |
| unsigned char | getLevel () const |
| unsigned | getValue () const |
Protected Attributes | |
| unsigned char | level |
| unsigned | value |
Friends | |
| VISP_EXPORT std::ostream & | operator<< (std::ostream &s, const vpHistogramPeak &p) |
Declaration of the peak (maximum value) in a gray level image histogram.
A peak is internally represented as a gray level and a value. The value represents the number of pixels having the gray level.
Definition at line 66 of file vpHistogramPeak.h.
| vpHistogramPeak::vpHistogramPeak | ( | ) |
Defaut constructor for a gray level histogram peak.
Definition at line 51 of file vpHistogramPeak.cpp.
| vpHistogramPeak::vpHistogramPeak | ( | unsigned char | lvl, |
| unsigned | val | ||
| ) |
Defaut constructor for a gray level histogram peak.
Definition at line 56 of file vpHistogramPeak.cpp.
| vpHistogramPeak::vpHistogramPeak | ( | const vpHistogramPeak & | p | ) |
Copy constructor of a gray level histogram peak.
Definition at line 62 of file vpHistogramPeak.cpp.
|
inlinevirtual |
Destructor that does nothing.
Definition at line 74 of file vpHistogramPeak.h.
|
inline |
Get the peak gray level. The number of pixels having this gray level is available throw getValue().
Definition at line 133 of file vpHistogramPeak.h.
Referenced by vpHistogram::getPeaks(), and vpHistogram::getValey().
|
inline |
Get the peak number of pixels having a same gray level. The corresponding gray level is available throw getLevel().
Definition at line 147 of file vpHistogramPeak.h.
Referenced by vpHistogram::getPeaks(), and vpHistogram::getValey().
| vpHistogramPeak & vpHistogramPeak::operator= | ( | const vpHistogramPeak & | p | ) |
Copy operator.
| p | : Histogram peak to copy. |
Definition at line 79 of file vpHistogramPeak.cpp.
References level, setLevel(), setValue(), and value.
| bool vpHistogramPeak::operator== | ( | const vpHistogramPeak & | p | ) | const |
Comparison operator.
| p | : Gray level histogram peak to compar. |
Definition at line 95 of file vpHistogramPeak.cpp.
|
inline |
Set the peak gray level and number of pixels at this gray level.
| lvl | : Location of the peak or gray level. |
| val | : Number of pixels having the same location or gray level. |
Definition at line 117 of file vpHistogramPeak.h.
Referenced by vpHistogram::getPeaks(), and vpHistogram::getValey().
|
inline |
Set the peak gray level. To set the number of pixels having this gray level use setValue().
| lvl | : Location of the peak or gray level. |
Definition at line 89 of file vpHistogramPeak.h.
Referenced by operator=().
|
inline |
Set the peak number of pixels having a same gray level. To set the gray level of this peak use setLevel().
| val | : Number of pixels having the same location or gray level. |
Definition at line 103 of file vpHistogramPeak.h.
Referenced by operator=().
|
friend |
std::cout a peak
Definition at line 103 of file vpHistogramPeak.cpp.
|
protected |
Definition at line 159 of file vpHistogramPeak.h.
Referenced by vpHistogramValey::getLevel(), operator=(), vpHistogramValey::operator=(), operator==(), and vpHistogramValey::operator==().
|
protected |
Gray level ot the peak.
Definition at line 160 of file vpHistogramPeak.h.
Referenced by vpHistogramValey::getValue(), operator=(), vpHistogramValey::operator=(), operator==(), and vpHistogramValey::operator==().