You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
4.5 KiB

4 months ago
#pragma once
#include <filesystem>
#include <vector>
#include <unordered_map>
#include <opencv2/core/mat.hpp>
#include "onnx_model_base.h"
#include "constants.h"
/**
* @brief Represents the results of YOLO prediction.
*
* This structure stores information about a detected object, including its class index,
* confidence score, bounding box, semantic segmentation mask, and keypoints (if available).
*/
struct YoloResults {
int class_idx{}; ///< The class index of the detected object.
float conf{}; ///< The confidence score of the detection.
cv::Rect_<float> bbox; ///< The bounding box of the detected object.
cv::Mat mask; ///< The semantic segmentation mask (if available).
std::vector<float> keypoints{}; ///< Keypoints representing the object's pose (if available).
};
struct ImageInfo {
cv::Size raw_size; // add additional attrs if you need
};
class AutoBackendOnnx : public OnnxModelBase {
public:
// constructors
AutoBackendOnnx(const char* modelPath, const char* logid, const char* provider,
const std::vector<int>& imgsz, const int& stride,
const int& nc, std::unordered_map<int, std::string> names);
AutoBackendOnnx(const char* modelPath, const char* logid, const char* provider);
// getters
virtual const std::vector<int>& getImgsz();
virtual const int& getStride();
virtual const int& getCh();
virtual const int& getNc();
virtual const std::unordered_map<int, std::string>& getNames();
virtual const std::vector<int64_t>& getInputTensorShape();
virtual const int& getWidth();
virtual const int& getHeight();
virtual const cv::Size& getCvSize();
virtual const std::string& getTask();
/**
* @brief Runs object detection on an input image.
*
* This method performs object detection on the input image and returns the detected objects as YoloResults.
*
* @param image The input image to run object detection on.
* @param conf The confidence threshold for object detection.
* @param iou The intersection-over-union (IoU) threshold for non-maximum suppression.
* @param mask_threshold The threshold for the semantic segmentation mask.
* @param conversionCode An optional conversion code for image format conversion (e.g., cv::COLOR_BGR2RGB).
* Default value is -1, indicating no conversion.
* TODO: use some constant from some namespace rather than hardcoded values here
*
* @return A vector of YoloResults representing the detected objects.
*/
virtual std::vector<YoloResults> predict_once(cv::Mat& image, float& conf, float& iou, float& mask_threshold, int conversionCode = -1, bool verbose = true);
virtual std::vector<YoloResults> predict_once(const std::filesystem::path& imagePath, float& conf, float& iou, float& mask_threshold, int conversionCode = -1, bool verbose = true);
virtual std::vector<YoloResults> predict_once(const std::string& imagePath, float& conf, float& iou, float& mask_threshold, int conversionCode = -1, bool verbose = true);
virtual void fill_blob(cv::Mat& image, float*& blob, std::vector<int64_t>& inputTensorShape);
virtual void postprocess_masks(cv::Mat& output0, cv::Mat& output1, ImageInfo para, std::vector<YoloResults>& output,
int& class_names_num, float& conf_threshold, float& iou_threshold,
int& iw, int& ih, int& mw, int& mh, int& masks_features_num, float mask_threshold = 0.50f);
virtual void postprocess_detects(cv::Mat& output0, ImageInfo image_info, std::vector<YoloResults>& output,
int& class_names_num, float& conf_threshold, float& iou_threshold);
virtual void postprocess_kpts(cv::Mat& output0, ImageInfo& image_info, std::vector<YoloResults>& output,
int& class_names_num, float& conf_threshold, float& iou_threshold);
static void _get_mask2(const cv::Mat& mask_info, const cv::Mat& mask_data, const ImageInfo& image_info, cv::Rect bound, cv::Mat& mask_out,
float& mask_thresh, int& iw, int& ih, int& mw, int& mh, int& masks_features_num, bool round_downsampled = false);
protected:
std::vector<int> imgsz_;
int stride_ = OnnxInitializers::UNINITIALIZED_STRIDE;
int nc_ = OnnxInitializers::UNINITIALIZED_NC; //
int ch_ = 3;
std::unordered_map<int, std::string> names_;
std::vector<int64_t> inputTensorShape_;
cv::Size cvSize_;
std::string task_;
//cv::MatSize cvMatSize_;
};