Skip to content

Commit c799551

Browse files
authored
Add compose module and functions (#662)
1 parent d156280 commit c799551

File tree

2 files changed

+163
-0
lines changed

2 files changed

+163
-0
lines changed

src/compose.rs

+162
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
1+
//! Functions for composing one or more images.
2+
3+
use image::math::Rect;
4+
use image::Pixel;
5+
6+
use crate::definitions::Image;
7+
8+
/// Crops an image to a given rectangle.
9+
///
10+
/// # Panics
11+
///
12+
/// - If `rect.x + rect.width > image.width()`
13+
/// - If `rect.y + rect.height > image.height()`
14+
///
15+
/// # Examples
16+
/// ```
17+
/// use imageproc::compose::crop;
18+
/// use image::math::Rect;
19+
/// use imageproc::gray_image;
20+
///
21+
/// let image = gray_image!(
22+
/// 0, 0, 0, 0, 0, 0;
23+
/// 0, 0, 0, 1, 1, 0;
24+
/// 0, 0, 0, 1, 1, 0;
25+
/// 0, 0, 0, 1, 1, 0;
26+
/// 0, 0, 0, 0, 0, 0;
27+
/// 0, 0, 0, 0, 0, 0);
28+
///
29+
/// let cropped = crop(&image, Rect {x: 3, y: 1, width: 2, height: 3});
30+
///
31+
/// assert_eq!(cropped, gray_image!(
32+
/// 1, 1;
33+
/// 1, 1;
34+
/// 1, 1));
35+
/// ```
36+
pub fn crop<P>(image: &Image<P>, rect: Rect) -> Image<P>
37+
where
38+
P: Pixel,
39+
{
40+
assert!(rect.x + rect.width <= image.width());
41+
assert!(rect.y + rect.height <= image.height());
42+
43+
Image::from_fn(rect.width, rect.height, |x, y| {
44+
*image.get_pixel(rect.x + x, rect.y + y)
45+
})
46+
}
47+
#[cfg(feature = "rayon")]
48+
#[doc = generate_parallel_doc_comment!("crop")]
49+
pub fn crop_parallel<P>(image: &Image<P>, rect: Rect) -> Image<P>
50+
where
51+
P: Pixel + Send + Sync,
52+
P::Subpixel: Send + Sync,
53+
{
54+
assert!(rect.x + rect.width <= image.width());
55+
assert!(rect.y + rect.height <= image.height());
56+
57+
Image::from_par_fn(rect.width, rect.height, |x, y| {
58+
*image.get_pixel(rect.x + x, rect.y + y)
59+
})
60+
}
61+
62+
/// Horizontally flips an image.
63+
///
64+
/// # Examples
65+
/// ```
66+
/// use imageproc::compose::flip_horizontal;
67+
/// use imageproc::gray_image;
68+
///
69+
/// let image = gray_image!(
70+
/// 1, 2, 3, 4, 5, 6;
71+
/// 1, 2, 3, 4, 5, 6;
72+
/// 1, 2, 3, 4, 5, 6;
73+
/// 1, 2, 3, 4, 5, 6;
74+
/// 1, 2, 3, 4, 5, 6;
75+
/// 1, 2, 3, 4, 5, 6);
76+
///
77+
/// let flipped = flip_horizontal(&image);
78+
///
79+
/// assert_eq!(flipped, gray_image!(
80+
/// 6, 5, 4, 3, 2, 1;
81+
/// 6, 5, 4, 3, 2, 1;
82+
/// 6, 5, 4, 3, 2, 1;
83+
/// 6, 5, 4, 3, 2, 1;
84+
/// 6, 5, 4, 3, 2, 1;
85+
/// 6, 5, 4, 3, 2, 1));
86+
/// ```
87+
pub fn flip_horizontal<P>(image: &Image<P>) -> Image<P>
88+
where
89+
P: Pixel,
90+
{
91+
let mut out = image.clone();
92+
flip_horizontal_mut(&mut out);
93+
out
94+
}
95+
#[doc=generate_mut_doc_comment!("flip_horizontal")]
96+
pub fn flip_horizontal_mut<P>(image: &mut Image<P>)
97+
where
98+
P: Pixel,
99+
{
100+
for y in 0..image.height() {
101+
for x in 0..(image.width() / 2) {
102+
let flipped_x = image.width() - x - 1;
103+
104+
let pixel = *image.get_pixel(x, y);
105+
let flipped_pixel = *image.get_pixel(flipped_x, y);
106+
107+
image.put_pixel(x, y, flipped_pixel);
108+
image.put_pixel(flipped_x, y, pixel);
109+
}
110+
}
111+
}
112+
113+
/// Vertically flips an image.
114+
///
115+
/// # Examples
116+
/// ```
117+
/// use imageproc::compose::flip_vertical;
118+
/// use imageproc::gray_image;
119+
///
120+
/// let image = gray_image!(
121+
/// 1, 1, 1, 1, 1, 1;
122+
/// 2, 2, 2, 2, 2, 2;
123+
/// 3, 3, 3, 3, 3, 3;
124+
/// 4, 4, 4, 4, 4, 4;
125+
/// 5, 5, 5, 5, 5, 5;
126+
/// 6, 6, 6, 6, 6, 6);
127+
///
128+
/// let flipped = flip_vertical(&image);
129+
///
130+
/// assert_eq!(flipped, gray_image!(
131+
/// 6, 6, 6, 6, 6, 6;
132+
/// 5, 5, 5, 5, 5, 5;
133+
/// 4, 4, 4, 4, 4, 4;
134+
/// 3, 3, 3, 3, 3, 3;
135+
/// 2, 2, 2, 2, 2, 2;
136+
/// 1, 1, 1, 1, 1, 1));
137+
/// ```
138+
pub fn flip_vertical<P>(image: &Image<P>) -> Image<P>
139+
where
140+
P: Pixel,
141+
{
142+
let mut out = image.clone();
143+
flip_vertical_mut(&mut out);
144+
out
145+
}
146+
#[doc=generate_mut_doc_comment!("flip_vertical")]
147+
pub fn flip_vertical_mut<P>(image: &mut Image<P>)
148+
where
149+
P: Pixel,
150+
{
151+
for y in 0..(image.height() / 2) {
152+
for x in 0..image.width() {
153+
let flipped_y = image.height() - y - 1;
154+
155+
let pixel = *image.get_pixel(x, y);
156+
let flipped_pixel = *image.get_pixel(x, flipped_y);
157+
158+
image.put_pixel(x, y, flipped_pixel);
159+
image.put_pixel(x, flipped_y, pixel);
160+
}
161+
}
162+
}

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ pub mod utils;
1818
#[macro_use]
1919
pub mod doc_macros;
2020
pub mod binary_descriptors;
21+
pub mod compose;
2122
pub mod contours;
2223
pub mod contrast;
2324
pub mod corners;

0 commit comments

Comments
 (0)