派生自 Algorithm/baseDetector

Scheaven
2021-06-03 168af40fe9a3cc81c6ee16b3e81f154780c36bdb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifdef _MSC_VER
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <winsock2.h>
#include <stdint.h>
#include <time.h>
#include "darknet.h"
 
#define CLOCK_REALTIME (1)
#define BILLION (1E9)
 
#ifndef timersub
#define timersub(a, b, result)                       \
  do {                                               \
    (result)->tv_sec = (a)->tv_sec - (b)->tv_sec;    \
    (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
    if ((result)->tv_usec < 0) {                     \
      --(result)->tv_sec;                            \
      (result)->tv_usec += 1000000;                  \
    }                                                \
  } while (0)
#endif // timersub
 
#ifdef __cplusplus
extern "C" {
#endif
 
static unsigned char g_first_time = 1;
static LARGE_INTEGER g_counts_per_sec;
 
int gettimeofday(struct timeval*, struct timezone*);
int clock_gettime(int, struct timespec*);
 
#ifdef __cplusplus
}
#endif
 
#endif