上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 36 下一页
摘要: import cv2 as cv import os def image_to_video(): file_path = 'de/test4/1/' # 图片目录 output = '4/de_1_1.mp4' # 生成视频路径 img_list = os.listdir(file_path) # 阅读全文
posted @ 2021-04-14 11:24 小Aer 阅读(104) 评论(0) 推荐(0) 编辑
摘要: sudo touch /etc/NetworkManager/conf.d/10-globally-managed-devices.conf sudo systemctl restart NetworkManager 阅读全文
posted @ 2021-04-13 15:52 小Aer 阅读(3) 评论(0) 推荐(0) 编辑
摘要: import linecache text=linecache.getline(r'路径',行数) 阅读全文
posted @ 2021-04-12 10:27 小Aer 阅读(1) 评论(0) 推荐(0) 编辑
摘要: array和asarray都可以将结构数据转化为ndarray,但是主要区别就是当数据源是ndarray时,array仍然会copy出一个副本,占用新的内存,但asarray不会。 1.输入为列表时 a=[[1,2,3],[4,5,6],[7,8,9]] b=np.array(a) c=np.asa 阅读全文
posted @ 2021-04-07 20:46 小Aer 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 直接上代码,很简单,就是一个函数(想要弄清原理的可以另寻文章) 在控制台测试 import cv2 import numpy as np T = np.zeros((1,3), np.float32) a = (1,2,3) print(a) R, j = cv2.Rodrigues(a) prin 阅读全文
posted @ 2021-04-07 12:35 小Aer 阅读(142) 评论(0) 推荐(0) 编辑
摘要: CVPR论文查找(每年一届) 点击如下链接,输入相关关键字即可搜索。 http://openaccess.thecvf.com/CVPR2013_search.py http://openaccess.thecvf.com/CVPR2014_search.py http://openaccess.t 阅读全文
posted @ 2021-03-16 16:15 小Aer 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 一、语义分割、实例分割和全景分割的区别 b图是语义分割,包括背景,但是同一个类别都是同一个颜色; c图是实力分割,背景全部变为黑色,但是同一个类别中每一个实例都要区分开,就是要有自己的id d图是全景分割,b+c的结合 二、全景分割 目标:图像中的每个像素分配一个唯一的值,编码语义标签和实例id。它 阅读全文
posted @ 2021-03-06 20:50 小Aer 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 第一题 main.cpp #include <iostream> #include "golf.h" int main() { using std::cin; using std::cout; using std::endl; BankAccount bank {"ycy", "20210226", 阅读全文
posted @ 2021-02-27 14:42 小Aer 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 第一题 main.cpp 源文件 #include #include #include "golf.h"const int Max ... 阅读全文
posted @ 2021-02-24 21:58 小Aer 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 对于 C/C++ 标准库头文件,直接 #include 即可。 项目内自己编写的头文件,使用 #include “文件名”。 对于... 阅读全文
posted @ 2021-02-24 17:48 小Aer 阅读(3635) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 36 下一页