-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHistogram.cpp
139 lines (118 loc) · 4.56 KB
/
Histogram.cpp
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#include "mainwindow.h"
#include "ui_mainwindow.h"
void MainWindow:: OnShowHistogramClicked()
{
histSize[0] = 256;
// BGR values range
hranges[0] = 0.0;
hranges[1] = 255.0;
ranges[0] = hranges;
channel[0] = 0;
//const unsigned int MeasurementVectorSize = 1;
//const unsigned int binsPerDimension = 30;
vtkSmartPointer<vtkJPEGReader> src = vtkSmartPointer<vtkJPEGReader>::New();
src->SetFileName((const char*)filename.toStdString().c_str());
src->Update();
int numComponents = src->GetOutput()->GetNumberOfScalarComponents();
/*if( numComponents > 3 )
{
std::cout << "Error: cannot process an image with "
<< numComponents << " components!" << std::endl;
return EXIT_FAILURE;
}*/
/*
typedef itk::Statistics::ImageToHistogramFilter<ImageType> ImageToHistogramFilterType;
ImageToHistogramFilterType::HistogramType::MeasurementVectorType lowerBound(binsPerDimension);
lowerBound.Fill(hranges[0]);
ImageToHistogramFilterType::HistogramType::MeasurementVectorType upperBound(binsPerDimension);
upperBound.Fill(hranges[1]);
ImageToHistogramFilterType::HistogramType::SizeType size(MeasurementVectorSize);
size.Fill(binsPerDimension);
ImageToHistogramFilterType::Pointer imageToHistogramFilter=ImageToHistogramFilterType::New();
imageToHistogramFilter->SetInput(src);
imageToHistogramFilter->SetHistogramBinMinimum(lowerBound);
imageToHistogramFilter->SetHistogramBinMaximum(upperBound);
imageToHistogramFilter->SetHistogramSize(size);
imageToHistogramFilter->SetAutoMinimumMaximum(false);
imageToHistogramFilter->Update();
//ImageToHistogramFilterType::HistogramType* histogram = imageToHistogramFilter->GetOutput();
unsigned int totalBins = 1;
*/
vtkSmartPointer<vtkXYPlotActor> plot=
vtkSmartPointer<vtkXYPlotActor>::New();
plot->ExchangeAxesOff();
plot->SetLabelFormat("%g");
plot->SetXTitle("Level");
plot->SetYTitle("Frequency");
plot->SetXValuesToValue();
double xmax = 0.;
double ymax = 0.;
double colors[3][3]={
{1,0,0},
{0,1,0},
{0,0,1}
};
const char* labels[3] = {"Red","Green","Blue"};
for( int i = 0; i < numComponents; ++i )
{
vtkSmartPointer<vtkImageExtractComponents> extract =
vtkSmartPointer<vtkImageExtractComponents>::New();
extract->SetInputConnection( src->GetOutputPort() );
extract->SetComponents( i );
extract->Update();
double range[2];
extract->GetOutput()->GetScalarRange( range );
vtkSmartPointer<vtkImageAccumulate> histogram =
vtkSmartPointer<vtkImageAccumulate>::New();
histogram->SetInputConnection( extract->GetOutputPort() );
histogram->SetComponentExtent(
0,
static_cast<int>(range[1])-static_cast<int>(range[0])-1,0,0,0,0 );
histogram->SetComponentOrigin( range[0],0,0 );
histogram->SetComponentSpacing( 1,0,0 );
int ignoreZero = 0;
histogram->SetIgnoreZero( ignoreZero );
histogram->Update();
if( range[1] > xmax )
{
xmax = range[1];
}
if( histogram->GetOutput()->GetScalarRange()[1] > ymax )
{
ymax = histogram->GetOutput()->GetScalarRange()[1];
}
#if VTK_MAJOR_VERSION <= 5
plot->AddInput( histogram->GetOutput() );
#else
plot->AddDataSetInputConnection( histogram->GetOutputPort() );
#endif
if( numComponents > 1 )
{
plot->SetPlotColor(i,colors[i]);
plot->SetPlotLabel(i,labels[i]);
plot->LegendOn();
}
}
plot->SetXRange( 0, xmax );
plot->SetYRange( 0, ymax );
// Visualize the histogram(s)
vtkSmartPointer<vtkRenderer> histRenderer =
vtkSmartPointer<vtkRenderer>::New();
histRenderer->AddActor(plot);
histRenderer->ResetCamera();
ui->qvtkWidget_2->GetRenderWindow()->AddRenderer(histRenderer);
ui->qvtkWidget_2->GetRenderWindow()->Render();
//ui->qvtkWidget_2->GetInteractor()->SetRenderWindow();
//ui->qvtkWidget_2->GetInteractor()->Render();
//ui->qvtkWidget_2->GetRenderWindow()->SetSize(640,480);
/*
vtkSmartPointer<vtkRenderWindowInteractor> interactor =
vtkSmartPointer<vtkRenderWindowInteractor>::New();
interactor->SetRenderWindow(
ui->qvtkWidget_2->GetRenderWindow() );
// Initialize the event loop and then start it
interactor->Initialize();
interactor->Start();
*/
//return EXIT_SUCCESS;
}