Improfile changing colour of plot
8 次查看(过去 30 天)
显示 更早的评论
Hello, does anyone know if its possible to change the colour of a plot created by improfile?
0 个评论
采纳的回答
Setsuna Yuuki.
2020-12-2
编辑:Setsuna Yuuki.
2020-12-2
You can try:
%Example Mathwork
I = imread('liftingbody.png');
x = [19 427 416 77];
y = [96 462 37 33];
[a,b,c] = improfile(I,x,y);
%I added this lines
figure
plot3(b,a,c,'r')
view(45,45)
Original
with plot3()
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Robust Control Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!