Hello AiScan,
You can do it using Python:
import PhotoScan, os
chunk = PhotoScan.app.document.chunk
for camera in chunk.cameras:
if not chunk.model:
print(" no model" )
break
if not camera.transform:
continue
render = chunk.model.renderImage(camera.transform, camera.sensor.calibration)
render.save(os.path.dirname(camera.photo.path + "//" + camera.label[:-4] + "_render.jpg")
It should save model renders for all aligned cameras to the same folder where the source photos are present with the "_render" suffix.