上一页 1 2 3 4 5 6 7 8 ··· 15 下一页
摘要: import os import cv2 import numpy as np Adir = './trainA/' Bdir = './trainB/' ABdir = './datasets/train/' num=0 for fi in os.listdir(Adir): im_A = cv2 阅读全文
posted @ 2021-03-31 13:13 皮卡皮卡妞 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 论文:《A fast and robust convolutional neural network-based defect detection model in product quality control》 论文地址:http://personalpages.to.infn.it/~muss 阅读全文
posted @ 2021-03-30 16:45 皮卡皮卡妞 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 论文《Deep learning-based crack damage detection using convolutional neural networks》 问题:混凝土裂缝检测 做法:大概意思就是说采用了下面的这样一个网络,对切块后的图像进行了分类。图像切块的策略见最后的图所示: 实验结果 阅读全文
posted @ 2021-03-30 16:22 皮卡皮卡妞 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 论文题目《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 皮卡皮卡妞 阅读(238) 评论(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 皮卡皮卡妞 阅读(797) 评论(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 皮卡皮卡妞 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 特征 局部or全局 尺度不变性 亮度不变性 旋转不变性 仿射不变性 CNN SIFT 局部 1、性质解释 尺度不变性: 建议看看这个人的博客:https://zhuanlan.zhihu.com/p/67080514 比如有两个数据集: 数据集A:图像被resize大小512*512,图像中目标的大 阅读全文
posted @ 2021-03-26 11:36 皮卡皮卡妞 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 模糊图像可以变高清,高清图像是否可以变模糊?模拟正常的模糊。 基于低质量图像的分类、检测、检索、识别研究 阅读全文
posted @ 2021-03-26 10:49 皮卡皮卡妞 阅读(30) 评论(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 皮卡皮卡妞 阅读(93) 评论(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 皮卡皮卡妞 阅读(394) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 15 下一页