pub struct Segmentation {
pub xmin: f32,
pub ymin: f32,
pub xmax: f32,
pub ymax: f32,
pub segmentation: Array3<u8>,
}Expand description
A segmentation result with a segmentation mask, and a normalized bounding box representing the area that the segmentation mask covers
Fields§
§xmin: f32left-most normalized coordinate of the segmentation box
ymin: f32top-most normalized coordinate of the segmentation box
xmax: f32right-most normalized coordinate of the segmentation box
ymax: f32bottom-most normalized coordinate of the segmentation box
segmentation: Array3<u8>3D segmentation array of shape (H, W, C).
For instance segmentation (e.g. YOLO): C=1 — per-instance mask with
continuous sigmoid confidence values quantized to u8 (0 = background,
255 = full confidence). Renderers typically threshold at 128 (sigmoid
0.5) or use smooth interpolation for anti-aliased edges.
For semantic segmentation (e.g. ModelPack): C=num_classes — per-pixel
class scores where the object class is the argmax index.
Trait Implementations§
Source§impl Clone for Segmentation
impl Clone for Segmentation
Source§fn clone(&self) -> Segmentation
fn clone(&self) -> Segmentation
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for Segmentation
impl Debug for Segmentation
Source§impl Default for Segmentation
impl Default for Segmentation
Source§fn default() -> Segmentation
fn default() -> Segmentation
Source§impl PartialEq for Segmentation
impl PartialEq for Segmentation
impl StructuralPartialEq for Segmentation
Auto Trait Implementations§
impl Freeze for Segmentation
impl RefUnwindSafe for Segmentation
impl Send for Segmentation
impl Sync for Segmentation
impl Unpin for Segmentation
impl UnsafeUnpin for Segmentation
impl UnwindSafe for Segmentation
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
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>
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>
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 more