"Expected a string scalar or character vector for the parameter name. "

19 次查看(过去 30 天)
i have facing error
to implement the gabor filter
Error using gabor (line 16)
Expected a string scalar or character vector for the parameter name.
Error in imgaborfilt>parseInputs (line 169)
GaborBank = gabor(varargin{2:end});
here is my code
I = imread('abc.jpg');
I = double(rgb2gray(I));
wavelength = 4;
orientation = 90;
[mag,phase] = imgaborfilt(I,wavelength,orientation);
figure
subplot(1,3,1);
imshow(I);
title('Original Image');
subplot(1,3,2);
imshow(mag,[])
title('Gabor magnitude');
subplot(1,3,3);

回答(1 个)

Oulayaa LAHSARI
Oulayaa LAHSARI 2022-3-26
Error using imageDatastore (line 139)
Expected a string scalar or character vector for the
parameter name.
  1 个评论
Walter Roberson
Walter Roberson 2022-3-26
The original poster did not use imageDatastore anywhere, so it is difficult to understand how your proposed answer is a solution to their question ?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Graphics Performance 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by