-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhistogramwindow.h
41 lines (35 loc) · 967 Bytes
/
histogramwindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/***********************************************************************
* FILENAME : histogramwindow.h
*
* DESCRIPTION :
* This widget plots a graph of HistogramWidget in a dialog box.
*
* NOTES :
* Associated with histogramwindow.ui
*
* AUTHOR : Matthew R. Miller START DATE : Feburary 7, 2018
*
* CHANGES : N/A - N/A
*
* VERSION DATE WHO DETAIL
* 0.1 02/07/2018 Matthew R. Miller Initial Rev
*
************************************************************************/
#ifndef HISTOGRAMWINDOW_H
#define HISTOGRAMWINDOW_H
#include <QDialog>
namespace Ui {
class HistogramWindow;
}
class HistogramWindow : public QDialog
{
Q_OBJECT
public:
HistogramWindow(QWidget *parent = 0);
HistogramWindow(QImage &image, QWidget *parent = 0);
~HistogramWindow();
void setHistogramData(QImage &image);
private:
Ui::HistogramWindow *ui;
};
#endif // HISTOGRAMWINDOW_H