18 lines
257 B
C
18 lines
257 B
C
#pragma once
|
|
|
|
#include "config.h"
|
|
|
|
struct YoloKernel {
|
|
int width;
|
|
int height;
|
|
float anchors[kNumAnchor * 2];
|
|
};
|
|
|
|
struct alignas(float) Detection {
|
|
//center_x center_y w h
|
|
float bbox[4];
|
|
float conf; // bbox_conf * cls_conf
|
|
float class_id;
|
|
};
|
|
|