27 lines
507 B
C++
27 lines
507 B
C++
//
|
|
// Created by DefTruth on 2021/10/7.
|
|
//
|
|
|
|
#ifndef LITE_AI_TOOLKIT_LITE_AI_HEADERS_H
|
|
#define LITE_AI_TOOLKIT_LITE_AI_HEADERS_H
|
|
|
|
#include "config.h"
|
|
#include "lite.ai.defs.h"
|
|
|
|
#include <map>
|
|
#include <cmath>
|
|
#include <vector>
|
|
#include <cassert>
|
|
#include <locale.h>
|
|
#include <string>
|
|
#include <algorithm>
|
|
#include <memory>
|
|
#include <fstream>
|
|
#include <unordered_map>
|
|
#include <unordered_set>
|
|
#include <limits>
|
|
#include <type_traits>
|
|
#include "opencv2/opencv.hpp"
|
|
|
|
#endif //LITE_AI_TOOLKIT_LITE_AI_HEADERS_H
|