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

2022年6月16日

摘要: 前言 参考 1. paper_Feature Pyramid Network for Object Detection; 2. 完 阅读全文
posted @ 2022-06-16 19:37 鹅要长大 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 前言 LISA数据集简介(有交通标志数据集) LISA转COCO格式 LISA转COCO128格式 lisa2coco128.sh #!/bin/bash # Example usage: sh LISA2COCO128.sh -f ../../LISA_Traffic_Light_Dataset 阅读全文
posted @ 2022-06-16 19:37 鹅要长大 阅读(887) 评论(0) 推荐(0) 编辑
摘要: 前言 之前一直使用命令行界面通过ssh连接远程主机,在小伙伴的建议下使用nomachine远程连接,但是如果远程不连接显示器的话,就无法正常使用,所以需要创建虚拟桌面。 安装nomachine 通过nomachine官网下载安装; 按照官网步骤安装即可,不能连接就重启试试,可能首次远程需要重启才能连 阅读全文
posted @ 2022-06-16 19:36 鹅要长大 阅读(4226) 评论(0) 推荐(0) 编辑
摘要: 前言 调试lisa2coco的代码大时候,列表赋值之后为空。 code >>> a=['go', 'stop', 'stopLeft', 'goLeft', 'warningLeft', 'warning', 'goForward'] >>> type(a) <class 'list'> >>> a 阅读全文
posted @ 2022-06-16 19:36 鹅要长大 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 前言 将视频转换为视频帧序列 ffmpeg -i input.mp4 -r 30 -f image2 frames/image-%4d.png -r – 设置帧速度。即,每秒提取帧到图像的数字。默认值是 25。 -f – 表示输出格式,即,在我们的实例中是图像。 问题: 博主使用该命令转换成png之 阅读全文
posted @ 2022-06-16 19:36 鹅要长大 阅读(142) 评论(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 鹅要长大 阅读(256) 评论(0) 推荐(0) 编辑

2022年4月21日

摘要: http://www.jb51.net/os/Ubuntu/339227.html 阅读全文
posted @ 2022-04-21 17:59 鹅要长大 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 前言 opencv-python教程学习系列记录学习python-opencv过程的点滴,本文主要介绍形态学操作,坚持学习,共同进步。 系列教程参照OpenCV-Python中文教程; 系统环境 系统:win7_x64; python版本:python3.5.2; opencv版本:opencv3. 阅读全文
posted @ 2022-04-21 17:59 鹅要长大 阅读(50) 评论(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 鹅要长大 阅读(3265) 评论(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 鹅要长大 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 很多网络上采样的时候使用的是插值方法,比如最近邻/双线性等,但是在模型部署的时候,部署框架不一定支持插值方法,需要使用替代方法,比如SNPE中ONNX转dlc的时候不支持插值操作。 转置卷积的棋盘效应 参考 1。反卷积和上采样+卷积的区别? 2。deconv-checkerboard; 完 阅读全文
posted @ 2022-04-21 13:14 鹅要长大 阅读(329) 评论(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 鹅要长大 阅读(2538) 评论(0) 推荐(0) 编辑
摘要: 参考 1. 憨批的语义分割3——unet模型详解以及训练自己的unet模型(划分斑马线); 完 阅读全文
posted @ 2022-04-21 13:08 鹅要长大 阅读(164) 评论(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 鹅要长大 阅读(59) 评论(0) 推荐(0) 编辑

2022年4月6日

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

2022年3月24日

摘要: 参考 1. paper; 2. code; 完 阅读全文
posted @ 2022-03-24 22:36 鹅要长大 阅读(21) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 53 下一页

导航