-
Notifications
You must be signed in to change notification settings - Fork 31
/
PatchMatch2.h
320 lines (274 loc) · 12.8 KB
/
PatchMatch2.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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
#ifndef __VW_STEREO_PATCHMATCH2_H__
#define __VW_STEREO_PATCHMATCH2_H__
#include <vw/Math/BBox.h>
#include <vw/Math/Vector.h>
#include <vw/Image/Filter.h>
#include <vw/Image/ImageMath.h>
#include <vw/Image/ImageView.h>
#include <vw/Image/ImageViewBase.h>
#include <vw/Image/Manipulation.h>
#include <vw/Image/Statistics.h>
#include <vw/Image/Transform.h>
#include <vw/Stereo/Correlate.h>
#include <vw/Stereo/CostFunctions.h>
#ifdef DEBUG
#include <iomanip>
#include <vw/FileIO.h>
#endif
namespace boost {
namespace random {
class rand48;
}
}
namespace vw {
namespace stereo {
class PatchMatchBase {
protected:
BBox2i m_search_region;
BBox2i m_search_region_rl;
Vector2i m_kernel_size;
Vector2i m_expansion;
float m_consistency_threshold;
int32 m_max_iterations;
BBox2i m_kernel_roi;
BBox2i m_kernel_roi_left_p, m_kernel_roi_left_n;
BBox2i m_kernel_roi_right_p, m_kernel_roi_right_n;
BBox2i m_kernel_roi_top_p, m_kernel_roi_top_n;
BBox2i m_kernel_roi_bottom_p, m_kernel_roi_bottom_n;
BBox2i m_kernel_roi_tl_p1, m_kernel_roi_tl_p2,
m_kernel_roi_tl_n1, m_kernel_roi_tl_n2;
ImageView<float> patch;
typedef Vector2i DispT;
typedef boost::random::rand48 GenT;
void add_uniform_noise(BBox2i const& range_of_noise_to_add,
BBox2i const& max_search_range,
BBox2i const& other_image_bbox,
ImageView<DispT>& disparity ) const;
// Simple square kernels
float calculate_cost( Vector2i const& a_loc, Vector2i const& disparity,
ImageView<float> const& a, ImageView<float> const& b,
BBox2i const& a_roi, BBox2i const& b_roi,
BBox2i const& kernel_roi) const;
// Evaluates current disparity and writes its cost
void evaluate_disparity( ImageView<float> const& a, ImageView<float> const& b,
BBox2i const& a_roi, BBox2i const& b_roi,
ImageView<DispT>& ab_disparity,
ImageView<float>& ab_cost ) const;
// Evaluates current disparity and writes its cost .. but
// compares to the prior existing solution to decide if it is
// really needed to be evaluated.
void evaluate_disparity( ImageView<float> const& a, ImageView<float> const& b,
BBox2i const& a_roi, BBox2i const& b_roi,
ImageView<DispT> const& ab_disparity_prior,
ImageView<float> const& ab_cost_prior,
ImageView<DispT>& ab_disparity,
ImageView<float>& ab_cost ) const;
void keep_lowest_cost( ImageView<DispT> const& src_disp,
ImageView<float> const& src_cost,
ImageView<DispT>& dest_disp,
ImageView<float>& dest_cost ) const;
// Propogates from the 3x3 neighbor hood
void evaluate_8_connected( ImageView<float> const& a,
ImageView<float> const& b,
BBox2i const& a_roi, BBox2i const& b_roi,
ImageView<DispT> const& ba_disparity,
BBox2i const& ba_roi,
ImageView<DispT>& ab_disparity,
ImageView<float>& ab_cost) const;
void cross_corr_consistency_check(ImageView<DispT> const& ab_disparity,
ImageView<DispT> const& ba_disparity,
BBox2i const& ab_roi,
BBox2i const& ba_roi,
ImageView<PixelMask<DispT> >& ab_masked_disp) const;
public:
PatchMatchBase( BBox2i const& bbox, Vector2i const& kernel,
float consistency_threshold, int32 max_iterations );
};
template <class Image1T, class Image2T>
class PatchMatchView : public ImageViewBase<PatchMatchView<Image1T, Image2T> >, PatchMatchBase {
Image1T m_left_image;
Image2T m_right_image;
// Types to help me when program
typedef typename Image1T::pixel_type Pixel1T;
typedef typename Image2T::pixel_type Pixel2T;
template <class ImageT, class TransformT>
TransformView<vw::InterpolationView<ImageT, BilinearInterpolation>, TransformT>
inline transform_no_edge( ImageViewBase<ImageT> const& v,
TransformT const& transform_func ) const {
return TransformView<InterpolationView<ImageT, BilinearInterpolation>, TransformT>( InterpolationView<ImageT, BilinearInterpolation>( v.impl() ), transform_func );
}
public:
typedef PixelMask<DispT> pixel_type;
typedef pixel_type result_type;
typedef ProceduralPixelAccessor<PatchMatchView> pixel_accessor;
// Search region values are inclusive.
PatchMatchView( ImageViewBase<Image1T> const& left,
ImageViewBase<Image2T> const& right,
BBox2i const& search_region, Vector2i const& kernel_size,
float consistency_threshold = 1,
int32 max_iterations = 6) :
PatchMatchBase(search_region, kernel_size,
consistency_threshold,
max_iterations),
m_left_image(left.impl()), m_right_image(right.impl()) {
}
// Standard required ImageView interfaces
inline int32 cols() const { return m_left_image.cols(); }
inline int32 rows() const { return m_left_image.rows(); }
inline int32 planes() const { return 1; }
inline pixel_accessor origin() const { return pixel_accessor( *this, 0, 0 ); }
inline pixel_type operator()( int32 /*i*/, int32 /*j*/, int32 /*p*/ = 0) const {
vw_throw( NoImplErr() << "PatchMatchView::operator()(....) has not been implemented." );
return pixel_type();
}
// Block rasterization section that does actual work
typedef CropView<ImageView<pixel_type> > prerasterize_type;
inline prerasterize_type prerasterize(BBox2i const& bbox) const {
// TODO: Check search range to see if correlation is even
// possible given the values of search range. Also consider
// cropping search range based on inputs.
// 1. Define Left ROI.
BBox2i l_roi = bbox;
// 2. Define Right ROI.
BBox2i r_roi = l_roi;
r_roi.min() += m_search_region.min();
r_roi.max() += m_search_region.max();
// Crop by the image bounds as we don't want to be calculating
// disparities for interpolated regions.
r_roi.crop( bounding_box( m_right_image ) );
// 3. Define Left Expanded ROI. This is where all the possible
// places we might make a pixel access to in the left.
BBox2i l_exp_roi = l_roi;
l_exp_roi.min() -= m_expansion;
l_exp_roi.max() += m_expansion;
// 4. Define Right Expanded ROI.
BBox2i r_exp_roi = r_roi;
r_exp_roi.min() -= m_expansion;
r_exp_roi.max() += m_expansion;
#ifdef DEBUG
std::cout << "Search: " << m_search_region << " Exp: "
<< m_expansion << " Right: " << bounding_box(m_right_image)
<< std::endl;
std::cout << "L_ROI: " << l_roi << std::endl;
std::cout << "R_ROI: " << r_roi << std::endl;
std::cout << "L_EXP_ROI: " << l_exp_roi << std::endl;
std::cout << "R_EXP_ROI: " << r_exp_roi << std::endl;
#endif
// 6. Allocate buffers
ImageView<float> l_exp( crop( edge_extend(m_left_image), l_exp_roi ) );
ImageView<float> r_exp( crop( edge_extend(m_right_image), r_exp_roi ) );
ImageView<DispT>
l_disp( l_roi.width(), l_roi.height() ), l_disp_cpy( l_roi.width(), l_roi.height() ),
r_disp( r_roi.width(), r_roi.height() ), r_disp_cpy( r_roi.width(), r_roi.height() );
ImageView<float>
l_cost( l_roi.width(), l_roi.height() ), l_cost_cpy( l_roi.width(), l_roi.height() ),
r_cost( r_roi.width(), r_roi.height() ), r_cost_cpy( r_roi.width(), r_roi.height() );
fill( l_disp, DispT() ); // TODO Is this needed?
fill( r_disp, DispT() );
// 7. Write uniform noise
add_uniform_noise(m_search_region, m_search_region,
r_roi - l_roi.min(), l_disp);
#ifndef DISABLE_RL
add_uniform_noise(m_search_region_rl, m_search_region_rl,
l_roi - r_roi.min(), r_disp );
#endif
// 8. Evaluate the current disparities
evaluate_disparity(l_exp, r_exp,
l_exp_roi - l_roi.min(),
r_exp_roi - l_roi.min(),
l_disp, l_cost);
#ifndef DISABLE_RL
evaluate_disparity(r_exp, l_exp,
r_exp_roi - r_roi.min(),
l_exp_roi - r_roi.min(),
r_disp, r_cost);
#endif
#ifdef DEBUG
std::cout << std::setprecision(10)
<< "Starting cost:\t" << sum_of_pixel_values(l_cost) << std::endl;
#endif
// 9. Implement iterative search.
for ( int iteration = 0; iteration < m_max_iterations; iteration++ ) {
{ // Propogate
evaluate_8_connected(l_exp, r_exp,
l_exp_roi - l_roi.min(),
r_exp_roi - l_roi.min(),
r_disp, r_roi - l_roi.min(),
l_disp, l_cost);
#ifndef DISABLE_RL
evaluate_8_connected(r_exp, l_exp,
r_exp_roi - r_roi.min(),
l_exp_roi - r_roi.min(),
l_disp, l_roi - r_roi.min(),
r_disp, r_cost);
#endif
}
{ // Add noise
l_disp_cpy = copy(l_disp);
r_disp_cpy = copy(r_disp);
float scaling_size = 1.0 / pow(2.0, iteration + 1);
Vector2f search_size_half =
scaling_size * Vector2f(m_search_region.size());
add_uniform_noise(BBox2f(-search_size_half, search_size_half),
m_search_region,
r_roi - l_roi.min(), l_disp_cpy);
#ifndef DISABLE_RL
add_uniform_noise(BBox2f(-search_size_half, search_size_half),
m_search_region_rl,
l_roi - r_roi.min(), r_disp_cpy);
#endif
evaluate_disparity(l_exp, r_exp,
l_exp_roi - l_roi.min(),
r_exp_roi - l_roi.min(),
//l_disp, l_cost,
l_disp_cpy, l_cost_cpy);
#ifndef DISABLE_RL
evaluate_disparity(r_exp, l_exp,
r_exp_roi - r_roi.min(),
l_exp_roi - r_roi.min(),
//r_disp, r_cost,
r_disp_cpy, r_cost_cpy);
#endif
keep_lowest_cost(l_disp_cpy, l_cost_cpy,
l_disp, l_cost);
#ifndef DISABLE_RL
keep_lowest_cost(r_disp_cpy, r_cost_cpy,
r_disp, r_cost);
#endif
}
} // end of iterations
#ifdef DEBUG
std::cout << std::setprecision(10)
<< "Ending cost:\t" << sum_of_pixel_values(l_cost) << std::endl;
#endif
#ifndef DISABLE_RL
ImageView<pixel_type > final_disparity(l_disp.cols(), l_disp.rows());
cross_corr_consistency_check(l_disp, r_disp,
l_roi, r_roi,
final_disparity);
#else
ImageView<pixel_type> final_disparity = l_disp;
#endif
return prerasterize_type(final_disparity,
-bbox.min().x(), -bbox.min().y(),
cols(), rows());
}
template <class DestT>
inline void rasterize(DestT const& dest, BBox2i const& bbox) const {
vw::rasterize(prerasterize(bbox), dest, bbox);
}
};
template <class Image1T, class Image2T>
PatchMatchView<Image1T,Image2T>
patch_match( ImageViewBase<Image1T> const& left,
ImageViewBase<Image2T> const& right,
BBox2i const& search_region, Vector2i const& kernel_size,
float consistency_threshold = 1,
int32 max_iterations = 6 ) {
typedef PatchMatchView<Image1T,Image2T> result_type;
return result_type( left.impl(), right.impl(), search_region,
kernel_size, consistency_threshold,
max_iterations);
}
}} // vw::stereo
#endif//__VW_STEREO_PATCHMATCH2_H__