上一页 1 2 3 4 5 6 7 8 ··· 16 下一页
该文被密码保护。 阅读全文
posted @ 2021-04-12 13:38 皮卡皮卡妞 阅读(0) 评论(0) 推荐(0)
摘要: def resize(image, size_num): delm=max( image.shape[1], image.shape[0]) if delm>size_num: multiple = delm/size_num ss=1 hh_big=image.shape[1] ww_big=im 阅读全文
posted @ 2021-04-08 13:35 皮卡皮卡妞 阅读(84) 评论(0) 推荐(0)
摘要: def find_similar_img(det_im,im_dataset_dir): im_dataset=os.listdir(im_dataset_dir) need_im_name=[] need_im_det_instance=[] print ('now doing get featu 阅读全文
posted @ 2021-04-08 13:31 皮卡皮卡妞 阅读(189) 评论(0) 推荐(0)
摘要: def calEuclideanDistance(vec1,vec2): dist = np.sqrt(np.sum(np.square(vec1 - vec2))) return dist 阅读全文
posted @ 2021-04-08 13:30 皮卡皮卡妞 阅读(651) 评论(0) 推荐(0)
摘要: def HOG_features(im): #start_time1=time.time() hog = cv2.HOGDescriptor() winStride = (8, 8) padding = (8, 8) hist = hog.compute(im, winStride, padding 阅读全文
posted @ 2021-04-08 13:29 皮卡皮卡妞 阅读(1130) 评论(0) 推荐(0)
摘要: import time from options.train_options import TrainOptions from data import create_dataset from models import create_model from util.visualizer import 阅读全文
posted @ 2021-03-31 13:15 皮卡皮卡妞 阅读(285) 评论(0) 推荐(0)
摘要: 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 皮卡皮卡妞 阅读(116) 评论(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 皮卡皮卡妞 阅读(226) 评论(0) 推荐(0)
摘要: 论文《Deep learning-based crack damage detection using convolutional neural networks》 问题:混凝土裂缝检测 做法:大概意思就是说采用了下面的这样一个网络,对切块后的图像进行了分类。图像切块的策略见最后的图所示: 实验结果 阅读全文
posted @ 2021-03-30 16:22 皮卡皮卡妞 阅读(254) 评论(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 皮卡皮卡妞 阅读(318) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 16 下一页