上一页 1 2 3 4 5 6 7 8 ··· 16 下一页
摘要: 将单通道数据值变成3通道 cv::Mat mask_face(H, w, CV_8UC3, ppu8Plane[0]); for (int i = 0; i < mask_glass.rows; i++) { for (int j = 0; j < mask_glass.cols; j++) { m 阅读全文
posted @ 2021-04-12 17:14 皮卡皮卡妞 阅读(73) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
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 皮卡皮卡妞 阅读(76) 评论(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 皮卡皮卡妞 阅读(173) 评论(0) 推荐(0) 编辑
摘要: def calEuclideanDistance(vec1,vec2): dist = np.sqrt(np.sum(np.square(vec1 - vec2))) return dist 阅读全文
posted @ 2021-04-08 13:30 皮卡皮卡妞 阅读(627) 评论(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 皮卡皮卡妞 阅读(1101) 评论(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 皮卡皮卡妞 阅读(263) 评论(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 皮卡皮卡妞 阅读(107) 评论(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 皮卡皮卡妞 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 论文《Deep learning-based crack damage detection using convolutional neural networks》 问题:混凝土裂缝检测 做法:大概意思就是说采用了下面的这样一个网络,对切块后的图像进行了分类。图像切块的策略见最后的图所示: 实验结果 阅读全文
posted @ 2021-03-30 16:22 皮卡皮卡妞 阅读(208) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 16 下一页