-
Notifications
You must be signed in to change notification settings - Fork 7
/
BoosterInputData.h
247 lines (190 loc) · 6.92 KB
/
BoosterInputData.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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
//////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2013 Carlos Becker //
// Ecole Polytechnique Federale de Lausanne //
// Contact <[email protected]> for comments & bug reports //
// //
// This program is free software: you can redistribute it and/or modify //
// it under the terms of the version 3 of the GNU General Public License //
// as published by the Free Software Foundation. //
// //
// This program is distributed in the hope that it will be useful, but //
// WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU //
// General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
//////////////////////////////////////////////////////////////////////////////////
#ifndef _BOOSTER_INPUT_DATA_H_
#define _BOOSTER_INPUT_DATA_H_
#include "ROIData.h"
#include <Eigen/Dense>
#include "globaldefs.h"
#include <memory>
// contains image data, integral images, etc
// To add ROIs, use add(), do not add them directly yourself to ROIs!
struct MultipleROIData
{
typedef std::shared_ptr<ROIData> ROIDataPtr;
// list of ROIs
std::vector<ROIDataPtr> ROIs;
private:
// anisotropy in Z
float mZAnisotropyFactor;
float mInvZAnisotropyFactor; // automatically updated with init()
bool mInitialized;
public:
inline float zAnisotropyFactor() const { return mZAnisotropyFactor; }
inline float invZAnisotropyFactor() const { return mInvZAnisotropyFactor; }
inline bool initialized() const { return mInitialized; }
void clear()
{
ROIs.clear();
}
void add( ROIDataPtr roiPtr )
{
// check if roiPtr was initialized first
if (!roiPtr->initialized())
qFatal("MultipleROIData: trying to add an uninitialized ROI");
// if we have already one, check that the anisotropy factors are the same
if ( this->initialized() && ( roiPtr->zAnisotropyFactor() != zAnisotropyFactor() ) )
qFatal("MultipleROIData: zAnisotropy factor does not match: %f / %f", roiPtr->zAnisotropyFactor(), zAnisotropyFactor());
// update anisotropy factor if first one begin added
if ( ! this->initialized() )
{
// then set anisotropy factor
mZAnisotropyFactor = roiPtr->zAnisotropyFactor();
mInvZAnisotropyFactor = 1.0 / mZAnisotropyFactor;
mInitialized = true;
}
ROIs.push_back(roiPtr);
}
inline unsigned numROIs() const { return ROIs.size(); }
MultipleROIData()
{
mZAnisotropyFactor = mInvZAnisotropyFactor = 0;
mInitialized = false;
}
};
// input to the boosting algorithm
// contains info about all ROIs
struct BoosterInputData
{
// to identify a 3D location
// we use float bcos it avoids cast while training/predicting
typedef Eigen::Vector3f LocType;
typedef std::shared_ptr<MultipleROIData> MultipleROIDataPtr;
typedef std::shared_ptr<const MultipleROIData> MultipleROIDataConstPtr;
MultipleROIDataConstPtr imgData; // image data itself, containing many ROIs
// now data for each sample
std::vector<unsigned> sampROI; // which ROI it belongs to
std::vector<GTPixelType> sampLabels; // its label (0->neg, anything else -> pos)
std::vector<LocType> sampLocation; // x,y,z location
std::vector<unsigned> sampOffset; // offset in terms of the 3D image
private:
bool mInitialized;
public:
inline bool initialized() const { return mInitialized; }
BoosterInputData()
{
mInitialized = false;
}
void clear()
{
sampROI.clear();
sampLabels.clear();
sampLocation.clear();
sampOffset.clear();
}
void showInfo()
{
qDebug("--- BoosterInputData ---");
qDebug("zAnisotropyFactor: %.4f", imgData->zAnisotropyFactor());
qDebug("\tNum ROIs: %lu", imgData->ROIs.size());
unsigned nPos = 0, nNeg = 0;
for (unsigned i=0; i < sampLabels.size(); i++)
if (sampLabels[i] == GTPosLabel)
nPos++;
else
nNeg++;
qDebug("\tNum pos: %u", nPos);
qDebug("\tNum neg: %u", nNeg);
qDebug("--- End BoosterInputData ---");
}
void init( MultipleROIDataConstPtr rois,
bool ignoreGT = false,
bool debugInfo = false,
const int minBorderDist = 10 )
{
// check if rois are correctly initialized
if ( !rois->initialized() )
qFatal("BoosterInputData: rois not initialized properly.");
clear();
imgData = rois;
// z border ignore distance
const int minBorderDistZ = std::min( (int)1, (int)ceil(minBorderDist/rois->zAnisotropyFactor()) );
for (unsigned curROIIdx=0; curROIIdx < imgData->numROIs(); curROIIdx++)
{
const MultipleROIData::ROIDataPtr &roi = imgData->ROIs[curROIIdx];
// find out if GT is there
const bool hasGT = (roi->gtImage.isEmpty() == false) && (!ignoreGT);
unsigned numFound = 0;
if (hasGT)
{
const Matrix3D<GTPixelType> > = roi->gtImage;
const unsigned numVoxels = gt.numElem();
const int maxX = gt.width() - minBorderDist;
const int maxY = gt.height() - minBorderDist;
const int maxZ = gt.depth() - minBorderDistZ;
// cache labels
const GTPixelType posLabel = roi->gtPositiveSampleLabel();
const GTPixelType negLabel = roi->gtNegativeSampleLabel();
// go through the image, find pos/neg samples
for (unsigned i=0; i < numVoxels; i++)
{
const GTPixelType label = gt.data()[i];
if ( (label == posLabel) || (label == negLabel) )
{
{
unsigned x,y,z;
gt.idxToCoord(i, x, y, z); // convert to coords
if ( x < minBorderDist ) continue;
if ( x > maxX ) continue;
if ( y < minBorderDist ) continue;
if ( y > maxY ) continue;
if ( z < minBorderDistZ ) continue;
if ( z > maxZ ) continue;
sampLocation.push_back( LocType(x,y,z) );
}
// translate labels into GTPosLabel and GTNegLabel
sampLabels.push_back( (label == posLabel) ? GTPosLabel : GTNegLabel );
sampOffset.push_back(i);
numFound++;
}
}
}
else
{
const Matrix3D<GTPixelType> &raw = roi->rawImage;
const unsigned numVoxels = raw.numElem();
// go through the image
for (unsigned i=0; i < numVoxels; i++)
{
sampOffset.push_back(i);
{
unsigned x,y,z;
raw.idxToCoord(i, x, y, z); // convert to coords
sampLocation.push_back( LocType(x,y,z) );
}
numFound++;
}
}
// add constant to sampROI
sampROI.insert( sampROI.end(), numFound, curROIIdx );
if (debugInfo)
qDebug("Added ROI %u: %u samples", curROIIdx, numFound);
}
mInitialized = true;
}
};
#endif