[][src]Trait opencv::dnn::DetectionOutputLayerTrait

pub trait DetectionOutputLayerTrait: LayerTrait {
    pub fn as_raw_DetectionOutputLayer(&self) -> *const c_void;
pub fn as_raw_mut_DetectionOutputLayer(&mut self) -> *mut c_void; }

Detection output layer.

The layer size is: @f$ (1 \times 1 \times N \times 7) @f$ where N is [keep_top_k] parameter multiplied by batch size. Each row is: [image_id, label, confidence, xmin, ymin, xmax, ymax] where image_id is the index of image input in the batch.

Required methods

Loading content...

Implementors

Loading content...