darknet  v3
box.h
Go to the documentation of this file.
1 #ifndef BOX_H
2 #define BOX_H
3 #include "darknet.h"
4 
5 typedef struct{
6  float dx, dy, dw, dh;
7 } dbox;
8 
9 float box_rmse(box a, box b);
10 dbox diou(box a, box b);
11 box decode_box(box b, box anchor);
12 box encode_box(box b, box anchor);
13 
14 #endif
float box_rmse(box a, box b)
Definition: box.c:184
Definition: box.h:5
float dy
Definition: box.h:6
box decode_box(box b, box anchor)
Definition: box.c:349
dbox diou(box a, box b)
Definition: box.c:295
box encode_box(box b, box anchor)
Definition: box.c:339
Definition: darknet.h:519