摘要: 代码 clear;close all;clc img1 = rand(5,5); % 输入图像 img2 = rand(5,5); % 核 % 卷积的几种实现方式 a = conv2(img1,img2,'same'); b = imfilter(img1,rot90(img2,2)); c = i 阅读全文
posted @ 2021-05-14 00:16 GShang 阅读(3959) 评论(0) 推荐(1) 编辑