etc
구조체
구조체
사용되는 구조체를 모았습니다.
src/include/darknet.h
node
typedef struct node{
void *val;
struct node *next;
struct node *prev;
} node;list
typedef struct list{
int size;
node *front;
node *back;
} list;matrix
box
box_label
data
X : cols, rows
cols : 이미지 한장의 픽셀
rows : 이미지의 개수 batch size
vals : 각 픽셀의 값
Y : cols, rows
cols : 이미지 한장에서의 box의 개수
rows : 이미지의 개수 batch size
detection
검출한 데이터에 대한 정보를 담고 있습니다.
/src/option_list.h
kvp 구조체
/src/parser.c
section
size_params
/src/box.h
dbox
box의 미분 값을 저장합니다.
내장/time.h
timeval
Last updated
Was this helpful?