How can I open .obj files with color in python?
Finally, I found the answer in the vedo library it can be installed easily:
pip install vedo
by these simple codes, this output came out:
from vedo import *
mesh = Mesh("data/10055_Gray_Wolf_v1_L3.obj",)
mesh.texture("data/10055_Gray_Wolf_Diffuse_v1.jpg", scale=0.1)
mesh.show()
I downloaded 3d obj file by its texture from here.