How to insert a background image into a 3d plot?

12 vues (au cours des 30 derniers jours)
Kate Murphy
Kate Murphy le 27 Mai 2020
Commenté : Ameer Hamza le 28 Mai 2020
Hi, I'm wondering how to go about inserting a 2d image into the background of a 3d plot, with the inserted image not interfering with the plot. Any advice would be greatly appreciated.

Réponse acceptée

Ameer Hamza
Ameer Hamza le 28 Mai 2020
Try something like this
img = imread('peacock.jpg');
ax1 = axes();
imshow(img, 'Parent', ax1);
ax2 = axes('Color', 'none');
ax2.XAxis.LineWidth = 2;
ax2.YAxis.LineWidth = 2;
ax2.ZAxis.LineWidth = 2;
hold on
plot3(rand(1,10), rand(1,10), rand(1,10), 'r', 'LineWidth', 4)
view(3)
  2 commentaires
Kate Murphy
Kate Murphy le 28 Mai 2020
This was very helpful, thank you very much!
Ameer Hamza
Ameer Hamza le 28 Mai 2020
I am glad to be of help!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Image Processing 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!

Translated by