Project Image on a Mesh

23 ビュー (過去 30 日間)
Humam Helfawi
Humam Helfawi 2019 年 2 月 27 日
編集済み: Christopher Stapels 2022 年 10 月 24 日
Hi,
I have a Mesh (Vertices and Faces). I want to project an RGB (or greyscale) Image on the mesh surface. Something like the first example in the this page https://www.mathworks.com/help/images/ref/warp.html.
However, the previouse example based on XYZ surface not a Mesh. Is there an alternative for a Mesh?
Thanks!

回答 (1 件)

Christopher Stapels
Christopher Stapels 2022 年 10 月 24 日
編集済み: Christopher Stapels 2022 年 10 月 24 日
You can use the same arguments used to create the mesh to create the warped surface, then plot the mesh and hold the plot while you plot the projected images plot.
[X,Y] = meshgrid(-8:.5:8);
R = sqrt(X.^2 + Y.^2) + eps;
Z = sin(R)./R;
mesh(X,Y,Z);
hold
[I,map] = imread('forest.tif');
warp(X,Y,Z,I,map);

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by