Files
autopilot/tmp/opi_rtsp/src-opencv-onnx/aiengineinferenceopencvonnx.h
T
Tuomas Järvinen 683f2d538b Chaneges to opi_rtsp test application
- refactoring
  - can use normal YOLOv8 files converted to ONNX format
  - does not work with azaion ONNX files!
2024-07-10 19:53:19 +02:00

20 lines
417 B
C++

#pragma once
#include <QObject>
#include "aiengineinference.h"
#include "src-opencv-onnx/inference.h"
class AiEngineInferenceOpencvOnnx : public AiEngineInference
{
Q_OBJECT
public:
explicit AiEngineInferenceOpencvOnnx(QString modelPath, QObject *parent = nullptr);
public slots:
void performInferenceSlot(cv::Mat frame) override;
private:
//InferenceEngine *mEngine;
Inference mInference;
};