Skip to main content

PicoDetModelOutput

Type Alias PicoDetModelOutput 

Source
pub type PicoDetModelOutput = ScaleAwareDetectorModelOutput;
Expand description

Output from PicoDet model.

Aliased Type§

pub struct PicoDetModelOutput {
    pub predictions: ArrayBase<OwnedRepr<f32>, Dim<[usize; 4]>, f32>,
}

Fields§

§predictions: ArrayBase<OwnedRepr<f32>, Dim<[usize; 4]>, f32>

Detection predictions tensor [batch_size, num_detections, 6] Each detection: [x1, y1, x2, y2, score, class_id]