
NAND FLASH在STM32上的FMC
STM32H743内部温度传感器读数错误
STM32H745 移植 RTT 只能接受一个核的信息输出,如何实现一个窗口接受两个核的信息输出
STM32_ImageProcessing_Library 如何实现 图片 去掉 背景?
请教下,使用 filex 文件系统需要支持中文的目录及文件名要怎么配置呀 ?
STM32N6通过X-CUBE-AI部署模型到工程后,如何调用API函数接口?
STM32H755使用DMA接收数据不正常
CubeMX 生成的 STM32H7 CMake 工程打开串口 DMA 无法正常发送数据,如何解决?
STM32H7S78-DK 官方TOUCHGFX的DEMO源码在哪里呢?
STM32H723VG实现usb通讯
我也碰到这个问题,能否一起交流,我的微信 18151119929.
我用的 yolo v11, 是目标检测模型,转换成nb 部署后,11+7 ×8400 输出张量。
但是 可能没有归一化,但是我归一化仍然没有用。
输出是没有置信度的。
std::vector<ObjDetect_Results> parseModelOutput(float output, int num_classes = 7, float confidence_threshold = 0.55f) { std::vector<ObjDetect_Results> detections; float data = output; const int num_boxes = 8400; const int attributes_per_box = 4 + num_classes; // 4坐标 + 1置信度 + n类别
// for (int w = 0; w < 8400; w++) // { // for (int h = 0; h < attributes_per_box; h++) // { // if (h > 3) // { // printf(" %.2f ",sigmoid(1-data[h 8400 + w])); // } // else // printf(" %.2f ",data[h 8400 + w]); // } // printf("\r\n"); // }
// return detections;