stages Namespace
Definition
Classes Index
| struct | BoxDecodeOptions |
|
Options driving a standalone BoxDecode invocation. More... | |
Functions Index
| TensorList | Tensors (const simaai::neat::Sample &sample) |
|
Extract the tensor list embedded in a single Sample. More... | |
| TensorList | Preproc (const std::vector< cv::Mat > &inputs, const simaai::neat::Model &model) |
|
Run only the preprocessing stage on raw cv::Mat inputs. More... | |
| TensorList | Preproc (const std::vector< cv::Mat > &inputs, const simaai::neat::Model &model, const std::vector< PreprocessRoi > &rois) |
|
Run preprocessing for a list of ROI windows over a batch of raw cv::Mat inputs. More... | |
| TensorList | Infer (const TensorList &inputs, const simaai::neat::Model &model) |
|
Run only the inference stage on already-preprocessed tensors. More... | |
| TensorList | MLA (const TensorList &inputs, const simaai::neat::Model &model) |
| TensorList | Postprocess (const TensorList &inputs, const simaai::neat::Model &model) |
|
Run only the model's postprocessing stage on inference outputs. More... | |
| Sample | Preproc (const Sample &inputs, const simaai::neat::Model &model) |
|
Sample-list overload of the preprocessing stage. More... | |
| Sample | Infer (const Sample &inputs, const simaai::neat::Model &model) |
|
Sample-list overload of the inference stage. More... | |
| Sample | MLA (const Sample &inputs, const simaai::neat::Model &model) |
|
Sample-list overload of the MLA stage. More... | |
| Sample | Postprocess (const Sample &inputs, const simaai::neat::Model &model) |
|
Sample-list overload of the postprocessing stage. More... | |
| Sample | BoxDecode (const Sample &inputs, const simaai::neat::Model &model, const BoxDecodeOptions &opt) |
| BoxDecodeResultList | BoxDecodeResults (const Sample &inputs, const simaai::neat::Model &model, const BoxDecodeOptions &opt) |
|
Run BoxDecode and parse each output into typed bounding boxes. More... | |
| FeaturePointTensorList | SuperPointResults (const Sample &inputs, const simaai::neat::Model &model, const BoxDecodeOptions &opt) |
|
Run SuperPoint BoxDecode and parse every output as feature-point tensors. More... | |