You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
402 B
C
21 lines
402 B
C
//
|
|
// Created by tunm on 2023/1/25.
|
|
//
|
|
|
|
#ifndef ZEPHYRLPR_HYPER_LPR_SDK_INTERNAL_H
|
|
#define ZEPHYRLPR_HYPER_LPR_SDK_INTERNAL_H
|
|
|
|
#include "hyper_lpr_sdk.h"
|
|
#include "context_module/all.h"
|
|
|
|
typedef struct HLPR_Context {
|
|
hyper::HyperLPRContext impl;
|
|
} HyperLPR_Context;
|
|
|
|
typedef struct HLPR_DataBuffer {
|
|
hyper::CameraBuffer impl;
|
|
} HLPR_DataBuffer;
|
|
|
|
#endif //ZEPHYRLPR_HYPER_LPR_SDK_INTERNAL_H
|
|
|