上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 53 下一页

2022年6月16日

摘要: 前言 将视频转换为视频帧序列 ffmpeg -i input.mp4 -r 30 -f image2 frames/image-%4d.png -r – 设置帧速度。即,每秒提取帧到图像的数字。默认值是 25。 -f – 表示输出格式,即,在我们的实例中是图像。 问题: 博主使用该命令转换成png之 阅读全文
posted @ 2022-06-16 19:36 鹅要长大 阅读(140) 评论(1) 推荐(0) 编辑

2022年6月9日

摘要: 前言 修改系统时间 sudo date -s MM/DD/YY //修改日期 sudo date -s hh:mm:ss //修改时间 在修改时间以后,修改硬件CMOS的时间 sudo hwclock --systohc //非常重要,如果没有这一步的话,后面时间还是不准 遗留问题 在TX2上修改之 阅读全文
posted @ 2022-06-09 18:21 鹅要长大 阅读(254) 评论(0) 推荐(0) 编辑

2022年4月21日

摘要: http://www.jb51.net/os/Ubuntu/339227.html 阅读全文
posted @ 2022-04-21 17:59 鹅要长大 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 前言 opencv-python教程学习系列记录学习python-opencv过程的点滴,本文主要介绍形态学操作,坚持学习,共同进步。 系列教程参照OpenCV-Python中文教程; 系统环境 系统:win7_x64; python版本:python3.5.2; opencv版本:opencv3. 阅读全文
posted @ 2022-04-21 17:59 鹅要长大 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 原因 项目没有设置为启动项目; 阅读全文
posted @ 2022-04-21 17:59 鹅要长大 阅读(36) 评论(0) 推荐(0) 编辑
摘要: ICCV 2019 参考 1. paper; 2. code; 完 阅读全文
posted @ 2022-04-21 17:58 鹅要长大 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 原因为未安装ca-certificates 可以先编辑 /etc/apt/sources.list 文件临时使用http源; 参考 1。 Linux 报错Certificate verification failed: The certificate is NOT trusted. 完 阅读全文
posted @ 2022-04-21 17:56 鹅要长大 阅读(3176) 评论(0) 推荐(0) 编辑
摘要: 参考 1. google.ai.blog_EfficientNet: Improving Accuracy and Efficiency through AutoML and Model Scaling; 2. EfficientNet: Rethinking Model Scaling for C 阅读全文
posted @ 2022-04-21 17:56 鹅要长大 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 参考 1. 【语义分割】--SegNet理解; 2. SegNet: A Deep Convolutional Encoder-Decoder Architecture for Image Segmentation; 3. 2017-BMVC-bayesian-SegNet; 4. SegNet论文 阅读全文
posted @ 2022-04-21 13:14 鹅要长大 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 很多网络上采样的时候使用的是插值方法,比如最近邻/双线性等,但是在模型部署的时候,部署框架不一定支持插值方法,需要使用替代方法,比如SNPE中ONNX转dlc的时候不支持插值操作。 转置卷积的棋盘效应 参考 1。反卷积和上采样+卷积的区别? 2。deconv-checkerboard; 完 阅读全文
posted @ 2022-04-21 13:14 鹅要长大 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 参考 1. torch.bmm; 2. torch.matmul; 完 阅读全文
posted @ 2022-04-21 13:14 鹅要长大 阅读(36) 评论(0) 推荐(0) 编辑
摘要: skimage.transform.resize(order, preserve_range) order: 插值的方法0-5:0-最近邻;1-双线性; https://blog.csdn.net/qq_34798326/article/details/84976243 skimage在读使用io. 阅读全文
posted @ 2022-04-21 13:08 鹅要长大 阅读(2393) 评论(0) 推荐(0) 编辑
摘要: 参考 1. 憨批的语义分割3——unet模型详解以及训练自己的unet模型(划分斑马线); 完 阅读全文
posted @ 2022-04-21 13:08 鹅要长大 阅读(151) 评论(0) 推荐(0) 编辑
摘要: convolution操作 Convolution For GPU runtime, when the number of groups is greater than 1, the number of output channels must be a multiple of 4 * the nu 阅读全文
posted @ 2022-04-21 13:08 鹅要长大 阅读(55) 评论(0) 推荐(0) 编辑

2022年4月6日

摘要: 入门 基础 模板 参考 1. B站视频_LaTeX入门_耿楠; 2. B站视频_nwafuthesis; 3. TeXLive; 4. OverLeaf; 5. CTAN; 完 阅读全文
posted @ 2022-04-06 21:55 鹅要长大 阅读(64) 评论(0) 推荐(0) 编辑

2022年3月24日

摘要: 参考 1. paper; 2. code; 完 阅读全文
posted @ 2022-03-24 22:36 鹅要长大 阅读(21) 评论(0) 推荐(0) 编辑
摘要: code binary_mask = (im_array[:,:,0] == 255) & (im_array[:,:,1] == 255) & (im_array[:,:,2] == 0) 参考 1. convert-rgb-image-to-index-image; 完 阅读全文
posted @ 2022-03-24 22:35 鹅要长大 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 参考 1. pytorch中的上采样(上采样,转置卷积,上池化,PixelShuffle); 完 阅读全文
posted @ 2022-03-24 22:32 鹅要长大 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 如何创建 如何使用数据集 如何查看GPU使用情况 如何释放GPU内存 如何安装第三方库 !/opt/bin/nvidia-smi import torch torch.__version__ !ps aux | grep python !kill -9 process_id 参考 1. 【colab 阅读全文
posted @ 2022-03-24 22:32 鹅要长大 阅读(108) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-03-24 22:32 鹅要长大 阅读(0) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 53 下一页

导航