error while using imfilter function in matlab

23 ビュー (過去 30 日間)
M Manohar prabhu
M Manohar prabhu 2020 年 3 月 27 日
回答済み: DGM 2024 年 1 月 10 日
code:
function result=gaussian_pyramid(img,level)
img=im2double(img);
h = 1/16* [1, 4, 6, 4, 1];
filter = h'*h;
result{1} = imfilter(img, filter, 'replicate', 'conv');
temp_img = img;
for i = 2 : level
temp_img = temp_img(1 : 2 : end, 1 : 2 : end);
result{i} = imfilter(temp_img, filt, 'replicate', 'conv');
end
end
the error is attached below

回答 (1 件)

DGM
DGM 2024 年 1 月 10 日
The name of the filter variable is "filter", not "filt".
result{i} = imfilter(temp_img, filt, 'replicate', 'conv');
filt() is a function which, when called without any input arguments, will create an empty transfer function.
filt
ans = Empty transfer function.

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by