C API
strcat 是 C 语言标准库中的一个字符串操作函数,用于将一个字符串(源字符串)连接到另一个字符串(目标字符串)的末尾。它的函数原型如下: char *strcat(char *dest, const char *src);
计算字符串中…
YOLO数据处理
一.YOLO数据格式
YOLO数据格式为 <class> <x_center> <y_center> <width> <height>
二.制作数据集
1.新建文件夹及配置文件
if not os.path.exists(yolo-dataset/):os.mkdir(yolo-dataset/)
if not os.path.exists(yolo-datas…