I have a textured 3d model which has an obj file , mtl file and a png image for textures . I can visualize them without textures using trimesh and vtkplotter as :
//trimesh//
m = trimesh.load("3dmodel.obj")
//vtkplotter//
m = load("3dmodel.obj")
But they display the 3d models as plain meshes . I want to see them along with textures .
Can anyone please help me View the 3d models along with textures . Any small help would be greatly helpful .