forked from image-rs/imageproc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_matching.rs
191 lines (163 loc) · 5.76 KB
/
template_matching.rs
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
//! An example of template matching in a greyscale image.
use image::{open, GenericImage, GrayImage, Luma, Rgb, RgbImage};
use imageproc::definitions::Image;
use imageproc::drawing::draw_hollow_rect_mut;
use imageproc::map::map_pixels;
use imageproc::rect::Rect;
#[cfg(feature = "rayon")]
use imageproc::template_matching::match_template_parallel;
use imageproc::template_matching::{match_template, MatchTemplateMethod};
use std::env;
use std::f32;
use std::fs;
use std::path::PathBuf;
struct TemplateMatchingArgs {
input_path: PathBuf,
output_dir: PathBuf,
template_x: u32,
template_y: u32,
template_w: u32,
template_h: u32,
parallel: bool,
}
impl TemplateMatchingArgs {
fn parse(args: Vec<String>) -> TemplateMatchingArgs {
if args.len() < 7 {
panic!(
r#"
Usage:
cargo run --example template_matching input_path output_dir template_x template_y template_w template_h [parallel]
Loads the image at input_path and extracts a region with the given location and size to use as the matching
template. Calls match_template on the input image and this template, and saves the results to output_dir.
If the optional boolean argument parallel is given, match_template will be called with the parallel. Default is false.
"#
);
}
let input_path = PathBuf::from(&args[1]);
let output_dir = PathBuf::from(&args[2]);
let template_x = args[3].parse().unwrap();
let template_y = args[4].parse().unwrap();
let template_w = args[5].parse().unwrap();
let template_h = args[6].parse().unwrap();
let parallel = args.get(7).map_or(false, |s| s.parse().unwrap());
TemplateMatchingArgs {
input_path,
output_dir,
template_x,
template_y,
template_w,
template_h,
parallel,
}
}
}
/// Convert an f32-valued image to a 8 bit depth, covering the whole
/// available intensity range.
fn convert_to_gray_image(image: &Image<Luma<f32>>) -> GrayImage {
let mut lo = f32::INFINITY;
let mut hi = f32::NEG_INFINITY;
for p in image.iter() {
lo = if *p < lo { *p } else { lo };
hi = if *p > hi { *p } else { hi };
}
let range = hi - lo;
let scale = |x| (255.0 * (x - lo) / range) as u8;
map_pixels(image, |p| Luma([scale(p[0])]))
}
fn copy_sub_image(image: &GrayImage, x: u32, y: u32, w: u32, h: u32) -> GrayImage {
assert!(
x + w < image.width() && y + h < image.height(),
"invalid sub-image"
);
let mut result = GrayImage::new(w, h);
for sy in 0..h {
for sx in 0..w {
result.put_pixel(sx, sy, *image.get_pixel(x + sx, y + sy));
}
}
result
}
fn draw_green_rect(image: &GrayImage, rect: Rect) -> RgbImage {
let mut color_image = map_pixels(image, |p| Rgb([p[0], p[0], p[0]]));
draw_hollow_rect_mut(&mut color_image, rect, Rgb([0, 255, 0]));
color_image
}
fn run_match_template(
args: &TemplateMatchingArgs,
image: &GrayImage,
template: &GrayImage,
method: MatchTemplateMethod,
) -> RgbImage {
// Match the template and convert to u8 depth to display
let result = if args.parallel {
#[cfg(feature = "rayon")]
{
match_template_parallel(image, template, method)
}
#[cfg(not(feature = "rayon"))]
{
unimplemented!("parallel template matching requires rayon")
}
} else {
match_template(image, template, method)
};
let result_scaled = convert_to_gray_image(&result);
// Pad the result to the same size as the input image, to make them easier to compare
let mut result_padded = GrayImage::new(image.width(), image.height());
result_padded
.copy_from(&result_scaled, args.template_w / 2, args.template_h / 2)
.unwrap();
// Show location the template was extracted from
let roi = Rect::at(args.template_x as i32, args.template_y as i32)
.of_size(args.template_w, args.template_h);
draw_green_rect(&result_padded, roi)
}
fn main() {
let args = TemplateMatchingArgs::parse(env::args().collect());
let input_path = &args.input_path;
let output_dir = &args.output_dir;
if !output_dir.is_dir() {
fs::create_dir(output_dir).expect("Failed to create output directory")
}
if !input_path.is_file() {
panic!("Input file does not exist");
}
// Load image and convert to grayscale
let image = open(input_path)
.unwrap_or_else(|_| panic!("Could not load image at {:?}", input_path))
.to_luma8();
// Extract the requested image sub-region to use as the template
let template = copy_sub_image(
&image,
args.template_x,
args.template_y,
args.template_w,
args.template_h,
);
// Match using all available match methods
let sse = run_match_template(
&args,
&image,
&template,
MatchTemplateMethod::SumOfSquaredErrors,
);
let sse_norm = run_match_template(
&args,
&image,
&template,
MatchTemplateMethod::SumOfSquaredErrorsNormalized,
);
// Show location the template was extracted from
let roi = Rect::at(args.template_x as i32, args.template_y as i32)
.of_size(args.template_w, args.template_h);
let image_with_roi = draw_green_rect(&image, roi);
// Save images to output_dir
let template_path = output_dir.join("template.png");
template.save(&template_path).unwrap();
let source_path = output_dir.join("image.png");
image_with_roi.save(&source_path).unwrap();
let sse_path = output_dir.join("result_sse.png");
sse.save(&sse_path).unwrap();
let sse_path = output_dir.join("result_sse_norm.png");
sse_norm.save(&sse_path).unwrap();
}