上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页
摘要: 论文题目《Automatic Defect Detection of Fasteners on the Catenary Support Device Using Deep Convolutional Neural Network》 下载地址:https://ieeexplore.ieee.org/ 阅读全文
posted @ 2021-03-30 15:05 皮卡皮卡妞 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 将1*(1024*128)降维为(1*1024),将(1*1024)降维为(1*512); 将(1*512)升维为(1*1024),将(1*1024)升维为1*(1024*128); self.fc = nn.Sequential( nn.Linear(1024*128, 1024), nn.Lin 阅读全文
posted @ 2021-03-29 11:21 皮卡皮卡妞 阅读(820) 评论(0) 推荐(0) 编辑
摘要: 将x4平铺成一维向量,得到x5; 将x5压缩成和x4shape一样,得到x6 x5 = x4.view(x4.size(0), -1) x6 = x5.detach().view_as(x4) 阅读全文
posted @ 2021-03-29 11:18 皮卡皮卡妞 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 特征 局部or全局 尺度不变性 亮度不变性 旋转不变性 仿射不变性 CNN SIFT 局部 1、性质解释 尺度不变性: 建议看看这个人的博客:https://zhuanlan.zhihu.com/p/67080514 比如有两个数据集: 数据集A:图像被resize大小512*512,图像中目标的大 阅读全文
posted @ 2021-03-26 11:36 皮卡皮卡妞 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 模糊图像可以变高清,高清图像是否可以变模糊?模拟正常的模糊。 基于低质量图像的分类、检测、检索、识别研究 阅读全文
posted @ 2021-03-26 10:49 皮卡皮卡妞 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 数据集: UC Merced Land-Use Data Set数据集下载地址:http://weegee.vision.ucmerced.edu/datasets/landuse.html RSSCN7 Data Set数据集下载地址:https://sites.google.com/site/q 阅读全文
posted @ 2021-03-25 16:55 皮卡皮卡妞 阅读(120) 评论(0) 推荐(0) 编辑
摘要: f_label_img = cv2.imread('1.jpg') f_label_img = cv2.cvtColor(f_label_img, cv2.COLOR_BGR2GRAY) contours, hierarchy = cv2.findContours(f_label_img, cv2. 阅读全文
posted @ 2021-03-18 09:33 皮卡皮卡妞 阅读(425) 评论(0) 推荐(0) 编辑
摘要: def load_images(IMG_SIZE = 256): avatars = [] filenames = [] images_list = sorted(glob.glob(f'{opt.avatars}/*')) for i, f in enumerate(images_list): i 阅读全文
posted @ 2021-03-17 08:59 皮卡皮卡妞 阅读(320) 评论(0) 推荐(0) 编辑
摘要: f='1.jpg' f.endswith('.jpg') or f.endswith('.jpeg') or f.endswith('.png') 阅读全文
posted @ 2021-03-17 08:57 皮卡皮卡妞 阅读(205) 评论(0) 推荐(0) 编辑
摘要: w_size = 512 h_size = 256 sub_input_label = torch.zeros([input_label.shape[0],input_label.shape[1],h_size,w_size], dtype=torch.float32,device=input_la 阅读全文
posted @ 2021-03-05 15:35 皮卡皮卡妞 阅读(67) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页