上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 63 下一页
摘要: 参考python将视频切分成帧&&帧合成视频,下面的代码来自这篇博客。 # 视频拆分成帧 import cv2 def video2frame(videos_path,frames_save_path,time_interval): ''' :param videos_path: 视频的存放路径 : 阅读全文
posted @ 2023-05-31 12:19 Picassooo 阅读(558) 评论(0) 推荐(0) 编辑
摘要: 简单来说,就是crop size是固定的,而image size是随机可变的。举例来说,比如把crop size固定在224×224,而image的短边可以按比例缩放到[256, 480]区间的某个随机数值,然后随机偏移裁剪个224×224的图像区域。 参考知乎: scale jittering原理 阅读全文
posted @ 2023-05-24 10:01 Picassooo 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 比如把格林威治时间转换为上海时间: from datetime import datetime import pytz print('格林威治时间: ', datetime.now().strftime("%Y-%m-%d_%H-%M-%S")) print('上海时间: ', datetime.n 阅读全文
posted @ 2023-05-21 20:34 Picassooo 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 检测和分类不同,检测过程中,图片处理以后,bbox往往也需要同步变换。 [1] 知乎:目标检测-数据增强(Data Augmentation) (推荐,但要注意代码中的个别错误) [2] CSDN: 目标检测中的数据增强,包括bbox的变换 (写的还可以) [3] 知乎:一种目标检测任务中图像-标注 阅读全文
posted @ 2023-05-15 11:52 Picassooo 阅读(155) 评论(0) 推荐(0) 编辑
摘要: PyTorch Python中的注册器模块 MMCV 核心组件分析(五): Registry Detectron2和fvcore中的Registry机制详解 阅读全文
posted @ 2023-05-11 16:43 Picassooo 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 一些wheel文件下载地址: 各种包:https://download.pytorch.org/whl/ pytorch:https://download.pytorch.org/whl/torch_stable.html torchvision:https://download.pytorch.o 阅读全文
posted @ 2023-04-02 16:05 Picassooo 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 参考:端口冲突(Address already in use)解决方法 阅读全文
posted @ 2023-03-24 17:27 Picassooo 阅读(190) 评论(0) 推荐(0) 编辑
摘要: yacs的使用小记,merge_from_file() 阅读全文
posted @ 2023-03-24 09:18 Picassooo 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 如何使用 PyTorch Hook 阅读全文
posted @ 2023-03-19 10:21 Picassooo 阅读(10) 评论(0) 推荐(0) 编辑
摘要: slowfast复现 训练 阅读全文
posted @ 2023-03-15 11:29 Picassooo 阅读(105) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 63 下一页