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…
public async Task AddAsync<T>(T entity) where T : class{await _context.Set<T>().AddAsync(entity);await _context.SaveChangesAsync();}
//增加实体
public 表面方法是公开的,所有其他类都可以调用
async 表方法内可能包含异步操作,…