gpt4 book ai didi

matlab - MATLAB 中的图像卷积 - conv 为什么比我的手写版本快 360 倍?

转载 作者:太空宇宙 更新时间:2023-11-03 20:12:39 26 4
gpt4 key购买 nike

我正在玩 MATLAB 中的图像处理算法。其中一个基本的是用高斯卷积图像。我在 800x600 灰度图像上运行了以下测试:

function [Y1, Y2] = testConvolveTime(inputImage)
[m,n] = size(inputImage);

% casting...
inputImage = cast(inputImage, 'single');

Gvec = [1 4 6 4 1]; % sigma=1;

Y1 = zeros(size(inputImage)); % modify it
Y2 = zeros(size(inputImage)); % modify it


%%%%%%%%%%%%%%%%%%% MATLAB CONV %%%%%%%%%%%%%%%%%%%%%
t1 = cputime;

for i=1:m
Y1(i,:) = conv(inputImage(i,:),Gvec,'same');
end

for j=1:n
Y1(:,j) = conv(inputImage(:,j),Gvec','same');
end

Y1 = round(Y1 / 16);
e1 = cputime - t1

%%%%%%%%%%%%%%%%%%% HAND-CODED CONV %%%%%%%%%%%%%%%%%%%%%
t2 = cputime;

for i=1:m
Y2(i,:) = myConv(inputImage(i,:),Gvec)';
end

for j=1:n
Y2(:,j) = myConv(inputImage(:,j),Gvec');
end

Y2 = round(Y2 / 16);
e2 = cputime - t2

end

这是我编写的实现 2 个向量卷积的代码:

% mimic MATLAB's conv(u,v,'same') function
% always returns column vec
function y = myConv(u_in, v_in)

len1 = length(u_in);
len2 = length(v_in);

if (len1 >= len2)
u = u_in;
v = v_in;
else
u = v_in;
v = u_in;
end

% from here on: v is the shorter vector (len1 >= len2)

len1 = length(u);
len2 = length(v);
maxLen = len1 + len2 - 1;

ytemp = zeros(maxLen,1);

% first part -- partial overlap
for i=1:len2-1
sum = 0;
for j=1:i
sum = sum + u(i-j+1)*v(j);
end
ytemp(i) = sum;
end

% main part -- complete overlap
for i=len2:len1
sum = 0;
for j=1:len2
sum = sum + u(i-j+1)*v(j);
end
ytemp(i) = sum;
end

% finally -- end portion
for i=len1+1:maxLen
%i-len1+1
sum = 0;
for j=i-len1+1:len2
sum = sum + u(i-j+1)*v(j);
end
ytemp(i) = sum;
end

%y = ytemp;

startIndex = round((maxLen - length(u_in))/2 + 1);
y = ytemp(startIndex:startIndex+length(u_in)-1);
% ^ note: to match MATLAB's conv(u,v,'same'), the output length must be
% that of the first argument.
end

这是我的测试结果:

>> [Y1, Y2] = testConvolveTime(A1);

e1 =

0.5313


e2 =

195.8906

>> norm(Y1 - Y2)

ans =

0

范数为 0 验证了数学的正确性。我的问题如下:

  1. 我的手工编码函数怎么会比使用 MATLAB 的 conv 的函数慢 >360 倍?

  2. 即使是 MATLAB 的 conv 对于图像处理仍然“慢”。如果与高斯卷积需要 0.5 秒,那么实时运行任何图像处理算法有什么希望(例如以 24 FPS)?作为引用,我的 CPU 是 Intel N3540 @ 2.16 GHz。带 8GB 内存。

  3. ^ 真正的问题是:当我在 C++ 上切换到 OpenCV 时,这样的操作会变得更快吗?

最佳答案

1) conv 快得多,因为它是一个内置的 native 函数,而您的函数是使用嵌套循环解释的 MATLAB 代码。

2) 在图像处理工具箱中尝试 imfilter。它可能比 conv 更快,并且适用于 uint8 数组。或者,如果您获得更新版本的 MATLAB,并且您只需要高斯滤波器,请尝试 imgaussfilt

关于matlab - MATLAB 中的图像卷积 - conv 为什么比我的手写版本快 360 倍?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34258412/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com