photogrammetry_importer.panels.render_operators

Module Contents

class photogrammetry_importer.panels.render_operators.SaveOpenGLRenderImageOperator

Bases: bpy.types.Operator

An Operator to save a rendering of the point cloud as Blender image.

bl_idname = photogrammetry_importer.save_opengl_render_image
bl_label = Save as Blender Image
bl_description = Use a single camera to render the point cloud.
classmethod poll(context)

Return the availability status of the operator.

execute(context)

Render the point cloud and save the result as image in Blender.

class photogrammetry_importer.panels.render_operators.ExportOpenGLRenderImageOperator

Bases: bpy.types.Operator, bpy_extras.io_utils.ExportHelper

An Operator to save a rendering of the point cloud to disk.

bl_idname = photogrammetry_importer.export_opengl_render_image
bl_label = Export Point Cloud Rendering as Image
bl_description = Use a single camera to render the point cloud.
filename_ext =
classmethod poll(context)

Return the availability status of the operator.

execute(context)

Render the point cloud and export the result as image.

class photogrammetry_importer.panels.render_operators.ExportOpenGLRenderAnimationOperator

Bases: bpy.types.Operator, bpy_extras.io_utils.ExportHelper

An Operator to save multiple renderings of the point cloud to disk.

bl_idname = photogrammetry_importer.export_opengl_render_animation
bl_label = Export Point Cloud Renderings as Image Sequence
bl_description = Use an animated camera to render the point cloud.
filename_ext =
classmethod poll(context)

Return the availability status of the operator.

execute(context)

Render the point cloud and export the result as image sequence.