代码拉取完成,页面将自动刷新
同步操作将从 shopping/yolo_v5_nnie 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#ifndef FD_CONFIG
#define FD_CONFIG
#include <stdio.h>
//#include"list.h"
#include<math.h>
#include "sample_comm_nnie.h"
#define QUANT_BASE 4096.0f
#define yolo_layer_num 3 // yolo layer 层数
#ifndef YOLO_MIN
#define YOLO_MIN(a,b) ((a) > (b) ? (b) : (a))
#endif
#ifndef YOLO_MAX
#define YOLO_MAX(a,b) ((a) < (b) ? (b) : (a))
#endif
#define IMAGE_W 320.0f // 输入图片大小
#define IMAGE_H 320.0f
typedef struct anchor_w_h
{
float anchor_w;
float anchor_h;
}anchor_w_h;
typedef struct yolo_result
{
float left_up_x;
float left_up_y;
float right_down_x;
float right_down_y;
int class_index;
float score;
struct yolo_result* next;
}yolo_result;
anchor_w_h anchor_grids[3][3] = {{{10.0f, 13.0f}, {16.0f, 30.0f}, {33.0f, 23.0f}}, // small yolo layer 层 anchor
{{30.0f, 61.0f}, {62.0f, 45.0f}, {59.0f, 119.0f}}, // middle yolo layer 层 anchor
{{116.0f, 90.0f}, {156.0f, 198.0f}, {373.0f, 326.0f}}}; // large yolo layer 层 anchor
float strides[3] = {8.0f, 16.0f, 32.0f}; // 每个 yolo 层,grid 大小,与上面顺序对应
int map_size[3] = {40, 20, 10}; // 每个 yolo 层,feature map size 大小,与上面顺序对应
#endif // FD_CONFIG
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。