mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 22:06:34 +00:00
21 lines
452 B
C++
21 lines
452 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QElapsedTimer>
|
|
#include "aiengineinference.h"
|
|
#include "remoteControl.hpp"
|
|
|
|
class AiEngineGimbalControl : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit AiEngineGimbalControl(QObject *parent = nullptr);
|
|
|
|
private:
|
|
AiEngineRectangle getGroupCoordinates(QVector<AiEngineObject> &objects);
|
|
RemoteControl mRemoteControl;
|
|
|
|
public slots:
|
|
void inferenceResultSlot(AiEngineInferenceResult results);
|
|
};
|