我尝试使用 bpy() 渲染一个对象(.obj 和 .ply - 两者都不起作用version 2.93.1
),但它们是灰色的(没有颜色),尽管它们具有顶点颜色。
import bpy
import os
bpy.ops.object.select_by_type(type='MESH')
bpy.ops.object.delete()
file_loc = '../from-obj-to-photos/objects/glass.ply'
# imported_object = bpy.ops.import_scene.obj(filepath=file_loc, split_mode="OFF")
bpy.ops.import_mesh.ply(filepath=file_loc)
obj_object = bpy.context.selected_objects[0]
print('Imported name:', obj_object.name)
bpy.context.scene.render.filepath = '~/Desktop/photos/img.jpg'
bpy.context.scene.render.engine = 'CYCLES'
bpy.ops.render.render('INVOKE_DEFAULT', write_still=True)
应用此代码后,我得到了一个像这样的灰色玻璃:灰色玻璃
然后我发现了如何解决这个问题,我的最终代码如下所示:
import bpy
bpy.ops.object.select_by_type(type='MESH')
bpy.ops.object.delete()
file_loc = '../from-obj-to-photos/objects/glass.ply'
# imported_object = bpy.ops.import_scene.obj(filepath=file_loc, split_mode="OFF")
bpy.ops.import_mesh.ply(filepath=file_loc)
obj_object = bpy.context.selected_objects[0]
print('Imported name:', obj_object.name)
bpy.data.objects["glass"].select_set(True)
bpy.ops.paint.vertex_paint_toggle()
#bpy.context.area.ui_type = 'ShaderNodeTree'
#bpy.ops.material.new()
mat = bpy.data.materials.get("Material")
if mat:
mat.node_tree.nodes.new("ShaderNodeVertexColor")
mat.node_tree.links.new(mat.node_tree.nodes[2].outputs['Color'], mat.node_tree.nodes[1].inputs['Base Color'])
bpy.context.scene.render.filepath = '~/Desktop/photos/img.jpg'
bpy.context.scene.render.engine = 'CYCLES'
bpy.ops.render.render('INVOKE_DEFAULT', write_still=True)
但它显示一个错误:
Traceback (most recent call last):
File "<blender_console>", line 1, in <module>
KeyError: 'bpy_prop_collection[key]: key "Base Color" not found'
要修复它,我必须打开 Shader Editor,点击按钮browse material to be linked
并选择Material
.
执行代码后,玻璃会被着色(结果图像)。但我不知道如何自动化上一段中的流程。
另外,我想将顶点颜色转换为纹理可能会解决这个问题,但我没有找到任何地方如何使用 python 来做到这一点。
如果有人帮助我解决这个问题,我将不胜感激。