Lines Matching full:inference
18 …eric object detection pipeline with 3 steps: data pre-processing, inference execution and inference
27 * @param executor - unique pointer to inference runner
28 * @param decoder - unique pointer to inference results decoder
44 * @brief Executes inference
46 * Calls inference runner provided during instance construction.
48 * @param[in] processed - input inference data. Data type should be aligned with input tensor.
49 * @param[out] result - raw floating point inference results.
51 virtual void Inference(const cv::Mat& processed, common::InferenceResults<float>& result);
54 * @brief Standard inference results post-processing implementation.
56 * Decodes inference results using decoder provided during construction.
58 * @param[in] inferenceResult - inference results to be decoded.
59 * @param[in] callback - a function to be called after successful inference results decoding.
83 * @param executor[in] - unique pointer to inference runner
98 * @param[out] processed - image data ready to be used for inference.
116 * @param[in] - unique pointer to inference runner
131 * @param processed[out] - image data ready to be used for inference.