Here is the code that I have. Where would I multiply it
def render_depth():
print("Script started...")
chunk = Metashape.app.document.chunk
#if not chunk.model:
#raise Exception("No model!")
for camera in get_cameras(chunk):
render = chunk.dense_cloud.renderDepth(camera.transform, camera.sensor.calibration,point_size=4, resolution=1, cull_points=False, add_alpha=False)
photo_dir = os.path.dirname(camera.photo.path) + "/workspace/depth/"
photo_filename = os.path.basename(camera.photo.path)
render_filename = os.path.splitext(photo_filename)[0] + "_render.tif"
render.save(os.path.join(photo_dir, render_filename))