#include <VHistogram.h>
Public Member Functions | |
VHistogram (int *, int, int, int, int, int) | |
~VHistogram (void) | |
void | draw () |
Private Attributes | |
int * | hist |
int | length |
int | width |
int | height |
int | x |
int | y |
vector< int > | clamped_hist |
int | peak |
Definition at line 10 of file VHistogram.h.
VHistogram::VHistogram | ( | int * | , | |
int | , | |||
int | , | |||
int | , | |||
int | , | |||
int | ||||
) |
Konstruktor
hist | Array der Dichtewerte | |
length | Länge des Arrays der Dichtewerte = 4096 | |
x | x Position des Histogramms | |
y | y Position des Histogramms | |
width | Breite des Histogramms | |
height | Höhe des Histogramms |
Definition at line 11 of file VHistogram.cpp.
References clamped_hist, and peak.
VHistogram::~VHistogram | ( | void | ) |
void VHistogram::draw | ( | ) |
Definition at line 33 of file VHistogram.cpp.
References clamped_hist, x, and y.
Referenced by VTransferFunctionElement::draw().
int* VHistogram::hist [private] |
int VHistogram::length [private] |
Länge des Arrays der Dichtewerte = 4096
Definition at line 15 of file VHistogram.h.
int VHistogram::width [private] |
Definition at line 16 of file VHistogram.h.
int VHistogram::height [private] |
Definition at line 17 of file VHistogram.h.
int VHistogram::x [private] |
int VHistogram::y [private] |
vector<int> VHistogram::clamped_hist [private] |
bearbeitetes Histogramm (neue Klasseneinteilung)
Definition at line 21 of file VHistogram.h.
Referenced by draw(), VHistogram(), and ~VHistogram().
int VHistogram::peak [private] |