- 博客(5)
- 资源 (2)
- 问答 (3)
- 收藏
- 关注
原创 根据yolo目标检测的检测框裁剪检测目标
添加default=True,这一步是为了输出检测框的txt文件。首先,在detect代码中找到。
2023-07-26 14:10:42
1220
6
原创 Docker可视化运行labelimg
根据报错"Cannot load library /usr/local/lib/python3.8/site-packages/PyQt5/Qt5/plugins/platforms/libqxcb.so: (libxcb-icccm.so.4: cannot open shared object file: No such file or directory)"再次apt install libgl1-mesa-glx 报错、apt install libgl1-mesa-glx 报错。
2023-07-21 11:04:13
442
1
原创 SAMF choose video代码解读(matlab版)
function video_name = choose_video(base_path)if ispc(), base_path = strrep(base_path, '\', '/'); end %ispc用来判断当前电脑是不是Windows系统,是返回1,不是返回0if base_path(end) ~= '/', base_path(end+1) = '/'; endcontents = dir(base_path); %dir 用于列出目录下所有子文件夹和文件names = {};f
2021-08-02 13:21:10
515
1
原创 SAMFrun_tracker代买解读(matlab版)
function [precision, fps] = run_tracker(video, kernel_type, feature_type, show_visualization, show_plots)base_path ='D:\samf data';base_path =’ '; 引号内是样本储存的地址if nargin < 1, video = 'choose'; endif nargin < 2, kernel_type = 'gaussian'; end i
2021-08-01 16:08:05
526
原创 SAMF tracker代码阅读
**SAMF tracker代码阅读笔记(matlab)**如有错误,请不吝赐教function [positions, rect_results, time] = tracker(video_path, img_files, pos, target_sz, ... padding, kernel, lambda, output_sigma_factor, interp_factor, cell_size, ... features, show_visualization)简单的定义functio
2021-07-19 15:04:20
874
TA创建的收藏夹 TA关注的收藏夹
TA关注的人