Added functionality to calculate target location.

Added functionality to capture camera frame from RTSP stream.
Refactored code.
Fixed some minor issues.
This commit is contained in:
Nffj84
2024-06-18 17:29:40 +03:00
parent 05722c0e09
commit db2652d979
15 changed files with 689 additions and 264 deletions
+12
View File
@@ -0,0 +1,12 @@
#pragma once
#include <QByteArray>
class UtilsCRC16
{
public:
static void getCRCBytes(const QByteArray &data, int8_t *bytes);
private:
static uint16_t calculate(const uint8_t *ptr, uint32_t len, uint16_t crcInit);
};