Undefined function 'taylor' for input arguments of type 'uint8'. je peut pas vraiement comprendre c'est quoi l'erreur ?
1 次查看(过去 30 天)
显示 更早的评论
img=imread('img1.jpg');
[m,n,p]=size(img);
if p==3
img=rgb2double(img);
end
for i=1:m
for j=1:n
a=img(i,j);
taylor(img,a);
end
end
7 个评论
Walter Roberson
2018-2-19
You will need to find a different approach. taylor analysis is not defined for numeric arrays.
采纳的回答
更多回答(1 个)
Walter Roberson
2018-2-19
A truncated taylor series can be viewed as a polynomial fitting.
Hypothetically, you could model an image by declaring it to be a surface in X and Y, and then doing a multinomial fit to it, and then replacing the image with the values projected by the multinomial.
In practice: this is likely to work very very poorly.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!