pub struct G2DProcessor { /* private fields */ }Expand description
G2DConverter implements the ImageProcessor trait using the NXP G2D library for hardware-accelerated image processing on i.MX platforms.
Implementations§
Trait Implementations§
Source§impl Debug for G2DProcessor
impl Debug for G2DProcessor
Source§impl ImageProcessorTrait for G2DProcessor
impl ImageProcessorTrait for G2DProcessor
Source§fn convert(
&mut self,
src: &TensorImage,
dst: &mut TensorImage,
rotation: Rotation,
flip: Flip,
crop: Crop,
) -> Result<()>
fn convert( &mut self, src: &TensorImage, dst: &mut TensorImage, rotation: Rotation, flip: Flip, crop: Crop, ) -> Result<()>
Converts the source image to the destination image using G2D.
§Arguments
dst- The destination image to be converted to.src- The source image to convert from.rotation- The rotation to apply to the destination image (after crop if specified).crop- An optional rectangle specifying the area to crop from the source image.
§Returns
A Result indicating success or failure of the conversion.
Source§fn convert_ref(
&mut self,
src: &TensorImage,
dst: &mut TensorImageRef<'_>,
rotation: Rotation,
flip: Flip,
crop: Crop,
) -> Result<()>
fn convert_ref( &mut self, src: &TensorImage, dst: &mut TensorImageRef<'_>, rotation: Rotation, flip: Flip, crop: Crop, ) -> Result<()>
Converts the source image to a borrowed destination tensor for zero-copy
preprocessing. Read more
Source§fn draw_masks(
&mut self,
_dst: &mut TensorImage,
_detect: &[DetectBox],
_segmentation: &[Segmentation],
) -> Result<()>
fn draw_masks( &mut self, _dst: &mut TensorImage, _detect: &[DetectBox], _segmentation: &[Segmentation], ) -> Result<()>
Draw pre-decoded masks onto image.
Source§fn draw_masks_proto(
&mut self,
_dst: &mut TensorImage,
_detect: &[DetectBox],
_proto_data: &ProtoData,
) -> Result<()>
fn draw_masks_proto( &mut self, _dst: &mut TensorImage, _detect: &[DetectBox], _proto_data: &ProtoData, ) -> Result<()>
Draw masks from proto data onto image (fused decode+draw). Read more
impl Send for G2DProcessor
impl Sync for G2DProcessor
Auto Trait Implementations§
impl Freeze for G2DProcessor
impl !RefUnwindSafe for G2DProcessor
impl Unpin for G2DProcessor
impl UnsafeUnpin for G2DProcessor
impl !UnwindSafe for G2DProcessor
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.