pub trait KeypointsModelTraitConst: ModelTraitConst {
    fn as_raw_KeypointsModel(&self) -> *const c_void;
}
Expand description

This class represents high-level API for keypoints models

KeypointsModel allows to set params for preprocessing input image. KeypointsModel creates net from file with trained weights and config, sets preprocessing input, runs forward pass and returns the x and y coordinates of each detected keypoint

Required Methods

Implementors