Improfile changing colour of plot
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello, does anyone know if its possible to change the colour of a plot created by improfile?
0 commentaires
Réponse acceptée
Setsuna Yuuki.
le 2 Déc 2020
Modifié(e) : Setsuna Yuuki.
le 2 Déc 2020
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()
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Robust Control Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!