Clear Filters
Clear Filters

texture map an image on triangular mesh

17 views (last 30 days)
MB
MB on 2 May 2020
Answered: Ameer Hamza on 3 May 2020
Given an irregular triangle mesh with V and F as the no. of vertices and faces respectively and an image. How to map image (texture) to Mesh(V,F) ?
There are other answers but they are using meshgrid. Can I do this without using meshgrid as my Mesh is irregular.
  5 Comments
Ameer Hamza
Ameer Hamza on 2 May 2020
But how are you plotting these points? Mesh(V,F) is not a function in MATLAB.

Sign in to comment.

Answers (2)

KSSV
KSSV on 2 May 2020
Read about triplot, trimesh, trisurf and patch.

Ameer Hamza
Ameer Hamza on 3 May 2020
By default, trimesh returns a patch object. MATLAB does not seem to support texture mapping on the patch object. See this FEX package: https://www.mathworks.com/matlabcentral/fileexchange/28106-texture-patch, which uses the surface object to create the patches which support texture mapping.

Community Treasure Hunt

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

Start Hunting!