//
|
// Created by Scheaven on 2020/3/24.
|
//
|
|
#ifndef INC_01_CPP_SORT_CONFIG_H
|
#define INC_01_CPP_SORT_CONFIG_H
|
#include <opencv2/opencv.hpp>
|
#include "opencv2/core/core.hpp"
|
#include "opencv2/highgui/highgui.hpp"
|
#include "tensorflow/core/public/session.h"
|
#include "tensorflow/core/protobuf/meta_graph.pb.h"
|
#include "tensorflow/core/graph/default_device.h"
|
#include "tensorflow/core/platform/env.h"
|
#include <iostream>
|
#include <map>
|
#include <string>
|
#include <list>
|
#include <algorithm>
|
#include <fstream>
|
#include <stdint.h>
|
#include <vector>
|
#include <thread>
|
#include <json/json.h>
|
#include "time.h"
|
#include "stdio.h"
|
#include "stdlib.h"
|
#include <iostream>
|
#include <sys/time.h>
|
|
|
|
const int nn_budget=100;
|
const float max_cosine_distance=0.2;
|
|
#define NN_BUDGET 100
|
#define MAX_COSINE_DISTANCE 0.2
|
#define MAX_IOU_DISTANCE 0.7
|
#define MAX_AGE 45
|
#define MAX_OUT_TIME 3.0
|
#define N_INIT 5
|
|
|
|
|
|
|
#endif //INC_01_CPP_SORT_CONFIG_H
|