11

我是搅拌机和 python 的新手。我有一个搅拌机模型(.blend),我想将它批量渲染为几个图像,为每个图像提供一些属性。

我用这些参数编写了一个 python 脚本,例如:

import bpy

pi = 3.14159265
fov = 50

scene = bpy.data.scenes["Scene"]

# Set render resolution
scene.render.resolution_x = 480
scene.render.resolution_y = 359

# Set camera fov in degrees
scene.camera.data.angle = fov*(pi/180.0)

# Set camera rotation in euler angles
scene.camera.rotation_mode = 'XYZ'
scene.camera.rotation_euler[0] = 0.0*(pi/180.0)
scene.camera.rotation_euler[1] = 0.0*(pi/180.0)
scene.camera.rotation_euler[2] = -30.0*(pi/180.0)

# Set camera translation
scene.camera.location.x = 0.0
scene.camera.location.y = 0.0
scene.camera.location.z = 80.0

所以我运行它就像

blender -b marker_a4.blend --python "marker_a4.py" -o //out -F JPEG -x 1 -f 1 

然后例如,如果我尝试对 python 脚本使用参数

...
import sys
...
fov = float(sys.argv[5])
...

并运行它:

blender -b marker_a4.blend --python "marker_a4.py" 80.0 -o //out -F JPEG -x 1 -f 1 

渲染完成,但我在开始时收到此消息。

read blend: /home/roho/workspace/encuadro/renders/marker/model/marker_a4.blend
read blend: /home/roho/workspace/encuadro/renders/marker/model/80.0
Unable to open "/home/roho/workspace/encuadro/renders/marker/model/80.0": No such file or directory.
...

谁能告诉我这是什么原因造成的?我认为搅拌机也将其解析为模型,但不明白为什么。后来我尝试了一些更复杂的方法来解析 python (argparse) 中的参数,但它根本不起作用。所以我想在这个级别上可能会发生一些奇怪的事情。

谢谢!

4

2 回答 2

9

我找到了我最初寻找的解决方案。

正如 Junuxx 所说,“在这种情况下,你不能将命令行参数直接传递给 python ......”但实际上你可以将参数传递给 python,但在另一种情况下。

所以做我想做的事情是直接在python脚本中渲染和保存

import sys

fov = float(sys.argv[-1])   
...
# Set Scenes camera and output filename 
bpy.data.scenes["Scene"].render.file_format = 'PNG'
bpy.data.scenes["Scene"].render.filepath = '//out'

# Render Scene and store the scene 
bpy.ops.render.render( write_still=True ) 

--python 选项(或 -P)必须位于末尾,您可以使用 -- 指定参数,然后加载模型并运行脚本。

> blender -b "demo.blend" -P script.py -- 50

归功于我发现的这个链接:http: //www.blender.org/forum/viewtopic.php?t=19102 &highlight=batch+render

于 2012-06-02T16:17:23.837 回答
4

在这种情况下,您不能将命令行参数直接传递给 python,因为它们被解释为 blender 的参数。解决这个问题的一种方法是设置环境变量,然后调用 blender/python,就像这样(假设你在 Windows 上 - 在其他操作系统上也可以做到同样的事情,但语法不同)

set arg1='foo' & set arg2='bar' & python envvar.py

注意:等号旁边没有空格!

在我调用 envvar.py 的 python 脚本中,你可以使用 os.getenv() 来访问这些变量

import os
print 'arg1 = ', os.getenv('arg1')
print 'arg2 = ', os.getenv('arg2')

输出:

arg1 = 'foo'
arg2 = 'bar'
于 2012-05-19T23:35:22.747 回答