pub struct CPUProcessor { /* private fields */ }Expand description
CPUConverter implements the ImageProcessor trait using the fallback CPU implementation for image processing.
Implementations§
Source§impl CPUProcessor
impl CPUProcessor
Sourcepub fn materialize_segmentations(
&self,
detect: &[DetectBox],
proto_data: &ProtoData,
) -> Result<Vec<Segmentation>>
pub fn materialize_segmentations( &self, detect: &[DetectBox], proto_data: &ProtoData, ) -> Result<Vec<Segmentation>>
Materialize segmentation masks from proto data into Vec<Segmentation>.
This is the CPU-side decode step of the hybrid mask rendering path:
call this to get pre-decoded masks, then pass them to
draw_masks for GPU overlay.
Benchmarks show this hybrid path (CPU decode + GL overlay) is faster
than the fused GPU draw_masks_proto on all tested platforms.
Source§impl CPUProcessor
impl CPUProcessor
Sourcepub fn new_nearest() -> Self
pub fn new_nearest() -> Self
Creates a new CPUConverter with nearest neighbor resizing.
Trait Implementations§
Source§impl Clone for CPUProcessor
impl Clone for CPUProcessor
Source§fn clone(&self) -> CPUProcessor
fn clone(&self) -> CPUProcessor
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CPUProcessor
impl Debug for CPUProcessor
Source§impl Default for CPUProcessor
impl Default for CPUProcessor
Source§impl ImageProcessorTrait for CPUProcessor
impl ImageProcessorTrait for CPUProcessor
Source§fn convert(
&mut self,
src: &TensorDyn,
dst: &mut TensorDyn,
rotation: Rotation,
flip: Flip,
crop: Crop,
) -> Result<()>
fn convert( &mut self, src: &TensorDyn, dst: &mut TensorDyn, rotation: Rotation, flip: Flip, crop: Crop, ) -> Result<()>
Converts the source image to the destination image format and size. The
image is cropped first, then flipped, then rotated Read more
Source§fn draw_masks(
&mut self,
dst: &mut TensorDyn,
detect: &[DetectBox],
segmentation: &[Segmentation],
) -> Result<()>
fn draw_masks( &mut self, dst: &mut TensorDyn, detect: &[DetectBox], segmentation: &[Segmentation], ) -> Result<()>
Draw pre-decoded detection boxes and segmentation masks onto
dst. Read moreSource§fn draw_masks_proto(
&mut self,
dst: &mut TensorDyn,
detect: &[DetectBox],
proto_data: &ProtoData,
) -> Result<()>
fn draw_masks_proto( &mut self, dst: &mut TensorDyn, detect: &[DetectBox], proto_data: &ProtoData, ) -> Result<()>
Draw masks from proto data onto image (fused decode+draw). Read more
impl Send for CPUProcessor
impl Sync for CPUProcessor
Auto Trait Implementations§
impl Freeze for CPUProcessor
impl RefUnwindSafe for CPUProcessor
impl Unpin for CPUProcessor
impl UnsafeUnpin for CPUProcessor
impl UnwindSafe for CPUProcessor
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.