pub struct Img<Container> {
pub buf: Container,
pub stride: usize,
pub width: u32,
pub height: u32,
}Expand description
Basic struct used for both owned (alias ImgVec) and borrowed (alias ImgRef) image fragments.
Note: the fields are pub only because of borrow checker limitations. Please consider them as read-only.
Fields
buf: ContainerDon’t access struct fields directly. Use buf(), buf_mut() or into_buf()
Storage for the pixels. Usually Vec<Pixel> or &[Pixel]. See ImgVec and ImgRef.
Note that future version will make this field private. Use .rows() and .pixels() iterators where possible, or buf()/buf_mut()/into_buf().
stride: usizeDon’t access struct fields directly. Use stride()
Number of pixels to skip in the container to advance to the next row.
Note: pixels between width and stride may not be usable, and may not even exist in the last row.
width: u32Don’t access struct fields directly. Use width()
Width of the image in pixels.
Note that this isn’t same as the width of the row in the buf, see stride
height: u32Don’t access struct fields directly. Use height()
Height of the image in pixels.
Implementations
sourceimpl<Container> Img<Container>
impl<Container> Img<Container>
sourcepub fn width(&self) -> usize
pub fn width(&self) -> usize
Width of the image in pixels.
Note that this isn’t same as the width of the row in image data, see stride()
sourcepub fn stride(&self) -> usize
pub fn stride(&self) -> usize
Number of pixels to skip in the container to advance to the next row.
Note the last row may have fewer pixels than the stride. Some APIs use number of bytes for a stride. You may need to multiply this one by number of pixels.
sourcepub fn buf(&self) -> &Container
pub fn buf(&self) -> &Container
Immutable reference to the pixel storage. Warning: exposes stride. Use pixels() or rows() insetad.
See also into_contiguous_buf().
sourcepub fn buf_mut(&mut self) -> &mut Container
pub fn buf_mut(&mut self) -> &mut Container
Mutable reference to the pixel storage. Warning: exposes stride. Use pixels_mut() or rows_mut() insetad.
See also into_contiguous_buf().
sourcepub fn into_buf(self) -> Container
pub fn into_buf(self) -> Container
Get the pixel storage by consuming the image. Be careful about stride — see into_contiguous_buf() for a safe version.
pub fn rows_buf<'a, T>(&self, buf: &'a [T]) -> RowsIter<'a, T>where
T: 'a,
this was meant to be private, use new_buf() and/or rows()
sourceimpl<'a, T> Img<&'a [T]>
impl<'a, T> Img<&'a [T]>
sourcepub fn sub_image(
&self,
left: usize,
top: usize,
width: usize,
height: usize
) -> Img<&'a [T]>
pub fn sub_image(
&self,
left: usize,
top: usize,
width: usize,
height: usize
) -> Img<&'a [T]>
Make a reference for a part of the image, without copying any pixels.
Panics
It will panic if sub_image is outside of the image area (left + width must be <= container width, etc.)
sourceimpl<'a, T> Img<&'a [T]>where
T: Clone,
impl<'a, T> Img<&'a [T]>where
T: Clone,
sourcepub fn to_contiguous_buf(&self) -> (Cow<'a, [T]>, usize, usize)
pub fn to_contiguous_buf(&self) -> (Cow<'a, [T]>, usize, usize)
Returns a reference to the buffer, width, height. Guarantees that the buffer is contiguous,
i.e. it’s width*height elements long, and [x + y*width] addresses each pixel.
It will create a copy if the buffer isn’t contiguous (width != stride).
For a more efficient version, see into_contiguous_buf()
sourceimpl<'a, T> Img<&'a mut [T]>
impl<'a, T> Img<&'a mut [T]>
sourcepub fn sub_image(
&'a mut self,
left: usize,
top: usize,
width: usize,
height: usize
) -> Img<&'a [T]>
pub fn sub_image(
&'a mut self,
left: usize,
top: usize,
width: usize,
height: usize
) -> Img<&'a [T]>
Turn this into immutable reference, and slice a subregion of it
sourceimpl<'a, T> Img<&'a [T]>where
T: Copy,
impl<'a, T> Img<&'a [T]>where
T: Copy,
sourcepub fn pixels(&self) -> PixelsIter<'_, T>
pub fn pixels(&self) -> PixelsIter<'_, T>
Iterate width*height pixels in the Img, ignoring padding area
If you want to iterate in parallel, parallelize rows() instead.
Panics
if width is 0
sourceimpl<'a, T> Img<&'a [T]>
impl<'a, T> Img<&'a [T]>
sourcepub fn pixels_ref(&self) -> PixelsRefIter<'_, T>
pub fn pixels_ref(&self) -> PixelsRefIter<'_, T>
Iterate width*height pixels in the Img, by reference, ignoring padding area
If you want to iterate in parallel, parallelize rows() instead.
Panics
if width is 0
sourceimpl<'a, T> Img<&'a mut [T]>where
T: Copy,
impl<'a, T> Img<&'a mut [T]>where
T: Copy,
sourcepub fn pixels(&self) -> PixelsIter<'_, T>
pub fn pixels(&self) -> PixelsIter<'_, T>
sourcepub fn pixels_mut(&mut self) -> PixelsIterMut<'_, T>
pub fn pixels_mut(&mut self) -> PixelsIterMut<'_, T>
sourceimpl<'a, T> Img<Vec<T, Global>>where
T: Copy,
impl<'a, T> Img<Vec<T, Global>>where
T: Copy,
sourcepub fn pixels(&self) -> PixelsIter<'_, T>
pub fn pixels(&self) -> PixelsIter<'_, T>
sourcepub fn pixels_mut(&mut self) -> PixelsIterMut<'_, T>
pub fn pixels_mut(&mut self) -> PixelsIterMut<'_, T>
sourceimpl<T> Img<Vec<T, Global>>
impl<T> Img<Vec<T, Global>>
sourcepub fn sub_image_mut(
&mut self,
left: usize,
top: usize,
width: usize,
height: usize
) -> Img<&mut [T]>
pub fn sub_image_mut(
&mut self,
left: usize,
top: usize,
width: usize,
height: usize
) -> Img<&mut [T]>
Create a mutable view into a region within the image. See sub_image() for read-only views.
sourcepub fn sub_image(
&self,
left: usize,
top: usize,
width: usize,
height: usize
) -> Img<&[T]>
pub fn sub_image(
&self,
left: usize,
top: usize,
width: usize,
height: usize
) -> Img<&[T]>
Make a reference for a part of the image, without copying any pixels.
sourcepub fn as_ref(&self) -> Img<&[T]>
pub fn as_ref(&self) -> Img<&[T]>
Make a reference to this image to pass it to functions without giving up ownership
The reference should be passed by value (ImgRef, not &ImgRef).
If you need a mutable reference, see as_mut() and sub_image_mut()
sourcepub fn as_mut(&mut self) -> Img<&mut [T]>
pub fn as_mut(&mut self) -> Img<&mut [T]>
Make a mutable reference to the entire image
The reference should be passed by value (ImgRefMut, not &mut ImgRefMut).
See also sub_image_mut() and rows_mut()
pub fn iter(&self) -> Iter<'_, T>
Size of this buffer may be unpredictable. Use .rows() instead
sourcepub fn rows(&self) -> RowsIter<'_, T>
pub fn rows(&self) -> RowsIter<'_, T>
Iterate over rows of the image as slices
Each slice is guaranteed to be exactly width pixels wide.
This iterator is a good candidate for parallelization (e.g. rayon’s par_bridge())
sourcepub fn rows_mut(&mut self) -> RowsIterMut<'_, T>
pub fn rows_mut(&mut self) -> RowsIterMut<'_, T>
Iterate over rows of the image as mutable slices
Each slice is guaranteed to be exactly width pixels wide.
This iterator is a good candidate for parallelization (e.g. rayon’s par_bridge())
sourceimpl<Container> Img<Container>
impl<Container> Img<Container>
sourcepub fn new_stride(
buf: Container,
width: usize,
height: usize,
stride: usize
) -> Img<Container>
pub fn new_stride(
buf: Container,
width: usize,
height: usize,
stride: usize
) -> Img<Container>
Same as new(), except each row is located stride number of pixels after the previous one.
Stride can be equal to width or larger. If it’s larger, then pixels between end of previous row and start of the next are considered a padding, and may be ignored.
The Container is usually a Vec or a slice.
sourcepub fn new(buf: Container, width: usize, height: usize) -> Img<Container>
pub fn new(buf: Container, width: usize, height: usize) -> Img<Container>
Create new image with Container (which can be Vec, &[] or something else) with given width and height in pixels.
Assumes the pixels in container are contiguous, layed out row by row with width pixels per row and at least height rows.
If the container is larger than width×height pixels, the extra rows are a considered a padding and may be ignored.
sourceimpl<T> Img<Vec<T, Global>>where
T: Copy,
impl<T> Img<Vec<T, Global>>where
T: Copy,
sourcepub fn into_contiguous_buf(self) -> (Vec<T, Global>, usize, usize)
pub fn into_contiguous_buf(self) -> (Vec<T, Global>, usize, usize)
Returns the buffer, width, height. Guarantees that the buffer is contiguous,
i.e. it’s width*height elements long, and [x + y*width] addresses each pixel.
Efficiently performs operation in-place. For other containers use pixels().collect().
sourcepub fn as_contiguous_buf(&mut self) -> (&[T], usize, usize)
pub fn as_contiguous_buf(&mut self) -> (&[T], usize, usize)
Returns a reference to the buffer, width, height. Guarantees that the buffer is contiguous,
i.e. it’s width*height elements long, and [x + y*width] addresses each pixel.
Efficiently performs operation in-place. For other containers use pixels().collect().
sourceimpl<OldContainer> Img<OldContainer>
impl<OldContainer> Img<OldContainer>
sourcepub fn map_buf<NewContainer, OldPixel, NewPixel, F>(
self,
callback: F
) -> Img<NewContainer>where
NewContainer: AsRef<[NewPixel]>,
OldContainer: AsRef<[OldPixel]>,
F: FnOnce(OldContainer) -> NewContainer,
pub fn map_buf<NewContainer, OldPixel, NewPixel, F>(
self,
callback: F
) -> Img<NewContainer>where
NewContainer: AsRef<[NewPixel]>,
OldContainer: AsRef<[OldPixel]>,
F: FnOnce(OldContainer) -> NewContainer,
A convenience method for creating an image of the same size and stride, but with a new buffer.
sourcepub fn new_buf<NewContainer, OldPixel, NewPixel>(
&self,
new_buf: NewContainer
) -> Img<NewContainer>where
NewContainer: AsRef<[NewPixel]>,
OldContainer: AsRef<[OldPixel]>,
pub fn new_buf<NewContainer, OldPixel, NewPixel>(
&self,
new_buf: NewContainer
) -> Img<NewContainer>where
NewContainer: AsRef<[NewPixel]>,
OldContainer: AsRef<[OldPixel]>,
A convenience method for creating an image of the same size and stride, but with a new buffer.
Trait Implementations
sourceimpl<Pixel, Container> ImgExt<Pixel> for Img<Container>where
Container: AsRef<[Pixel]>,
impl<Pixel, Container> ImgExt<Pixel> for Img<Container>where
Container: AsRef<[Pixel]>,
sourcefn rows_padded(&self) -> Chunks<'_, Pixel>
fn rows_padded(&self) -> Chunks<'_, Pixel>
Iterate over the entire buffer as rows, including all padding
Rows will have up to stride width, but the last row may be shorter.
sourcefn width_padded(&self) -> usize
fn width_padded(&self) -> usize
Maximum possible width of the data, including the stride. Read more
sourcefn height_padded(&self) -> usize
fn height_padded(&self) -> usize
Height in number of full strides. If the underlying buffer is not an even multiple of strides, the last row is ignored. Read more
sourceimpl<'a, Pixel> Index<(u32, u32)> for Img<&'a [Pixel]>where
Pixel: Copy,
impl<'a, Pixel> Index<(u32, u32)> for Img<&'a [Pixel]>where
Pixel: Copy,
sourcefn index(
&self,
index: (u32, u32)
) -> &<Img<&'a [Pixel]> as Index<(u32, u32)>>::Output
fn index(
&self,
index: (u32, u32)
) -> &<Img<&'a [Pixel]> as Index<(u32, u32)>>::Output
Read a pixel at (x,y) location (e.g. px = img[(x,y)])
Coordinates may be outside width/height if the buffer has enough padding.
The x coordinate can’t exceed stride.
type Output = Pixel
type Output = Pixel
The returned type after indexing.
sourceimpl<'a, Pixel> Index<(u32, u32)> for Img<&'a mut [Pixel]>where
Pixel: Copy,
impl<'a, Pixel> Index<(u32, u32)> for Img<&'a mut [Pixel]>where
Pixel: Copy,
sourcefn index(
&self,
index: (u32, u32)
) -> &<Img<&'a mut [Pixel]> as Index<(u32, u32)>>::Output
fn index(
&self,
index: (u32, u32)
) -> &<Img<&'a mut [Pixel]> as Index<(u32, u32)>>::Output
Read a pixel at (x,y) location (e.g. px = img[(x,y)])
Coordinates may be outside width/height if the buffer has enough padding.
The x coordinate can’t exceed stride.
type Output = Pixel
type Output = Pixel
The returned type after indexing.
sourceimpl<'a, Pixel> Index<(u32, u32)> for Img<Vec<Pixel, Global>>where
Pixel: Copy,
impl<'a, Pixel> Index<(u32, u32)> for Img<Vec<Pixel, Global>>where
Pixel: Copy,
sourcefn index(
&self,
index: (u32, u32)
) -> &<Img<Vec<Pixel, Global>> as Index<(u32, u32)>>::Output
fn index(
&self,
index: (u32, u32)
) -> &<Img<Vec<Pixel, Global>> as Index<(u32, u32)>>::Output
Read a pixel at (x,y) location (e.g. px = img[(x,y)])
Coordinates may be outside width/height if the buffer has enough padding.
The x coordinate can’t exceed stride.
type Output = Pixel
type Output = Pixel
The returned type after indexing.
sourceimpl<'a, Pixel> Index<(usize, usize)> for Img<&'a [Pixel]>where
Pixel: Copy,
impl<'a, Pixel> Index<(usize, usize)> for Img<&'a [Pixel]>where
Pixel: Copy,
sourcefn index(
&self,
index: (usize, usize)
) -> &<Img<&'a [Pixel]> as Index<(usize, usize)>>::Output
fn index(
&self,
index: (usize, usize)
) -> &<Img<&'a [Pixel]> as Index<(usize, usize)>>::Output
Read a pixel at (x,y) location (e.g. px = img[(x,y)])
Coordinates may be outside width/height if the buffer has enough padding.
The x coordinate can’t exceed stride.
type Output = Pixel
type Output = Pixel
The returned type after indexing.
sourceimpl<'a, Pixel> Index<(usize, usize)> for Img<&'a mut [Pixel]>where
Pixel: Copy,
impl<'a, Pixel> Index<(usize, usize)> for Img<&'a mut [Pixel]>where
Pixel: Copy,
sourcefn index(
&self,
index: (usize, usize)
) -> &<Img<&'a mut [Pixel]> as Index<(usize, usize)>>::Output
fn index(
&self,
index: (usize, usize)
) -> &<Img<&'a mut [Pixel]> as Index<(usize, usize)>>::Output
Read a pixel at (x,y) location (e.g. px = img[(x,y)])
Coordinates may be outside width/height if the buffer has enough padding.
The x coordinate can’t exceed stride.
type Output = Pixel
type Output = Pixel
The returned type after indexing.
sourceimpl<'a, Pixel> Index<(usize, usize)> for Img<Vec<Pixel, Global>>where
Pixel: Copy,
impl<'a, Pixel> Index<(usize, usize)> for Img<Vec<Pixel, Global>>where
Pixel: Copy,
sourcefn index(
&self,
index: (usize, usize)
) -> &<Img<Vec<Pixel, Global>> as Index<(usize, usize)>>::Output
fn index(
&self,
index: (usize, usize)
) -> &<Img<Vec<Pixel, Global>> as Index<(usize, usize)>>::Output
Read a pixel at (x,y) location (e.g. px = img[(x,y)])
Coordinates may be outside width/height if the buffer has enough padding.
The x coordinate can’t exceed stride.
type Output = Pixel
type Output = Pixel
The returned type after indexing.
sourceimpl<Container> IntoIterator for Img<Container>where
Container: IntoIterator,
impl<Container> IntoIterator for Img<Container>where
Container: IntoIterator,
Deprecated. Use .rows() or .pixels() iterators which are more predictable
sourcefn into_iter(self) -> <Container as IntoIterator>::IntoIter
fn into_iter(self) -> <Container as IntoIterator>::IntoIter
Deprecated. Use .rows() or .pixels() iterators which are more predictable
type Item = <Container as IntoIterator>::Item
type Item = <Container as IntoIterator>::Item
The type of the elements being iterated over.
type IntoIter = <Container as IntoIterator>::IntoIter
type IntoIter = <Container as IntoIterator>::IntoIter
Which kind of iterator are we turning this into?
sourceimpl<'a, T, U> PartialEq<Img<&'a [U]>> for Img<Vec<T, Global>>where
T: PartialEq<U>,
impl<'a, T, U> PartialEq<Img<&'a [U]>> for Img<Vec<T, Global>>where
T: PartialEq<U>,
sourceimpl<'a, 'b, T, U> PartialEq<Img<&'b [U]>> for Img<&'a [T]>where
T: PartialEq<U>,
impl<'a, 'b, T, U> PartialEq<Img<&'b [U]>> for Img<&'a [T]>where
T: PartialEq<U>,
sourceimpl<'a, 'b, T, U> PartialEq<Img<&'b [U]>> for Img<&'a mut [T]>where
T: PartialEq<U>,
impl<'a, 'b, T, U> PartialEq<Img<&'b [U]>> for Img<&'a mut [T]>where
T: PartialEq<U>,
sourceimpl<'a, 'b, T, U> PartialEq<Img<&'b mut [U]>> for Img<&'a [T]>where
T: PartialEq<U>,
impl<'a, 'b, T, U> PartialEq<Img<&'b mut [U]>> for Img<&'a [T]>where
T: PartialEq<U>,
sourceimpl<'a, 'b, T, U> PartialEq<Img<&'b mut [U]>> for Img<&'a mut [T]>where
T: PartialEq<U>,
impl<'a, 'b, T, U> PartialEq<Img<&'b mut [U]>> for Img<&'a mut [T]>where
T: PartialEq<U>,
sourceimpl<'a, T, U> PartialEq<Img<Vec<U, Global>>> for Img<&'a [T]>where
T: PartialEq<U>,
impl<'a, T, U> PartialEq<Img<Vec<U, Global>>> for Img<&'a [T]>where
T: PartialEq<U>,
sourceimpl<T, U> PartialEq<Img<Vec<U, Global>>> for Img<Vec<T, Global>>where
T: PartialEq<U>,
impl<T, U> PartialEq<Img<Vec<U, Global>>> for Img<Vec<T, Global>>where
T: PartialEq<U>,
impl<Container> Copy for Img<Container>where
Container: Copy,
impl<'a, T> Eq for Img<&'a [T]>where
T: Eq,
impl<'a, T> Eq for Img<&'a mut [T]>where
T: Eq,
impl<T> Eq for Img<Vec<T, Global>>where
T: Eq,
Auto Trait Implementations
impl<Container> RefUnwindSafe for Img<Container>where
Container: RefUnwindSafe,
impl<Container> Send for Img<Container>where
Container: Send,
impl<Container> Sync for Img<Container>where
Container: Sync,
impl<Container> Unpin for Img<Container>where
Container: Unpin,
impl<Container> UnwindSafe for Img<Container>where
Container: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more