mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
15 lines
234 B
C
15 lines
234 B
C
#ifndef BOX_H
|
|
#define BOX_H
|
|
#include "darknet.h"
|
|
|
|
typedef struct{
|
|
float dx, dy, dw, dh;
|
|
} dbox;
|
|
|
|
float box_rmse(box a, box b);
|
|
dbox diou(box a, box b);
|
|
box decode_box(box b, box anchor);
|
|
box encode_box(box b, box anchor);
|
|
|
|
#endif
|