Skip to content

Commit

Permalink
Appease clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
theotherphil committed Mar 10, 2024
1 parent 4f2597e commit dc54e9d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/binary_descriptors/brief.rs
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,6 @@ mod tests {
let image = gray_bench_image(640, 480);
let mut rng = rand::thread_rng();
let keypoints = (0..1000)
.into_iter()
.map(|_| {
Point::new(
rng.gen_range(24..image.width() - 24),
Expand All @@ -354,7 +353,6 @@ mod tests {
let image = gray_bench_image(640, 480);
let mut rng = rand::thread_rng();
let keypoints = (0..1000)
.into_iter()
.map(|_| {
Point::new(
rng.gen_range(24..image.width() - 24),
Expand Down
1 change: 0 additions & 1 deletion src/binary_descriptors/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ mod tests {
let image = gray_bench_image(640, 480);
let mut rng = rand::thread_rng();
let keypoints = (0..1000)
.into_iter()
.map(|_| {
Point::new(
rng.gen_range(20..image.width() - 20),
Expand Down

0 comments on commit dc54e9d

Please sign in to comment.