#edge #image #transparency #sprite #bevy

edges

a library for getting the edges of objects in images with transparency

4 releases (2 breaking)

0.3.1 Mar 5, 2024
0.3.0 Mar 4, 2024
0.2.0 Mar 4, 2024
0.1.0 Mar 2, 2024

#1049 in Game dev

36 downloads per month
Used in bevy_collider_gen

MIT/Apache

33KB
256 lines

Crates.io Crates.io MIT/Apache 2.0

edges

get the edges of objects in images with transparency.

supported image types

  • image::DynamicImage
  • bevy::render::texture::Image (or if you rather, bevy::prelude::Image)

using

use edges::Edges;
use std::path::Path;

fn main() {
    let image = image::open(Path::new("assets/car.png"));
    let edges = Edges::from(image.unwrap());
    println!("{:#?}", edges.single_image_edge_translated());
}

how it works

i was inspired by a coding train (or, coding in the cabana rather) on an implementation of "marching squares". so this crate takes a "march through all the values" approach to find edges, i.e. pixels with at least 1 empty neighboring pixel, but instead of drawing a contour in place, it just keeps track of all the actual pixel coordinates. to determine "empty" I bitwise or all the bytes for each pixel and, in images with transparency, "empty" is a zero value for the pixel.

after that, we need to put the coordinates in some kind of "drawing order" so whatever we pass all the points to, knows how we want the object constructed. for this, the crate collects all pixels, in order, that are a distance of 1 from eachother. if there are pixels that have a distance greater than 1 from any pixel in an existing group, that pixel begins a new group.

license

all code in this repository is dual-licensed under either:

at your option.

Dependencies

~15–58MB
~796K SLoC