Metashape Python API 1 6 0
Metashape Python API 1 6 0
Release 1.6.0
Agisoft LLC
1 Overview 3
2 Application Modules 5
i
ii
Metashape Python Reference, Release 1.6.0
CONTENTS 1
Metashape Python Reference, Release 1.6.0
2 CONTENTS
CHAPTER
ONE
OVERVIEW
This API is in development and will be extended in the future Metashape releases.
3
Metashape Python Reference, Release 1.6.0
4 Chapter 1. Overview
CHAPTER
TWO
APPLICATION MODULES
Metashape module provides access to the core processing functionality, including support for inspection and manipu-
lation with project data.
The main component of the module is a Document class, which represents a Metashape project. Multiple Document
instances can be created simultaneously if needed. Besides that a currently opened project in the application can be
accessed using Metashape.app.document property.
The following example performs main processing steps on existing project and saves back the results:
>>> chunk.alignCameras()
>>> chunk.buildDepthMaps(downscale=4, filter=Metashape.AggressiveFiltering)
>>> chunk.buildDenseCloud()
>>> chunk.buildModel(surface_type=Metashape.Arbitrary, interpolation=Metashape.
˓→EnabledInterpolation)
>>> chunk.buildUV(mapping=Metashape.GenericMapping)
>>> chunk.buildTexture(blending=Metashape.MosaicBlending, size=4096)
>>> doc.save()
class Metashape.Antenna
GPS antenna position relative to camera.
copy()
Return a copy of the object.
Returns A copy of the object.
Return type Antenna
fixed
Fix antenna flag.
Type bool
location
Antenna coordinates.
Type Vector
location_acc
Antenna location accuracy.
Type Vector
5
Metashape Python Reference, Release 1.6.0
location_covariance
Antenna location covariance.
Type Matrix
location_ref
Antenna location reference.
Type Vector
rotation
Antenna rotation angles.
Type Vector
rotation_acc
Antenna rotation accuracy.
Type Vector
rotation_covariance
Antenna rotation covariance.
Type Matrix
rotation_ref
Antenna rotation reference.
Type Vector
class Metashape.Application
Application class provides access to several global application attributes, such as document currently loaded in
the user interface, software version and GPU device configuration. It also contains helper routines to prompt the
user to input various types of parameters, like displaying a file selection dialog or coordinate system selection
dialog among others.
An instance of Application object can be accessed using Metashape.app attribute, so there is usually no need to
create additional instances in the user code.
The following example prompts the user to select a new coordinate system, applies it to the ative chunk and
saves the project under the user selected file name:
class ConsolePane
ConsolePane class provides access to the console pane
clear()
Clear console pane.
contents
Console pane contents.
Type string
class Application.PhotosPane
PhotosPane class provides access to the photos pane
resetFilter()
Reset photos pane filter.
setFilter(items)
Set photos pane filter.
Parameters items (list of Camera or Marker) – filter to apply.
class Application.Settings
PySettings()
Application settings
load()
Load settings from disk.
log_enable
Enable writing log to file.
Type bool
log_path
Log file path.
Type string
network_enable
Network processing enabled flag.
Type bool
network_host
Network server host name.
Type string
network_path
Network data root path.
Type string
network_port
Network server control port.
Type int
save()
Save settings on disk.
setValue(key, value)
Set settings value. :arg key: Key. :type key: string :arg value: Value. :type value: object
value(key)
Return settings value. :arg key: Key. :type key: string :return: Settings value. :rtype: object
Application.activated
Metashape activation status.
Type bool
Application.addMenuItem(label, func[, shortcut ][, icon ])
Create a new menu entry.
Parameters
• label (string) – Menu item label.
• func (function) – Function to be called.
7
Metashape Python Reference, Release 1.6.0
9
Metashape Python Reference, Release 1.6.0
• filter (string) – Optional file filter, e.g. “Text file (.txt)” or “.txt”. Multiple filters
are separated with ”;;”.
Returns Path to the file selected. If the input was cancelled, empty string is returned.
Return type string
Application.getOpenFileNames([hint ][, filter ])
Prompt user for one or more existing files.
Parameters
• hint (string) – Optional text label for the dialog.
• filter (string) – Optional file filter, e.g. “Text file (.txt)” or “.txt”. Multiple filters
are separated with ”;;”.
Returns List of file paths selected by the user. If the input was cancelled, empty list is returned.
Return type list
Application.getSaveFileName([hint ][, filter ])
Prompt user for the file. The file does not have to exist.
Parameters
• hint (string) – Optional text label for the dialog.
• filter (string) – Optional file filter, e.g. “Text file (.txt)” or “.txt”. Multiple filters
are separated with ”;;”.
Returns Path to the file selected. If the input was cancelled, empty string is returned.
Return type string
Application.getString(label=’‘, value=’‘)
Prompt user for the string value.
Parameters
• label (string) – Optional text label for the dialog.
• value (string) – Default value.
Returns String entered by the user.
Return type string
Application.gpu_mask
GPU device bit mask: 1 - use device, 0 - do not use (i.e. value 5 enables device number 0 and 2).
Type int
Application.messageBox(message)
Display message box to the user.
Parameters message (string) – Text message to be displayed.
Application.photos_pane
Photos pane.
Type PhotosPane
Application.quit()
Exit application.
Application.settings
Application settings.
Type Settings
Application.title
Application name.
Type string
Application.update()
Update user interface during long operations.
Application.version
Metashape version.
Type string
Application.viewpoint
Viewpoint in the model view.
Type Viewpoint
class Metashape.BBox
Axis aligned bounding box
copy()
Return a copy of the object.
Returns A copy of the object.
Return type BBox
max
Maximum bounding box extent.
Type Vector
min
Minimum bounding box extent.
Type Vector
size
Bounding box dimension.
Type int
class Metashape.BlendingMode
Blending mode in [AverageBlending, MosaicBlending, MinBlending, MaxBlending, DisabledBlending]
class Metashape.Calibration
Calibration object contains camera calibration information including image size, focal length, principal point
coordinates and distortion coefficients.
b1
Affinity.
Type float
b2
Non-orthogonality.
Type float
copy()
Return a copy of the object.
Returns A copy of the object.
11
Metashape Python Reference, Release 1.6.0
Parameters
• path (string) – path to calibration file
• format (CalibrationFormat) – Calibration format.
Returns success of operation
Return type bool
p1
Decentering distortion coefficient P1.
Type float
p2
Decentering distortion coefficiant P2.
Type float
p3
Decentering distortion coefficient P3.
Type float
p4
Decentering distortion coefficiant P4.
Type float
project(point)
Return projected pixel coordinates of the point.
Parameters point (Vector) – Coordinates of the point to be projected.
Returns 2D projected point coordinates.
Return type Vector
rpc
RPC model.
Type RPCModel
save(path, format=CalibrationFormatXML[, label ][, pixel_size ][, focal_length ], cx = 0, cy = 0)
Saves calibration to file.
Parameters
• path (string) – path to calibration file
• format (CalibrationFormat) – Calibration format.
• label (string) – Calibration label used in Australis, CalibCam and CalCam formats.
• pixel_size (Vector) – Pixel size in mm used to convert normalized calibration co-
efficients to Australis and CalibCam coefficients.
• focal_length (float) – Focal length (Grid calibration format only).
• cx (float) – X principal point coordinate (Grid calibration format only).
• cy (float) – Y principal point coordinate (Grid calibration format only).
Returns success of operation
Return type bool
13
Metashape Python Reference, Release 1.6.0
type
Camera model.
Type Sensor.Type
unproject(point)
Return direction corresponding to the image point.
Parameters point (Vector) – Pixel coordinates of the point.
Returns 3D vector in the camera coordinate system.
Return type Vector
width
Image width.
Type int
class Metashape.CalibrationFormat
Calibration format in [CalibrationFormatXML, CalibrationFormatAustralis, CalibrationFormatAustralisV7,
CalibrationFormatPhotoModeler, CalibrationFormatCalibCam, CalibrationFormatCalCam, CalibrationFormat-
Inpho, CalibrationFormatUSGS, CalibrationFormatPix4D, CalibrationFormatOpenCV, CalibrationFormatGrid]
class Metashape.Camera
Camera instance
class Reference
Camera reference data.
accuracy
Camera location accuracy.
Type Vector
enabled
Location enabled flag.
Type bool
location
Camera coordinates.
Type Vector
location_accuracy
Camera location accuracy.
Type Vector
location_enabled
Location enabled flag.
Type bool
rotation
Camera rotation angles.
Type Vector
rotation_accuracy
Camera rotation accuracy.
Type Vector
rotation_enabled
Rotation enabled flag.
Type bool
class Camera.Type
Camera type in [Regular, Keyframe]
Camera.calibration
Adjusted camera calibration including photo-invariant parameters.
Type Calibration
Camera.center
Camera station coordinates for the photo in the chunk coordinate system.
Type Vector
Camera.chunk
Chunk the camera belongs to.
Type Chunk
Camera.enabled
Enables/disables the photo.
Type bool
Camera.error(point, proj)
Returns projection error.
Parameters
• point (Vector) – Coordinates of the point to be projected.
• proj (Vector) – Pixel coordinates of the point.
Returns 2D projection error.
Return type Vector
Camera.frames
Camera frames.
Type list of Camera
Camera.group
Camera group.
Type CameraGroup
Camera.image()
Returns image data.
Returns Image data.
15
Metashape Python Reference, Release 1.6.0
17
Metashape Python Reference, Release 1.6.0
CameraGroup.label
Camera group label.
Type string
CameraGroup.selected
Current selection state.
Type bool
CameraGroup.type
Camera group type.
Type CameraGroup.Type
class Metashape.CameraTrack
Camera track.
chunk
Chunk the camera track belongs to.
Type Chunk
duration
Animation duration.
Type float
field_of_view
Vertical field of view in degrees.
Type float
keyframes
Camera track keyframes.
Type list of Camera
label
Animation label.
Type string
load(path[, projection ])
Load camera track from file.
Parameters
• path (string) – Path to camera track file
• projection (CoordinateSystem) – Camera track coordinate system.
meta
Camera track meta data.
Type MetaData
save(path[, projection ])
Save camera track to file.
Parameters
• path (string) – Path to camera track file
• projection (CoordinateSystem) – Camera track coordinate system.
class Metashape.CamerasFormat
Camera orientation format in [CamerasFormatXML, CamerasFormatCHAN, CamerasFormatBoujou, Cam-
erasFormatBundler, CamerasFormatOPK, CamerasFormatPATB, CamerasFormatBINGO, CamerasForma-
tORIMA, CamerasFormatAeroSys, CamerasFormatInpho, CamerasFormatSummit, CamerasFormatBlocksEx-
change, CamerasFormatRZML, CamerasFormatVisionMap, CamerasFormatABC, CamerasFormatFBX]
class Metashape.Chunk
A Chunk object:
•provides access to all chunk components (sensors, cameras, camera groups, markers, scale bars)
•contains data inherent to individual frames (point cloud, model, etc)
•implements processing methods (matchPhotos, alignCameras, buildDenseCloud, buildModel, etc)
•provides access to other chunk attributes (transformation matrix, coordinate system, meta-data, etc..)
New components can be created using corresponding addXXX methods (addSensor, addCamera, addCamera-
Group, addMarker, addScalebar, addFrame). Removal of components is supported by a single remove method,
which can accept lists of various component types.
In case of multi-frame chunks the Chunk object contains an additional reference to the particular chunk frame,
initialized to the current frame by default. Various methods that work on a per frame basis (matchPhotos,
buildModel, etc) are applied to this particular frame. A frames attribute can be used to obtain a list of Chunk
objects that reference all available frames.
The following example performs image matching and alignment for the active chunk:
addCamera([sensor ])
Add new camera to the chunk.
Parameters sensor (Sensor) – Sensor to be assigned to this camera.
Returns Created camera.
Return type Camera
addCameraGroup()
Add new camera group to the chunk.
Returns Created camera group.
Return type CameraGroup
addCameraTrack()
Add new camera track to the chunk.
Returns Created camera track.
Return type CameraTrack
addDenseCloud()
Add new dense cloud to the chunk.
Returns Created dense cloud.
Return type DenseCloud
19
Metashape Python Reference, Release 1.6.0
addDepthMaps()
Add new depth maps set to the chunk.
Returns Created depth maps set.
Return type DepthMaps
addElevation()
Add new elevation model to the chunk.
Returns Created elevation model.
Return type Elevation
addFrame()
Add new frame to the chunk.
Returns Created frame.
Return type Frame
addFrames([chunk ][, frames ], copy_depth_maps=True, copy_dense_cloud=True,
copy_model=True, copy_tiled_model=True, copy_elevation=True,
copy_orthomosaic=True[, progress ])
Add frames from specified chunk.
Parameters
• chunk (int) – Chunk to copy frames from.
• frames (list of int) – List of frame keys to copy.
• copy_depth_maps (bool) – Copy depth maps.
• copy_dense_cloud (bool) – Copy dense cloud.
• copy_model (bool) – Copy model.
• copy_tiled_model (bool) – Copy tiled model.
• copy_elevation (bool) – Copy DEM.
• copy_orthomosaic (bool) – Copy orthomosaic.
• progress (Callable[[float], None]) – Progress callback.
addMarker([point ], visibility=False)
Add new marker to the chunk.
Parameters
• point (Vector) – Point to initialize marker projections.
• visibility (bool) – Enables visibility check during projection assignment.
Returns Created marker.
Return type Marker
addMarkerGroup()
Add new marker group to the chunk.
Returns Created marker group.
Return type MarkerGroup
addModel()
Add new model to the chunk.
21
Metashape Python Reference, Release 1.6.0
addTiledModel()
Add new tiled model to the chunk.
Returns Created tiled model.
Return type TiledModel
alignCameras([cameras ], min_image=2, adaptive_fitting=False, reset_alignment=True, subdi-
vide_task=True[, progress ])
Perform photo alignment for the chunk.
Parameters
• cameras (list of int) – List of cameras to align.
• min_image (int) – Minimum number of point projections.
• adaptive_fitting (bool) – Enable adaptive fitting of distortion coefficients.
• reset_alignment (bool) – Reset current alignment.
• subdivide_task (bool) – Enable fine-level task subdivision.
• progress (Callable[[float], None]) – Progress callback.
analyzePhotos([cameras ], filter_mask=False[, progress ])
Estimate image quality.
Parameters
• cameras (list of int) – List of cameras to be analyzed.
• filter_mask (bool) – Constrain analyzed image region by mask.
• progress (Callable[[float], None]) – Progress callback.
buildContours(source_data=ElevationData, interval=1, min_value=-1e+10, max_value=1e+10,
prevent_intersections=False[, progress ])
Build contours for the chunk.
Parameters
• source_data (DataSource) – Source data for contour generation.
• interval (float) – Contour interval.
• min_value (float) – Minimum value of contour range.
• max_value (float) – Maximum value of contour range.
• prevent_intersections (bool) – Prevent contour intersections.
• progress (Callable[[float], None]) – Progress callback.
buildDem(source_data=DenseCloudData, interpolation=EnabledInterpolation[, projection ][, region
][, classes ], flip_x=False, flip_y=False, flip_z=False, resolution=0, subdivide_task=True,
workitem_size_tiles=10, max_workgroup_size=100[, progress ])
Build elevation model for the chunk.
Parameters
• source_data (DataSource) – Selects between dense point cloud and sparse point
cloud.
• interpolation (Interpolation) – Interpolation mode.
• projection (OrthoProjection) – Output projection.
• region (BBox) – Region to be processed.
• classes (list of int) – List of dense point classes to be used for surface extraction.
• flip_x (bool) – Flip X axis direction.
• flip_y (bool) – Flip Y axis direction.
• flip_z (bool) – Flip Z axis direction.
• resolution (float) – Output resolution in meters.
• subdivide_task (bool) – Enable fine-level task subdivision.
• workitem_size_tiles (int) – Number of tiles in a workitem.
• max_workgroup_size (int) – Maximum workgroup size.
• progress (Callable[[float], None]) – Progress callback.
buildDenseCloud(point_colors=True, point_confidence=False, keep_depth=True,
max_neighbors=100, subdivide_task=True, workitem_size_cameras=20,
max_workgroup_size=100[, progress ])
Generate dense cloud for the chunk.
Parameters
• point_colors (bool) – Enable point colors calculation.
• point_confidence (bool) – Enable point confidence calculation.
• keep_depth (bool) – Enable store depth maps option.
• max_neighbors (int) – Maximum number of neighbor images to use for depth map
filtering.
• subdivide_task (bool) – Enable fine-level task subdivision.
• workitem_size_cameras (int) – Number of cameras in a workitem.
• max_workgroup_size (int) – Maximum workgroup size.
• progress (Callable[[float], None]) – Progress callback.
buildDepthMaps(downscale=4, filter_mode=MildFiltering[, cameras ], reuse_depth=False,
max_neighbors=-1, subdivide_task=True, workitem_size_cameras=20,
max_workgroup_size=100[, progress ])
Generate depth maps for the chunk.
Parameters
• downscale (int) – Depth map quality.
• filter_mode (FilterMode) – Depth map filtering mode.
• cameras (list of int) – List of cameras to process.
• reuse_depth (bool) – Enable reuse depth maps option.
• max_neighbors (int) – Maximum number of neighbor images to use for depth map
generation.
• subdivide_task (bool) – Enable fine-level task subdivision.
• workitem_size_cameras (int) – Number of cameras in a workitem.
• max_workgroup_size (int) – Maximum workgroup size.
• progress (Callable[[float], None]) – Progress callback.
23
Metashape Python Reference, Release 1.6.0
buildModel(surface_type=Arbitrary, interpolation=EnabledInterpolation,
face_count=HighFaceCount, face_count_custom=200000,
source_data=DenseCloudData, vertex_colors=True, vertex_confidence=True, volu-
metric_masks=False, keep_depth=False, trimming_radius=10[, cameras ][, classes ],
workitem_size_cameras=20, max_workgroup_size=100[, progress ])
Generate model for the chunk frame.
Parameters
• surface_type (SurfaceType) – Type of object to be reconstructed.
• interpolation (Interpolation) – Interpolation mode.
• face_count (FaceCount) – Target face count.
• face_count_custom (int) – Custom face count.
• source_data (DataSource) – Selects between dense point cloud, sparse point cloud
and depth maps.
• vertex_colors (bool) – Enable vertex colors calculation.
• vertex_confidence (bool) – Enable vertex confidence calculation.
• volumetric_masks (bool) – Enable strict volumetric masking.
• keep_depth (bool) – Enable store depth maps option.
• trimming_radius (int) – Trimming radius (no trimming if zero).
• cameras (list of int) – List of cameras to process.
• classes (list of int) – List of dense point classes to be used for surface extraction.
• workitem_size_cameras (int) – Number of cameras in a workitem.
• max_workgroup_size (int) – Maximum workgroup size.
• progress (Callable[[float], None]) – Progress callback.
buildOrthomosaic(surface_data=ModelData, blending_mode=MosaicBlending, fill_holes=True,
cull_faces=False, refine_seamlines=False[, projection ][, region ], res-
olution=0, resolution_x=0, resolution_y=0, flip_x=False, flip_y=False,
flip_z=False, subdivide_task=True, workitem_size_cameras=20,
workitem_size_tiles=10, max_workgroup_size=100[, progress ])
Build orthomosaic for the chunk.
Parameters
• surface_data (DataSource) – Orthorectification surface.
• blending_mode (BlendingMode) – Orthophoto blending mode.
• fill_holes (bool) – Enable hole filling.
• cull_faces (bool) – Enable back-face culling.
• refine_seamlines (bool) – Refine seamlines based on image content.
• projection (OrthoProjection) – Output projection.
• region (BBox) – Region to be processed.
• resolution (float) – Pixel size in meters.
• resolution_x (float) – Pixel size in the X dimension in projected units.
• resolution_y (float) – Pixel size in the Y dimension in projected units.
25
Metashape Python Reference, Release 1.6.0
• classes (list of int) – List of dense point classes to be used for surface extraction.
• subdivide_task (bool) – Enable fine-level task subdivision.
• workitem_size_cameras (int) – Number of cameras in a workitem.
• max_workgroup_size (int) – Maximum workgroup size.
• progress (Callable[[float], None]) – Progress callback.
buildUV(mapping_mode=GenericMapping, page_count=1, adaptive_resolution=False[, camera ][,
progress ])
Generate uv mapping for the model.
Parameters
• mapping_mode (MappingMode) – Texture mapping mode.
• page_count (int) – Number of texture pages to generate.
• adaptive_resolution (bool) – Enable adaptive face detalization.
• camera (int) – Camera to be used for texturing in MappingCamera mode.
• progress (Callable[[float], None]) – Progress callback.
calibrateColors(source_data=ModelData, white_balance=False[, cameras ][, progress ])
Perform radiometric calibration.
Parameters
• source_data (DataSource) – Source data for calibration.
• white_balance (bool) – Calibrate white balance.
• cameras (list of int) – List of cameras to process.
• progress (Callable[[float], None]) – Progress callback.
calibrateReflectance(use_reflectance_panels=True, use_sun_sensor=False[, progress ])
Calibrate reflectance factors based on calibration panels and/or sun sensor.
Parameters
• use_reflectance_panels (bool) – Use calibrated reflectance panels.
• use_sun_sensor (bool) – Apply irradiance sensor measurements.
• progress (Callable[[float], None]) – Progress callback.
camera_crs
Coordinate system used for camera reference data.
Type CoordinateSystem
camera_groups
List of camera groups in the chunk.
Type list of CameraGroup
camera_location_accuracy
Expected accuracy of camera coordinates in meters.
Type Vector
camera_rotation_accuracy
Expected accuracy of camera orientation angles in degrees.
Type Vector
camera_track
Camera track.
Type CameraTrack
camera_tracks
List of camera tracks in the chunk.
Type list of CameraTrack
cameras
List of Regular and Keyframe cameras in the chunk.
Type list of Camera
cir_transform
CIR calibration matrix.
Type CirTransform
copy([frames ][, items ], keypoints=True[, progress ])
Make a copy of the chunk.
Parameters
• frames (list of Frame) – Optional list of frames to be copied.
• items (list of DataSource) – A list of items to copy.
• keypoints (bool) – copy key points data.
• progress (Callable[[float], None]) – Progress callback.
Returns Copy of the chunk.
Return type Chunk
crs
Coordinate system used for reference data.
Type CoordinateSystem
decimateModel(face_count=200000[, asset ][, progress ])
Decimate the model to the specified face count.
Parameters
• face_count (int) – Target face count.
• asset (int) – Model to process.
• progress (Callable[[float], None]) – Progress callback.
dense_cloud
Default dense point cloud for the current frame.
Type DenseCloud
dense_clouds
List of dense clouds for the current frame.
Type list of DenseCloud
depth_maps
Default depth maps set for the current frame.
Type DepthMaps
27
Metashape Python Reference, Release 1.6.0
depth_maps_sets
List of depth maps sets for the current frame.
Type list of DepthMaps
detectFiducials([progress ])
Detect fiducial marks on film cameras.
Parameters progress (Callable[[float], None]) – Progress callback.
detectMarkers(target_type=CircularTarget12bit, tolerance=50, filter_mask=False, inverted=False,
noparity=False, maximum_residual=5, minimum_size=0, minimum_dist=5[, cam-
eras ][, frames ][, progress ])
Create markers from coded targets.
Parameters
• target_type (TargetType) – Type of targets.
• tolerance (int) – Detector tolerance (0 - 100).
• filter_mask (bool) – Ignore masked image regions.
• inverted (bool) – Detect markers on black background.
• noparity (bool) – Disable parity checking.
• maximum_residual (float) – Maximum residual for non-coded targets in pixels.
• minimum_size (int) – Minimum target radius in pixels to be detected (CrossTarget
type only).
• minimum_dist (int) – Minimum distance between targets in pixels (CrossTarget type
only).
• cameras (list of int) – List of cameras to process.
• frames (list of int) – List of frames to process.
• progress (Callable[[float], None]) – Progress callback.
elevation
Default elevation model for the current frame.
Type Elevation
elevations
List of elevation models for the current frame.
Type list of Elevation
enabled
Enables/disables the chunk.
Type bool
euler_angles
Euler angles triplet used for rotation reference.
Type EulerAngles
29
Metashape Python Reference, Release 1.6.0
31
Metashape Python Reference, Release 1.6.0
33
Metashape Python Reference, Release 1.6.0
35
Metashape Python Reference, Release 1.6.0
37
Metashape Python Reference, Release 1.6.0
marker_location_accuracy
Expected accuracy of marker coordinates in meters.
Type Vector
marker_projection_accuracy
Expected accuracy of marker projections in pixels.
Type float
markers
List of Regular, Vertex and Fiducial markers in the chunk.
Type list of Marker
masks
Image masks.
Type Masks
matchPhotos(downscale=1, generic_preselection=True, reference_preselection=True, ref-
erence_preselection_mode=ReferencePreselectionSource, filter_mask=False,
mask_tiepoints=True, keypoint_limit=40000, tiepoint_limit=4000,
keep_keypoints=False[, pairs ][, cameras ], guided_matching=False, re-
set_matches=True, subdivide_task=True, workitem_size_cameras=20,
workitem_size_pairs=80, max_workgroup_size=100[, progress ])
Perform image matching for the chunk frame.
Parameters
• downscale (int) – Image alignment accuracy.
• generic_preselection (bool) – Enable generic preselection.
• reference_preselection (bool) – Enable reference preselection.
• reference_preselection_mode (ReferencePreselectionMode) – Refer-
ence preselection mode.
• filter_mask (bool) – Filter points by mask.
• mask_tiepoints (bool) – Apply mask filter to tie points.
• keypoint_limit (int) – Key point limit.
• tiepoint_limit (int) – Tie point limit.
• keep_keypoints (bool) – Store keypoints in the project.
• pairs (list of (int, int) tuples) – User defined list of camera pairs to
match.
• cameras (list of int) – List of cameras to match.
• guided_matching (bool) – Enable guided image matching.
• reset_matches (bool) – Reset current matches.
• subdivide_task (bool) – Enable fine-level task subdivision.
• workitem_size_cameras (int) – Number of cameras in a workitem.
• workitem_size_pairs (int) – Number of image pairs in a workitem.
• max_workgroup_size (int) – Maximum workgroup size.
• progress (Callable[[float], None]) – Progress callback.
meta
Chunk meta data.
Type MetaData
model
Default model for the current frame.
Type Model
models
List of models for the current frame.
Type list of Model
modified
Modified flag.
Type bool
optimizeCameras(fit_f=True, fit_cx=True, fit_cy=True, fit_b1=False, fit_b2=False, fit_k1=True,
fit_k2=True, fit_k3=True, fit_k4=False, fit_p1=True, fit_p2=True,
fit_corrections=False, adaptive_fitting=False, tiepoint_covariance=False[,
progress ])
Perform optimization of point cloud / camera parameters.
Parameters
• fit_f (bool) – Enable optimization of focal length coefficient.
• fit_cx (bool) – Enable optimization of X principal point coordinates.
• fit_cy (bool) – Enable optimization of Y principal point coordinates.
• fit_b1 (bool) – Enable optimization of aspect ratio.
• fit_b2 (bool) – Enable optimization of skew coefficient.
• fit_k1 (bool) – Enable optimization of k1 radial distortion coefficient.
• fit_k2 (bool) – Enable optimization of k2 radial distortion coefficient.
• fit_k3 (bool) – Enable optimization of k3 radial distortion coefficient.
• fit_k4 (bool) – Enable optimization of k3 radial distortion coefficient.
• fit_p1 (bool) – Enable optimization of p1 tangential distortion coefficient.
• fit_p2 (bool) – Enable optimization of p2 tangential distortion coefficient.
• fit_corrections (bool) – Enable optimization of additional corrections.
• adaptive_fitting (bool) – Enable adaptive fitting of distortion coefficients.
• tiepoint_covariance (bool) – Estimate tie point covariance matrices.
• progress (Callable[[float], None]) – Progress callback.
orthomosaic
Default orthomosaic for the current frame.
Type Orthomosaic
orthomosaics
List of orthomosaics for the current frame.
Type list of Orthomosaic
39
Metashape Python Reference, Release 1.6.0
point_cloud
Generated sparse point cloud.
Type PointCloud
primary_channel
Primary channel index (-1 for default).
Type int
raster_transform
Raster transform.
Type RasterTransform
reduceOverlap(overlap=30, max_cameras=0, use_selection=False, capture_distance=40[, progress
])
Disable redundant cameras.
Parameters
• overlap (int) – Overlap level.
• max_cameras (int) – Maximum cameras to use.
• use_selection (bool) – Focus on model selection.
• capture_distance (float) – Image capture distance (m).
• progress (Callable[[float], None]) – Progress callback.
refineMarkers([markers ][, progress ])
Refine markers based on images content.
Parameters
• markers (list of int) – Optional list of markers to be processed.
• progress (Callable[[float], None]) – Progress callback.
refineMesh(downscale=4, iterations=10, smoothness=0.5[, cameras ][, progress ])
Generate model for the chunk frame.
Parameters
• downscale (int) – Refinement quality.
• iterations (int) – Number of refinement iterations.
• smoothness (float) – Smoothing strength. Should be in range [0, 1].
• cameras (list of int) – List of cameras to process.
• progress (Callable[[float], None]) – Progress callback.
region
Reconstruction volume selection.
Type Region
remove(items)
Remove items from the chunk.
Parameters items (list of Frame, Sensor, CameraGroup, MarkerGroup,
ScalebarGroup, Camera, Marker, Scalebar or CameraTrack) – A list of
items to be removed.
41
Metashape Python Reference, Release 1.6.0
world_crs
Coordinate system used as world coordinate system.
Type CoordinateSystem
class Metashape.ChunkTransform
Transformation between chunk and world coordinates systems.
copy()
Return a copy of the object.
Returns A copy of the object.
Return type ChunkTransform
matrix
Transformation matrix.
Type Matrix
rotation
Rotation component.
Type Matrix
scale
Scale component.
Type float
translation
Translation component.
Type Vector
class Metashape.CirTransform
CIR calibration matrix.
calibrate()
Calibrate CIR matrix based on orthomosaic histogram.
coeffs
Color matrix.
Type Matrix
copy()
Return a copy of the object.
Returns A copy of the object.
Return type CirTransform
reset()
Reset CIR calibration matrix.
class Metashape.CoordinateSystem
Coordinate reference system (local, geographic or projected).
The following example changes chunk coordinate system to WGS 84 / UTM zone 41N and loads reference data
from file:
43
Metashape Python Reference, Release 1.6.0
addGeoid(path)
Register geoid model.
Parameters path (string) – Path to geoid file.
authority
Authority identifier of the coordinate system.
Type string
copy()
Return a copy of the object.
Returns A copy of the object.
Return type CoordinateSystem
geoccs
Base geocentric coordinate system.
Type CoordinateSystem
geogcs
Base geographic coordinate system.
Type CoordinateSystem
geoid_height
Fixed geoid height to be used instead of interpolated values.
Type float
init(crs)
Initialize projection based on specified WKT definition or authority identifier.
Parameters crs (string) – WKT definition of coordinate system or authority identifier.
listBuiltinCRS()
Returns a list of builtin coordinate systems.
localframe(point)
Returns 4x4 transformation matrix to LSE coordinates at the given point.
Parameters point (Vector) – Coordinates of the origin in the geocentric coordinates.
Returns Transformation from geocentric coordinates to local coordinates.
Return type Matrix
name
Name of the coordinate system.
Type string
proj4
Coordinate system definition in PROJ.4 format.
Type string
project(point)
Projects point from geocentric coordinates to projected geographic coordinate system.
Parameters point (Vector) – 3D point in geocentric coordinates.
45
Metashape Python Reference, Release 1.6.0
Parameters
• target (PointClass) – Target class.
• source (PointClass or list of PointClass) – Classes of points to be replaced.
• progress (Callable[[float], None]) – Progress callback.
assignClassToSelection(target=0[, source ][, progress ])
Assign class to selected points.
Parameters
• target (PointClass) – Target class.
• source (PointClass or list of PointClass) – Classes of points to be replaced.
• progress (Callable[[float], None]) – Progress callback.
bands
List of color bands.
Type list of string
classifyGroundPoints(max_angle=15.0, max_distance=1.0, cell_size=50.0[, source ][, progress
])
Classify points into ground and non ground classes.
Parameters
• max_angle (float) – Maximum angle (degrees).
• max_distance (float) – Maximum distance (meters).
• cell_size (float) – Cell size (meters).
• source (PointClass) – Class of points to be re-classified.
• progress (Callable[[float], None]) – Progress callback.
classifyPoints([source ][, target ], confidence=0.0[, progress ])
Multiclass classification of points.
Parameters
• source (PointClass) – Class of points to be re-classified.
• target (list of PointClass) – Target point classes for classification.
• confidence (float) – Required confidence level from 0.0 to 1.0.
• progress (Callable[[float], None]) – Progress callback.
clear()
Clears dense cloud data.
compactPoints([progress ])
Permanently removes deleted points from dense cloud.
Parameters progress (Callable[[float], None]) – Progress callback.
copy()
Create a copy of the dense cloud.
Returns Copy of the dense cloud.
Return type DenseCloud
47
Metashape Python Reference, Release 1.6.0
49
Metashape Python Reference, Release 1.6.0
Parameters
• image (Image) – Image object with depth map data.
• level (int) – Level index.
class Metashape.DepthMaps
A set of depth maps generated for a chunk frame.
clear()
Clears depth maps data.
copy()
Create a copy of the depth maps.
Returns Copy of the depth maps.
Return type DepthMaps
items()
List of items.
key
Depth maps identifier.
Type int
keys()
List of item keys.
label
Depth maps label.
Type string
meta
Depth maps meta data.
Type MetaData
modified
Modified flag.
Type bool
values()
List of item values.
class Metashape.Document
Metashape project.
Contains list of chunks available in the project. Implements processing operations that work with multiple
chunks. Supports saving/loading project files.
The project currently opened in Metashape window can be accessed using Metashape.app.document attribute.
Additional Document objects can be created as needed.
The following example saves active chunk from the opened project in a separate project:
addChunk()
Add new chunk to the document.
51
Metashape Python Reference, Release 1.6.0
53
Metashape Python Reference, Release 1.6.0
Type MetaData
min
Minimum elevation value.
Type float
modified
Modified flag.
Type bool
palette
Color palette.
Type dict
projection
Projection of elevation model.
Type OrthoProjection
resolution
DEM resolution in meters.
Type float
right
X coordinate of the right side.
Type float
top
Y coordinate of the top side.
Type float
width
Elevation model width.
Type int
class Metashape.EulerAngles
Euler angles in [EulerAnglesYPR, EulerAnglesOPK, EulerAnglesPOK, EulerAnglesANK]
class Metashape.FaceCount
Face count in [LowFaceCount, MediumFaceCount, HighFaceCount, CustomFaceCount]
class Metashape.FilterMode
Depth filtering mode in [NoFiltering, MildFiltering, ModerateFiltering, AggressiveFiltering]
class Metashape.Image(width, height, channels, datatype=’U8’)
n-channel image
Parameters
• width (int) – image width
• height (int) – image height
• channels (string) – color channel layout, e.g. ‘RGB’, ‘RGBA’, etc.
• datatype (string) – pixel data type in [’U8’, ‘U16’, ‘U32’, ‘F16’, ‘F32’, ‘F64’]
channels
Channel mapping for the image.
55
Metashape Python Reference, Release 1.6.0
Type string
cn
Number of color channels.
Type int
convert(channels[, datatype ])
Convert image to specified data type and channel layout.
Parameters
• channels (string) – color channels to be loaded, e.g. ‘RGB’, ‘RGBA’, etc.
• datatype (string) – pixel data type in [’U8’, ‘U16’, ‘U32’, ‘F16’, ‘F32’, ‘F64’]
Returns Converted image.
Return type Image
copy()
Return a copy of the image.
Returns copy of the image
Return type Image
data_type
Data type used to store pixel values.
Type string
fromstring(data, width, height, channels, datatype=’U8’)
Create image from byte array.
Parameters
• data (string) – raw image data
• width (int) – image width
• height (int) – image height
• channels (string) – color channel layout, e.g. ‘RGB’, ‘RGBA’, etc.
• datatype (string) – pixel data type in [’U8’, ‘U16’, ‘U32’, ‘F16’, ‘F32’, ‘F64’]
Returns Created image.
Return type Image
gaussianBlur(radius)
Smooth image with a gaussian filter.
Parameters radius (float) – smoothing radius.
Returns Smoothed image.
Return type Image
height
Image height.
Type int
open(path, layer=0, datatype=’U8’[, channels ][, x ][, y ][, w ][, h ])
Load image from file.
Parameters
57
Metashape Python Reference, Release 1.6.0
59
Metashape Python Reference, Release 1.6.0
items()
List of items.
keys()
List of item keys.
values()
List of item values.
class Marker.Reference
Marker reference data.
accuracy
Marker location accuracy.
Type Vector
enabled
Enabled flag.
Type bool
location
Marker coordinates.
Type Vector
class Marker.Type
Marker type in [Regular, Vertex, Fiducial]
Marker.chunk
Chunk the marker belongs to.
Type Chunk
Marker.frames
Marker frames.
Type list of Marker
Marker.group
Marker group.
Type MarkerGroup
Marker.key
Marker identifier.
Type int
Marker.label
Marker label.
Type string
Marker.meta
Marker meta data.
Type MetaData
Marker.position
Marker position in the current frame.
Type Vector
Marker.position_covariance
Marker position covariance.
Type Matrix
Marker.projections
List of marker projections.
Type MarkerProjections
Marker.reference
Marker reference data.
Type MarkerReference
Marker.selected
Selects/deselects the marker.
Type bool
Marker.sensor
Fiducial mark sensor.
Type Sensor
Marker.type
Marker type.
Type Marker.Type
class Metashape.MarkerGroup
MarkerGroup objects define groups of multiple markers. The grouping is established by assignment of a Mark-
erGroup instance to the Marker.group attribute of participating markers.
label
Marker group label.
Type string
selected
Current selection state.
Type bool
class Metashape.Mask
Mask instance
copy()
Returns a copy of the mask.
Returns Copy of the mask.
Return type Mask
image()
Returns image data.
Returns Image data.
Return type Image
invert()
Create inverted copy of the mask.
Returns Inverted copy of the mask.
Return type Mask
load(path[, layer ])
Loads mask from file.
61
Metashape Python Reference, Release 1.6.0
Parameters
• path (string) – Path to the image file to be loaded.
• layer (int) – Optional layer index in case of multipage files.
setImage(image)
Parameters image (Image) – Image object with mask data.
class Metashape.MaskOperation
Mask operation in [MaskOperationReplacement, MaskOperationUnion, MaskOperationIntersection, MaskOp-
erationDifference]
class Metashape.MaskSource
Mask source in [MaskSourceAlpha, MaskSourceFile, MaskSourceBackground, MaskSourceModel]
class Metashape.Masks
A set of masks for a chunk frame.
items()
List of items.
keys()
List of item keys.
meta
Thumbnails meta data.
Type MetaData
modified
Modified flag.
Type bool
values()
List of item values.
class Metashape.Matrix
m-by-n matrix
Diag(vector)
Create a diagonal matrix.
Parameters vector (Vector or list of floats) – The vector of diagonal entries.
Returns A diagonal matrix.
Return type Matrix
Rotation(matrix)
Create a rotation matrix.
Parameters matrix (Matrix) – The 3x3 rotation matrix.
63
Metashape Python Reference, Release 1.6.0
rotation()
Returns rotation component of the 4x4 matrix.
Returns rotation component
Return type Matrix
row(index)
Returns row of the matrix.
Returns matrix row.
Return type Vector
scale()
Returns scale component of the 4x4 matrix.
Returns scale component
Return type float
size
Matrix dimensions.
Type tuple
svd()
Returns singular value decomposition of the matrix.
Returns u, s, v tuple where a = u * diag(s) * v
Return type Matrix Vector Matrix tuple
t()
Return a new, transposed matrix.
Returns a transposed matrix
Return type Matrix
translation()
Returns translation component of the 4x4 matrix.
Returns translation component
Return type Vector
zero()
Set all matrix elements to zero.
class Metashape.MetaData(object)
Collection of object properties
copy()
Return a copy of the object.
Returns A copy of the object.
Return type MetaData
items()
List of items.
keys()
List of item keys.
values()
List of item values.
class Metashape.Model
Triangular mesh model instance
class Face
Triangular face of the model
hidden
Face visibility flag.
Type bool
selected
Face selection flag.
Type bool
tex_index
Texture page index.
Type int
tex_vertices
Texture vertex indices.
Type tuple of 3 int
vertices
Vertex indices.
Type tuple of 3 int
class Model.Faces
Collection of model faces
resize(count)
Resize faces list.
Parameters count (int) – new face count
class Model.Statistics
Mesh statistics
components
Number of connected components.
Type int
degenerate_faces
Number of degenerate faces.
Type int
duplicate_faces
Number of duplicate faces.
Type int
faces
Total number of faces.
Type int
flipped_normals
Number of edges with flipped normals.
Type int
free_vertices
Number of free vertices.
Type int
65
Metashape Python Reference, Release 1.6.0
multiple_edges
Number of edges connecting more than 2 faces.
Type int
open_edges
Number of open edges.
Type int
out_of_range_indices
Number of out of range indices.
Type int
similar_vertices
Number of similar vertices.
Type int
vertices
Total number of vertices.
Type int
zero_faces
Number of zero faces.
Type int
class Model.TexVertex
Texture vertex of the model
coord
Vertex coordinates.
Type tuple of 2 float
class Model.TexVertices
Collection of model texture vertices
resize(count)
Resize vertex list.
Parameters count (int) – new vertex count
class Model.Texture
Model texture.
image(page=0)
Return texture image.
Parameters page (int) – Texture index for multitextured models.
Returns Texture image.
Return type Image
label
Animation label.
Type string
meta
Camera track meta data.
Type MetaData
model
Model the texture belongs to.
Type Model
setImage(image, page=0)
Initialize texture from image data.
Parameters
• image (Image) – Texture image.
• page (int) – Texture index for multitextured models.
type
Texture type.
Type Model.TextureType
class Model.TextureType
Texture type in [DiffuseMap, NormalMap, OcclusionMap]
class Model.Vertex
Vertex of the model
color
Vertex color.
Type tuple of 3 int
coord
Vertex coordinates.
Type Vector
class Model.Vertices
Collection of model vertices
resize(count)
Resize vertex list.
Parameters count (int) – new vertex count
Model.addTexture(type=Model.DiffuseMap)
Add new texture to the model.
Parameters type (Model.TextureType) – Texture type.
Returns Created texture.
Return type Model.Texture
Model.area()
Return area of the model surface.
Returns Model area.
Return type float
Model.bands
List of color bands.
Type list of string
Model.clear()
Clears model data.
Model.closeHoles(level = 30)
Fill holes in the model surface.
Parameters level (int) – Hole size threshold in percents.
Model.copy()
Create a copy of the model.
Returns Copy of the model.
Return type Model
67
Metashape Python Reference, Release 1.6.0
Model.cropSelection()
Crop selected faces and free vertices from the mesh.
Model.data_type
Data type used to store color values.
Type DataType
Model.faces
Collection of mesh faces.
Type MeshFaces
Model.fixTopology()
Remove polygons causing topological problems.
Model.getActiveTexture(type=Model.DiffuseMap)
Return active texture.
Parameters type (Model.TextureType) – Texture type.
Returns Texture image.
Return type Image
Model.key
Model identifier.
Type int
Model.label
Model label.
Type string
Model.loadTexture(path)
Load texture from the specified file.
Parameters path (string) – Path to the image file.
Model.meta
Model meta data.
Type MetaData
Model.modified
Modified flag.
Type bool
Model.pickPoint(origin, target, endpoints=1)
Return ray intersection with mesh.
Parameters
• origin (Vector) – Ray origin.
• target (Vector) – Point on the ray.
• endpoints (int) – Number of endpoints to check for (0 - line, 1 - ray, 2 - segment).
Returns Coordinates of the intersection point.
Return type Vector
Model.remove(items)
Remove textures from the model.
69
Metashape Python Reference, Release 1.6.0
abortBatch(batch_id)
Abort batch.
Parameters batch_id (int) – Batch id.
abortNode(node_id)
Abort node.
Parameters node_id (int) – Node id.
batchList(revision=0)
Get list of batches.
Parameters revision (int) – First revision to get.
Returns List of batches.
Return type dict
batchStatus(batch_id, revision=0)
Get batch status.
Parameters
• batch_id (int) – Batch id.
• revision (int) – First revision to get.
Returns Batch status.
Return type dict
connect(host, port=5840)
Connect to the server.
Parameters
• host (string) – Server hostname.
• port (int) – Communication port.
createBatch(path, tasks)
Create new batch.
Parameters
• path (string) – Project path relative to root folder.
• tasks (list of NetworkTask) – Project path relative to root folder.
Returns Batch id.
Return type int
disconnect()
Disconnect from the server.
dumpBatches([batch_ids ])
Dump current state of batches.
Parameters batch_ids (list of int) – First revision to get.
71
Metashape Python Reference, Release 1.6.0
73
Metashape Python Reference, Release 1.6.0
The following example creates a new processing task and submits it to the server:
chunks
List of chunks.
Type list
encode()
Create a dictionary with task parameters.
frames
List of frames.
Type list
name
Task name.
Type string
params
Task parameters.
Type dict
supports_gpu
GPU support flag.
Type bool
class Metashape.OrthoProjection
Orthographic projection.
class Type
Projection type in [Planar, Cylindrical]
OrthoProjection.copy()
Return a copy of the object.
Returns A copy of the object.
Return type OrthoProjection
OrthoProjection.crs
Base coordinate system.
Type CoordinateSystem
OrthoProjection.matrix
Ortho transformation matrix.
Type Matrix
OrthoProjection.radius
Cylindrical projection radius.
Type float
OrthoProjection.transform(point, source, target)
Transform point coordinates between coordinate systems.
Parameters
• point (2 or 3 component Vector) – Point coordinates.
• source (OrthoProjection) – Source coordinate system.
• target (OrthoProjection) – Target coordinate system.
Returns Transformed point coordinates.
Return type Vector
OrthoProjection.type
Projection type.
Type OrthoProjection.Type
class Metashape.Orthomosaic
Orthomosaic data.
The following sample assigns to the first shape in the chunk the image from the first camera for the orthomosaic
patch and updates the mosaic:
class Patch
Orthomosaic patch.
copy()
Returns a copy of the patch.
Returns Copy of the patch.
Return type Orthomosaic.Patch
excluded
Excluded flag.
Type bool
image_keys
Image keys.
Type list of int
class Orthomosaic.Patches
A set of orthomosaic patches.
items()
List of items.
keys()
List of item keys.
75
Metashape Python Reference, Release 1.6.0
values()
List of item values.
Orthomosaic.bands
List of color bands.
Type list of string
Orthomosaic.bottom
Y coordinate of the bottom side.
Type float
Orthomosaic.clear()
Clears orthomosaic data.
Orthomosaic.copy()
Create a copy of the orthomosaic.
Returns Copy of the orthomosaic.
Return type Orthomosaic
Orthomosaic.crs
Coordinate system of orthomosaic.
Type CoordinateSystem
Orthomosaic.data_type
Data type used to store color values.
Type DataType
Orthomosaic.height
Orthomosaic height.
Type int
Orthomosaic.key
Orthomosaic identifier.
Type int
Orthomosaic.label
Orthomosaic label.
Type string
Orthomosaic.left
X coordinate of the left side.
Type float
Orthomosaic.meta
Orthomosaic meta data.
Type MetaData
Orthomosaic.modified
Modified flag.
Type bool
Orthomosaic.patches
Orthomosaic patches.
Type Orthomosaic.Patches
Orthomosaic.projection
Orthomosaic projection.
Type OrthoProjection
Orthomosaic.removeOrthophotos()
Remove orthorectified images from orthomosaic.
Orthomosaic.reset([progress ])
Reset all edits to orthomosaic.
Parameters progress (Callable[[float], None]) – Progress callback.
Orthomosaic.resolution
Orthomosaic resolution in meters.
Type float
Orthomosaic.right
X coordinate of the right side.
Type float
Orthomosaic.top
Y coordinate of the top side.
Type float
Orthomosaic.update([progress ])
Apply edits to orthomosaic.
Parameters progress (Callable[[float], None]) – Progress callback.
Orthomosaic.width
Orthomosaic width.
Type int
class Metashape.Photo
Photo instance
alpha()
Returns alpha channel data.
Returns Alpha channel data.
Return type Image
copy()
Returns a copy of the photo.
Returns Copy of the photo.
Return type Photo
image([channels ][, datatype ])
Returns image data.
Parameters
• datatype (string) – pixel data type in [’U8’, ‘U16’, ‘U32’, ‘F16’, ‘F32’, ‘F64’]
• channels (string) – color channels to be loaded, e.g. ‘RGB’, ‘RGBA’, etc.
Returns Image data.
Return type Image
77
Metashape Python Reference, Release 1.6.0
imageMeta()
Returns image meta data.
Returns Image meta data.
Return type MetaData
layer
Layer index in the image file.
Type int
meta
Frame meta data.
Type MetaData
open(path[, layer ])
Loads specified image file.
Parameters
• path (string) – Path to the image file to be loaded.
• layer (int) – Optional layer index in case of multipage files.
path
Path to the image file.
Type string
thumbnail(width=192, height=192)
Creates new thumbnail with specified dimensions.
Returns Thumbnail data.
Return type Thumbnail
class Metashape.PointClass
Point class in [Created, Unclassified, Ground, LowVegetation, MediumVegetation, HighVegetation, Building,
LowPoint, ModelKeyPoint, Water, Rail, RoadSurface, OverlapPoints, WireGuard, WireConductor, Transmis-
sionTower, WireConnector, BridgeDeck, HighNoise, Car, Manmade]
class Metashape.PointCloud
Sparse point cloud instance
class Cameras
Collection of PointCloud.Projections objects indexed by corresponding cameras
class PointCloud.Filter
Sparse point cloud filter
The following example selects all points of the sparse cloud from the active chunk that have reprojection
error higher than defined threshold:
class Criterion
Point filtering criterion in [ReprojectionError, ReconstructionUncertainty, ImageCount, ProjectionAc-
curacy]
79
Metashape Python Reference, Release 1.6.0
resize(count)
Resize points list.
Parameters count (int) – new point count
class PointCloud.Projection
Projection of the 3D point on the photo
coord
Projection coordinates.
Type tuple of 2 float
size
Point size.
Type float
track_id
Track index.
Type int
class PointCloud.Projections
Collection of PointCloud.Projection for the camera
copy()
Returns a copy of projections buffer.
Returns Copy of projections buffer.
Return type PointCloud.Projections
resize(count)
Resize projections list.
Parameters count (int) – new projections count
class PointCloud.Track
Track in the point cloud
color
Track color.
Type tuple of 3 int
class PointCloud.Tracks
Collection of tracks in the point cloud
copy()
Returns a copy of tracks buffer.
Returns Copy of tracks buffer.
Return type PointCloud.Tracks
resize(count)
Resize track list.
Parameters count (int) – new track count
PointCloud.bands
List of color bands.
Type list of string
PointCloud.copy(keypoints=True)
Returns a copy of the point cloud.
Parameters keypoints (bool) – copy key points data.
Returns Copy of the point cloud.
Return type PointCloud
PointCloud.cropSelectedPoints()
Crop selected points.
PointCloud.cropSelectedTracks()
Crop selected tie points.
PointCloud.data_type
Data type used to store color values.
Type DataType
PointCloud.export(path, format=’obj’[, projection ])
Export point cloud.
Parameters
• path (string) – Path to output file.
• format (string) – Export format in [’obj’, ‘ply’].
• projection (Matrix or CoordinateSystem) – Sets output projection.
PointCloud.meta
Point cloud meta data.
Type MetaData
PointCloud.modified
Modified flag.
Type bool
PointCloud.pickPoint(origin, target, endpoints=1)
Returns ray intersection with the point cloud (point on the ray nearest to some point).
Parameters
• origin (Vector) – Ray origin.
• target (Vector) – Point on the ray.
• endpoints (int) – Number of endpoints to check for (0 - line, 1 - ray, 2 - segment).
Returns Coordinates of the intersection point.
Return type Vector
PointCloud.points
List of points.
Type PointCloud.Points
PointCloud.projections
Point projections for each photo.
Type PointCloud.Projections
PointCloud.removeKeypoints()
Remove keypoints from point cloud.
PointCloud.removeSelectedPoints()
Remove selected points.
PointCloud.removeSelectedTracks()
Remove selected tie points.
81
Metashape Python Reference, Release 1.6.0
83
Metashape Python Reference, Release 1.6.0
false_color
False color channels.
Type list
formula
Raster calculator expression.
Type string
interpolation
Interpolation enable flag.
Type bool
palette
Color palette.
Type dict
range
Palette mapping range.
Type tuple
reset()
Reset raster transform.
class Metashape.RasterTransformType
Raster transformation type in [RasterTransformNone, RasterTransformValue, RasterTransformPalette]
class Metashape.ReferenceFormat
Reference format in [ReferenceFormatNone, ReferenceFormatXML, ReferenceFormatTEL, ReferenceFor-
matCSV, ReferenceFormatMavinci, ReferenceFormatBramor, ReferenceFormatAPM]
class Metashape.ReferenceItems
Reference items in [ReferenceItemsCameras, ReferenceItemsMarkers, ReferenceItemsScalebars]
class Metashape.ReferencePreselectionMode
Reference preselection mode in [ReferencePreselectionSource, ReferencePreselectionEstimated, ReferencePre-
selectionSequential]
class Metashape.Region
Region parameters
center
Region center coordinates.
Type Vector
copy()
Return a copy of the object.
Returns A copy of the object.
Return type Region
rot
Region rotation matrix.
Type Matrix
size
Region size.
Type Vector
85
Metashape Python Reference, Release 1.6.0
class Metashape.RotationOrder
Rotation order in [RotationOrderXYZ, RotationOrderXZY, RotationOrderYXZ, RotationOrderYZX, Rota-
tionOrderZXY, RotationOrderZYX]
class Metashape.Scalebar
Scale bar instance
class Reference
Scale bar reference data
accuracy
Scale bar length accuracy.
Type float
distance
Scale bar length.
Type float
enabled
Enabled flag.
Type bool
Scalebar.chunk
Chunk the scalebar belongs to.
Type Chunk
Scalebar.frames
Scale bar frames.
Type list of Scalebar
Scalebar.group
Scale bar group.
Type ScalebarGroup
Scalebar.key
Scale bar identifier.
Type int
Scalebar.label
Scale bar label.
Type string
Scalebar.meta
Scale bar meta data.
Type MetaData
Scalebar.point0
Start of the scale bar.
Type Marker
Scalebar.point1
End of the scale bar.
Type Marker
Scalebar.reference
Scale bar reference data.
Type ScalebarReference
Scalebar.selected
Selects/deselects the scale bar.
Type bool
class Metashape.ScalebarGroup
ScalebarGroup objects define groups of multiple scale bars. The grouping is established by assignment of a
ScalebarGroup instance to the Scalebar.group attribute of participating scale bars.
label
Scale bar group label.
Type string
selected
Current selection state.
Type bool
class Metashape.Sensor
Sensor instance
class Reference
Sensor reference data.
accuracy
Sensor location accuracy.
Type Vector
enabled
Location enabled flag.
Type bool
location
Sensor coordinates.
Type Vector
location_accuracy
Sensor location accuracy.
Type Vector
location_enabled
Location enabled flag.
Type bool
rotation
Sensor rotation angles.
Type Vector
rotation_accuracy
Sensor rotation accuracy.
Type Vector
rotation_enabled
Rotation enabled flag.
Type bool
class Sensor.Type
Sensor type in [Frame, Fisheye, Spherical, RPC]
87
Metashape Python Reference, Release 1.6.0
Sensor.antenna
GPS antenna correction.
Type Antenna
Sensor.bands
List of color bands.
Type list of string
Sensor.black_level
Black level for each band.
Type list of float
Sensor.calibrateFiducials(resolution=0.014)
Fit fiducial coordinates to image measurements.
Parameters resolution (float) – Scanning resolution in mm/pix.
Sensor.calibration
Adjusted calibration of the photo.
Type Calibration
Sensor.chunk
Chunk the sensor belongs to.
Type Chunk
Sensor.data_type
Data type used to store color values.
Type DataType
Sensor.fiducials
Fiducial marks.
Type list of Marker
Sensor.film_camera
Film camera flag.
Type bool
Sensor.fixed
Fix calibration flag.
Type bool
Sensor.fixed_calibration
Fix calibration flag.
Type bool
Sensor.fixed_location
Fix location flag.
Type bool
Sensor.fixed_params
List of fixed calibration parameters.
Type list of string
Sensor.fixed_rotation
Fix rotation flag.
Type bool
Sensor.focal_length
Focal length in mm.
Type float
Sensor.height
Image height.
Type int
Sensor.key
Sensor identifier.
Type int
Sensor.label
Sensor label.
Type string
Sensor.layer_index
Sensor layer index.
Type int
Sensor.location
Sensor plane location.
Type Vector
Sensor.location_covariance
Sensor plane location covariance.
Type Matrix
Sensor.master
Master sensor.
Type Sensor
Sensor.normalize_sensitivity
Enable sensitivity normalization.
Type bool
Sensor.normalize_to_float
Convert pixel values to floating point after normalization.
Type bool
Sensor.photo_params
List of image-variant calibration parameters.
Type list of string
Sensor.pixel_height
Pixel height in mm.
Type float
Sensor.pixel_size
Pixel size in mm.
Type Vector
89
Metashape Python Reference, Release 1.6.0
Sensor.pixel_width
Pixel width in mm.
Type float
Sensor.planes
Sensor planes.
Type list of Sensor
Sensor.reference
Sensor reference data.
Type SensorReference
Sensor.rolling_shutter
Enable rolling shutter compensation.
Type bool
Sensor.rotation
Sensor plane rotation.
Type Matrix
Sensor.rotation_covariance
Sensor plane rotation covariance.
Type Matrix
Sensor.sensitivity
Sensitivity for each band.
Type list of float
Sensor.type
Sensor projection model.
Type Sensor.Type
Sensor.user_calib
Custom calibration used as initial calibration during photo alignment.
Type Calibration
Sensor.vignetting
Vignetting for each band.
Type list of Vignetting
Sensor.width
Image width.
Type int
class Metashape.Shape
Shape data.
class BoundaryType
Shape boundary type in [NoBoundary, OuterBoundary, InnerBoundary]
class Shape.Type
Shape type in [Point, Polyline, Polygon]
class Shape.Vertices
Collection of shape vertices
Shape.area()
Return area of the shape on DEM.
Returns Shape area.
Return type float
Shape.attributes
Shape attributes.
Type MetaData
Shape.boundary_type
Shape boundary type.
Type Shape.BoundaryType
Shape.group
Shape group.
Type ShapeGroup
Shape.has_z
Z enable flag.
Type bool
Shape.key
Shape identifier.
Type int
Shape.label
Shape label.
Type string
Shape.perimeter2D()
Return perimeter of the shape on DEM.
Returns Shape perimeter.
Return type float
Shape.perimeter3D()
Return perimeter of the shape.
Returns Shape perimeter.
Return type float
Shape.selected
Selects/deselects the shape.
Type bool
Shape.type
Shape type.
Type Shape.Type
Shape.vertex_ids
List of shape vertex ids.
Type ShapeVertices
91
Metashape Python Reference, Release 1.6.0
Shape.vertices
List of shape vertices.
Type ShapeVertices
Shape.volume(level=’bestfit’)
Return volume of the shape measured on DEM above and below best fit, mean level or custom level plane.
Parameters level (float) – Plane level: ‘bestfit’, ‘mean’ or custom value.
Returns Shape volumes.
Return type dict
class Metashape.ShapeGroup
ShapeGroup objects define groups of multiple shapes. The grouping is established by assignment of a Shape-
Group instance to the Shape.group attribute of participating shapes.
color
Shape group color.
Type tuple of 3 int
enabled
Enable flag.
Type bool
key
Shape group identifier.
Type int
label
Shape group label.
Type string
selected
Current selection state.
Type bool
show_labels
Shape labels visibility flag.
Type bool
class Metashape.Shapes
A set of shapes for a chunk frame.
addGroup()
Add new shape group to the set of shapes.
Returns Created shape group.
Return type ShapeGroup
addShape()
Add new shape to the set of shapes.
Returns Created shape.
Return type Shape
crs
Shapes coordinate system.
Type CoordinateSystem
groups
List of shape groups.
Type list of ShapeGroup
items()
List of items.
meta
Shapes meta data.
Type MetaData
modified
Modified flag.
Type bool
projection
Shapes projection.
Type OrthoProjection
remove(items)
Remove items from the shape layer.
Parameters items (list of Shape or ShapeGroup) – A list of items to be removed.
shapes
List of shapes.
Type list of Shape
updateAltitudes(items[, progress ])
Update altitudes for items.
Parameters
• items (list of Shape or ShapeGroup) – A list of items to be updated.
• progress (Callable[[float], None]) – Progress callback.
class Metashape.ShapesFormat
Shapes format in [ShapesFormatNone, ShapesFormatSHP, ShapesFormatKML, ShapesFormatDXF, ShapesFor-
matGeoJSON]
class Metashape.Shutter
Shutter object contains estimated parameters of the rolling shutter correction model.
copy()
Return a copy of the object.
Returns A copy of the object.
Return type Shutter
rotation
Rotation matrix of the rolling shutter model.
Type Matrix
translation
Translation vector of the rolling shutter model.
Type Vector
93
Metashape Python Reference, Release 1.6.0
class Metashape.SurfaceType
Surface type in [Arbitrary, HeightField]
class Metashape.Target
Target parameters
code
Target code.
Type int
coord
Target location.
Type Vector
copy()
Return a copy of the object.
Returns A copy of the object.
Return type Target
radius
Target radius.
Type float
class Metashape.TargetType
Target type in [CircularTarget12bit, CircularTarget14bit, CircularTarget16bit, CircularTarget20bit, CircularTar-
get, CrossTarget]
class Metashape.Tasks
Task classes.
class AddFrames
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
chunk
Chunk to copy frames from.
Type int
copy_dense_cloud
Copy dense cloud.
Type bool
copy_depth_maps
Copy depth maps.
Type bool
copy_elevation
Copy DEM.
Type bool
copy_model
Copy model.
Type bool
copy_orthomosaic
Copy orthomosaic.
Type bool
copy_tiled_model
Copy tiled model.
Type bool
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
frames
List of frame keys to copy.
Type list of int
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.AddPhotos
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
95
Metashape Python Reference, Release 1.6.0
encodeJSON()
Create a JSON string with task parameters.
filegroups
List of file groups.
Type list of int
filenames
List of files to add.
Type list of string
group
Camera group key.
Type int
layout
Image layout.
Type ImageLayout
load_reference
Load reference coordinates.
Type bool
load_rpc_txt
Load satellite RPC data from auxiliary TXT files.
Type bool
load_xmp_accuracy
Load accuracy from XMP meta data.
Type bool
load_xmp_antenna
Load GPS/INS offset from XMP meta data.
Type bool
load_xmp_calibration
Load calibration from XMP meta data.
Type bool
load_xmp_orientation
Load orientation from XMP meta data.
Type bool
name
Task name.
Type string
strip_extensions
Strip file extensions from camera labels.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.AlignCameras
Task class containing processing parameters.
adaptive_fitting
Enable adaptive fitting of distortion coefficients.
Type bool
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
cameras
List of cameras to align.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
min_image
Minimum number of point projections.
Type int
name
Task name.
Type string
reset_alignment
Reset current alignment.
Type bool
subdivide_task
Enable fine-level task subdivision.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.AlignChunks
Task class containing processing parameters.
97
Metashape Python Reference, Release 1.6.0
Type int
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.AnalyzePhotos
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
cameras
List of cameras to be analyzed.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
filter_mask
Constrain analyzed image region by mask.
Type bool
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.BuildContours
Task class containing processing parameters.
99
Metashape Python Reference, Release 1.6.0
101
Metashape Python Reference, Release 1.6.0
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
workitem_size_tiles
Number of tiles in a workitem.
Type int
class Tasks.BuildDenseCloud
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
keep_depth
Enable store depth maps option.
Type bool
max_neighbors
Maximum number of neighbor images to use for depth map filtering.
Type int
max_workgroup_size
Maximum workgroup size.
Type int
name
Task name.
Type string
point_colors
Enable point colors calculation.
Type bool
point_confidence
Enable point confidence calculation.
Type bool
subdivide_task
Enable fine-level task subdivision.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
workitem_size_cameras
Number of cameras in a workitem.
Type int
class Tasks.BuildDepthMaps
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
cameras
List of cameras to process.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
downscale
Depth map quality.
Type int
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
filter_mode
Depth map filtering mode.
Type FilterMode
max_neighbors
Maximum number of neighbor images to use for depth map generation.
Type int
max_workgroup_size
Maximum workgroup size.
103
Metashape Python Reference, Release 1.6.0
Type int
name
Task name.
Type string
reuse_depth
Enable reuse depth maps option.
Type bool
subdivide_task
Enable fine-level task subdivision.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
workitem_size_cameras
Number of cameras in a workitem.
Type int
class Tasks.BuildModel
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
cameras
List of cameras to process.
Type list of int
classes
List of dense point classes to be used for surface extraction.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
face_count
Target face count.
Type FaceCount
face_count_custom
Custom face count.
Type int
interpolation
Interpolation mode.
Type Interpolation
keep_depth
Enable store depth maps option.
Type bool
max_workgroup_size
Maximum workgroup size.
Type int
name
Task name.
Type string
source_data
Selects between dense point cloud, sparse point cloud and depth maps.
Type DataSource
supports_gpu
GPU support flag.
Type bool
surface_type
Type of object to be reconstructed.
Type SurfaceType
target
Task target.
Type Tasks.TargetType
trimming_radius
Trimming radius (no trimming if zero).
Type int
vertex_colors
Enable vertex colors calculation.
Type bool
vertex_confidence
Enable vertex confidence calculation.
Type bool
volumetric_masks
Enable strict volumetric masking.
Type bool
workitem_count
Work item count.
Type int
workitem_size_cameras
Number of cameras in a workitem.
Type int
105
Metashape Python Reference, Release 1.6.0
class Tasks.BuildOrthomosaic
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
blending_mode
Orthophoto blending mode.
Type BlendingMode
cull_faces
Enable back-face culling.
Type bool
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
fill_holes
Enable hole filling.
Type bool
flip_x
Flip X axis direction.
Type bool
flip_y
Flip Y axis direction.
Type bool
flip_z
Flip Z axis direction.
Type bool
max_workgroup_size
Maximum workgroup size.
Type int
name
Task name.
Type string
projection
Output projection.
Type OrthoProjection
refine_seamlines
Refine seamlines based on image content.
Type bool
region
Region to be processed.
Type BBox
resolution
Pixel size in meters.
Type float
resolution_x
Pixel size in the X dimension in projected units.
Type float
resolution_y
Pixel size in the Y dimension in projected units.
Type float
subdivide_task
Enable fine-level task subdivision.
Type bool
supports_gpu
GPU support flag.
Type bool
surface_data
Orthorectification surface.
Type DataSource
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
workitem_size_cameras
Number of cameras in a workitem.
Type int
workitem_size_tiles
Number of tiles in a workitem.
Type int
class Tasks.BuildSeamlines
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
107
Metashape Python Reference, Release 1.6.0
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
epsilon
Contour simplificaion threshold.
Type float
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.BuildTexture
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
blending_mode
Texture blending mode.
Type BlendingMode
cameras
A list of cameras to be used for texturing.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
fill_holes
Enable hole filling.
Type bool
ghosting_filter
Enable ghosting filter.
Type bool
name
Task name.
Type string
source_model
Source model.
Type int
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
texture_size
Texture page size.
Type int
texture_type
Texture type.
Type Model.TextureType
workitem_count
Work item count.
Type int
class Tasks.BuildTiledModel
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
classes
List of dense point classes to be used for surface extraction.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
face_count
Number of faces per megapixel of texture resolution.
Type int
ghosting_filter
Enable ghosting filter.
109
Metashape Python Reference, Release 1.6.0
Type bool
keep_depth
Enable store depth maps option.
Type bool
max_workgroup_size
Maximum workgroup size.
Type int
name
Task name.
Type string
pixel_size
Target model resolution in meters.
Type float
source_data
Selects between dense point cloud and mesh.
Type DataSource
subdivide_task
Enable fine-level task subdivision.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
tile_size
Size of tiles in pixels.
Type int
transfer_texture
Transfer source model texture to tiled model.
Type bool
workitem_count
Work item count.
Type int
workitem_size_cameras
Number of cameras in a workitem.
Type int
class Tasks.BuildUV
Task class containing processing parameters.
adaptive_resolution
Enable adaptive face detalization.
Type bool
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
111
Metashape Python Reference, Release 1.6.0
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
source_data
Source data for calibration.
Type DataSource
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
white_balance
Calibrate white balance.
Type bool
workitem_count
Work item count.
Type int
class Tasks.CalibrateLens
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
border
Border size to ignore.
Type int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
fit_b1
Enable optimization of aspect ratio.
Type bool
fit_b2
Enable optimization of skew coefficient.
Type bool
fit_cxcy
Enable optimization of principal point coordinates.
Type bool
fit_f
Enable optimization of focal length coefficient.
Type bool
fit_k1
Enable optimization of k1 radial distortion coefficient.
Type bool
fit_k2
Enable optimization of k2 radial distortion coefficient.
Type bool
fit_k3
Enable optimization of k3 radial distortion coefficient.
Type bool
fit_k4
Enable optimization of k4 radial distortion coefficient.
Type bool
fit_p1
Enable optimization of p1 tangential distortion coefficient.
Type bool
fit_p2
Enable optimization of p2 tangential distortion coefficient.
Type bool
fit_p3
Enable optimization of p3 tangential distortion coefficient.
Type bool
fit_p4
Enable optimization of p4 tangential distortion coefficient.
Type bool
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.CalibrateReflectance
Task class containing processing parameters.
113
Metashape Python Reference, Release 1.6.0
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
max_angle
Maximum angle (degrees).
Type float
max_distance
Maximum distance (meters).
Type float
name
Task name.
Type string
source_class
Class of points to be re-classified.
Type int
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ClassifyPoints
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
confidence
Required confidence level.
Type float
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
115
Metashape Python Reference, Release 1.6.0
name
Task name.
Type string
source_class
Class of points to be re-classified.
Type int
subdivide_task
Enable fine-level task subdivision.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
target_classes
Target point classes for classification.
Type list of int
workitem_count
Work item count.
Type int
class Tasks.CloseHoles
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
level
Hole size threshold in percents.
Type int
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ColorizeDenseCloud
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
source_data
Source data to extract colors from.
Type DataSource
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ColorizeModel
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
117
Metashape Python Reference, Release 1.6.0
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
source_data
Source data to extract colors from.
Type DataSource
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.CompactDenseCloud
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ConvertImages
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
cameras
List of cameras to process.
Type list of int
color_correction
Apply color correction.
Type bool
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
fix_pixel_aspect
Fix pixel aspect.
Type bool
fix_principal_point
Fix principal point.
Type bool
image_compression
Image compression parameters.
Type ImageCompression
name
Task name.
Type string
path
Path to output file.
Type string
remove_distortions
Remove distortions.
Type bool
119
Metashape Python Reference, Release 1.6.0
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
update_gps_tags
Update GPS tags.
Type bool
workitem_count
Work item count.
Type int
class Tasks.DecimateModel
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
asset
Model to process.
Type int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
face_count
Target face count.
Type int
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.DetectFiducials
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.DetectMarkers
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
cameras
List of cameras to process.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
121
Metashape Python Reference, Release 1.6.0
encodeJSON()
Create a JSON string with task parameters.
filter_mask
Ignore masked image regions.
Type bool
frames
List of frames to process.
Type list of int
inverted
Detect markers on black background.
Type bool
maximum_residual
Maximum residual for non-coded targets in pixels.
Type float
minimum_dist
Minimum distance between targets in pixels (CrossTarget type only).
Type int
minimum_size
Minimum target radius in pixels to be detected (CrossTarget type only).
Type int
name
Task name.
Type string
noparity
Disable parity checking.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
target_type
Type of targets.
Type TargetType
tolerance
Detector tolerance (0 - 100).
Type int
workitem_count
Work item count.
Type int
class Tasks.DuplicateChunk
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
123
Metashape Python Reference, Release 1.6.0
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ExportCameras
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
binary
Enables/disables binary encoding for selected format (if applicable).
Type bool
bingo_path_geoin
Path to BINGO GEO INPUT file.
Type string
bingo_path_gps
Path to BINGO GPS/IMU file.
Type string
bingo_path_image
Path to BINGO IMAGE COORDINATE file.
Type string
bingo_path_itera
Path to BINGO ITERA file.
Type string
bingo_save_geoin
Enables/disables export of BINGO GEO INPUT file.
Type bool
bingo_save_gps
Enables/disables export of BINGO GPS/IMU data.
Type bool
bingo_save_image
Enables/disables export of BINGO IMAGE COORDINATE file.
Type bool
bingo_save_itera
Enables/disables export of BINGO ITERA file.
Type bool
bundler_path_list
Path to Bundler image list file.
Type string
bundler_save_list
Enables/disables export of Bundler image list file.
Type bool
chan_rotation_order
Rotation order (CHAN format only).
Type RotationOrder
crs
Output coordinate system.
Type CoordinateSystem
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
format
Export format.
Type CamerasFormat
name
Task name.
Type string
path
Path to output file.
Type string
save_markers
Enables/disables export of manual matching points.
Type bool
save_points
Enables/disables export of automatic tie points.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
use_labels
Enables/disables label based item identifiers.
Type bool
workitem_count
Work item count.
Type int
class Tasks.ExportDepth
Task class containing processing parameters.
125
Metashape Python Reference, Release 1.6.0
Type int
class Tasks.ExportMarkers
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
binary
Enables/disables binary encoding for selected format (if applicable).
Type bool
crs
Output coordinate system.
Type CoordinateSystem
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
path
Path to output file.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ExportMasks
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
127
Metashape Python Reference, Release 1.6.0
cameras
List of cameras to process.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
path
Path to output file.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ExportModel
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
binary
Enables/disables binary encoding (if supported by format).
Type bool
colors_rgb_8bit
Convert colors to 8 bit RGB.
Type bool
comment
Optional comment (if supported by selected format).
Type string
crs
Output coordinate system.
Type CoordinateSystem
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
format
Export format.
Type ModelFormat
name
Task name.
Type string
path
Path to output model.
Type string
precision
Number of digits after the decimal point (for text formats).
Type int
raster_transform
Raster band transformation.
Type RasterTransformType
save_alpha
Enables/disables alpha channel export.
Type bool
save_cameras
Enables/disables camera export.
Type bool
save_colors
Enables/disables export of vertex colors.
Type bool
save_comment
Enables/disables comment export.
Type bool
save_markers
Enables/disables marker export.
Type bool
save_normals
Enables/disables export of vertex normals.
Type bool
save_texture
Enables/disables texture export.
Type bool
save_udim
Enables/disables UDIM texture layout.
129
Metashape Python Reference, Release 1.6.0
Type bool
save_uv
Enables/disables uv coordinates export.
Type bool
shift
Optional shift to be applied to vertex coordinates.
Type Vector
strip_extensions
Strips camera label extensions during export.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
texture_format
Texture format.
Type ImageFormat
viewpoint
Default view.
Type Viewpoint
workitem_count
Work item count.
Type int
class Tasks.ExportOrthophotos
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
cameras
List of cameras to process.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
image_compression
Image compression parameters.
Type ImageCompression
name
Task name.
Type string
north_up
Use north-up orientation for export.
Type bool
path
Path to output orthophoto.
Type string
projection
Output projection.
Type OrthoProjection
raster_transform
Raster band transformation.
Type RasterTransformType
region
Region to be exported.
Type BBox
resolution
Output resolution in meters.
Type float
resolution_x
Pixel size in the X dimension in projected units.
Type float
resolution_y
Pixel size in the Y dimension in projected units.
Type float
save_alpha
Enable alpha channel generation.
Type bool
save_kml
Enable kml file generation.
Type bool
save_world
Enable world file generation.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
white_background
Enable white background.
Type bool
131
Metashape Python Reference, Release 1.6.0
workitem_count
Work item count.
Type int
class Tasks.ExportPanorama
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
camera_groups
List of camera groups to process.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
height
Height of output panorama.
Type int
image_compression
Image compression parameters.
Type ImageCompression
name
Task name.
Type string
path
Path to output file.
Type string
region
Region to be exported.
Type BBox
rotation
Panorama 3x3 orientation matrix.
Type Matrix
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
width
Width of output panorama.
Type int
workitem_count
Work item count.
Type int
class Tasks.ExportPoints
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
binary
Enables/disables binary encoding for selected format (if applicable).
Type bool
block_height
Block height in meters.
Type float
block_width
Block width in meters.
Type float
classes
List of dense point classes to be exported.
Type list of int
colors_rgb_8bit
Convert colors to 8 bit RGB.
Type bool
comment
Optional comment (if supported by selected format).
Type string
crs
Output coordinate system.
Type CoordinateSystem
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
format
Export format.
Type PointsFormat
133
Metashape Python Reference, Release 1.6.0
image_format
Image data format.
Type ImageFormat
name
Task name.
Type string
path
Path to output file.
Type string
raster_transform
Raster band transformation.
Type RasterTransformType
region
Region to be exported.
Type BBox
save_classes
Enables/disables export of point classes.
Type bool
save_colors
Enables/disables export of point colors.
Type bool
save_comment
Enable comment export.
Type bool
save_confidence
Enables/disables export of point confidence.
Type bool
save_images
Enable image export.
Type bool
save_normals
Enables/disables export of point normals.
Type bool
shift
Optional shift to be applied to point coordinates.
Type Vector
source_data
Selects between dense point cloud and sparse point cloud. If not specified, uses dense cloud if avail-
able.
Type DataSource
split_in_blocks
Enable tiled export.
Type bool
subdivide_task
Enable fine-level task subdivision.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
viewpoint
Default view.
Type Viewpoint
workitem_count
Work item count.
Type int
class Tasks.ExportRaster
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
block_height
Raster block height in pixels.
Type int
block_width
Raster block width in pixels.
Type int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
description
Export description.
Type string
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
format
Export format.
Type RasterFormat
height
Raster height.
Type int
image_compression
Image compression parameters.
Type ImageCompression
135
Metashape Python Reference, Release 1.6.0
image_description
Optional description to be added to image files.
Type string
image_format
Tile format.
Type ImageFormat
max_zoom_level
Maximum zoom level (Google Map Tiles, MBTiles and World Wind Tiles formats only).
Type int
min_zoom_level
Minimum zoom level (Google Map Tiles, MBTiles and World Wind Tiles formats only).
Type int
name
Task name.
Type string
network_links
Enable network links generation for KMZ format.
Type bool
nodata_value
No-data value (DEM export only).
Type float
north_up
Use north-up orientation for export.
Type bool
path
Path to output orthomosaic.
Type string
projection
Output projection.
Type OrthoProjection
raster_transform
Raster band transformation.
Type RasterTransformType
region
Region to be exported.
Type BBox
resolution
Output resolution in meters.
Type float
resolution_x
Pixel size in the X dimension in projected units.
Type float
resolution_y
Pixel size in the Y dimension in projected units.
Type float
save_alpha
Enable alpha channel generation.
Type bool
save_kml
Enable kml file generation.
Type bool
save_scheme
Enable tile scheme files generation.
Type bool
save_world
Enable world file generation.
Type bool
source_data
Selects between DEM and orthomosaic.
Type DataSource
split_in_blocks
Split raster in blocks.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
tile_height
Tile height in pixels.
Type int
tile_width
Tile width in pixels.
Type int
title
Export title.
Type string
white_background
Enable white background.
Type bool
width
Raster width.
Type int
workitem_count
Work item count.
Type int
world_transform
2x3 raster-to-world transformation matrix.
Type Matrix
137
Metashape Python Reference, Release 1.6.0
class Tasks.ExportReference
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
columns
Column order in csv format (n - label, o - enabled flag, x/y/z - coordinates, X/Y/Z - coordinate
accuracy, a/b/c - rotation angles, A/B/C - rotation angle accuracy, u/v/w - estimated coordinates,
U/V/W - coordinate errors, d/e/f - estimated orientation angles, D/E/F - orientation errors, p/q/r -
estimated coordinates variance, i/j/k - estimated orientation angles variance, [] - group of multiple
values, | - column separator within group).
Type string
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
delimiter
Column delimiter in csv format.
Type string
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
format
Export format.
Type ReferenceFormat
items
Items to export in CSV format.
Type ReferenceItems
name
Task name.
Type string
path
Path to the output file.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ExportReport
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
description
Report description.
Type string
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
page_numbers
Enable page numbers.
Type bool
path
Path to output report.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
title
Report title.
Type string
user_settings
A list of user defined settings to include on the Processing Parameters page.
Type list of (string, string) tuples
workitem_count
Work item count.
Type int
class Tasks.ExportShapes
Task class containing processing parameters.
139
Metashape Python Reference, Release 1.6.0
Type bool
shift
Optional shift to be applied to vertex coordinates.
Type Vector
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ExportTexture
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
path
Path to output file.
Type string
save_alpha
Enable alpha channel export.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
texture_type
Texture type.
141
Metashape Python Reference, Release 1.6.0
Type Model.TextureType
workitem_count
Work item count.
Type int
class Tasks.ExportTiledModel
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
crs
Output coordinate system.
Type CoordinateSystem
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
format
Export format.
Type TiledModelFormat
image_compression
Image compression parameters.
Type ImageCompression
model_format
Model format for zip export.
Type ModelFormat
name
Task name.
Type string
path
Path to output model.
Type string
raster_transform
Raster band transformation.
Type RasterTransformType
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
texture_format
Texture format.
Type ImageFormat
workitem_count
Work item count.
Type int
class Tasks.FilterDenseCloud
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
asset
Dense cloud key to filter.
Type int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
point_spacing
Desired point spacing (m).
Type float
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ImportCameras
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
143
Metashape Python Reference, Release 1.6.0
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
path
Path to the file.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ImportMasks
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
cameras
Optional list of cameras to be processed.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
operation
Mask operation.
Type MaskOperation
145
Metashape Python Reference, Release 1.6.0
path
Mask file name template.
Type string
source
Mask source.
Type MaskSource
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
tolerance
Background masking tolerance.
Type int
workitem_count
Work item count.
Type int
class Tasks.ImportModel
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
crs
Model coordinate system.
Type CoordinateSystem
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
format
Model format.
Type ModelFormat
name
Task name.
Type string
path
Path to model.
Type string
shift
Optional shift to be applied to vertex coordinates.
Type Vector
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ImportPoints
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
calculate_normals
Calculate point normals.
Type bool
crs
Point cloud coordinate system.
Type CoordinateSystem
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
format
Point cloud format.
Type PointsFormat
name
Task name.
Type string
path
Path to point cloud.
Type string
shift
Optional shift to be applied to point coordinates.
Type Vector
147
Metashape Python Reference, Release 1.6.0
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ImportRaster
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
crs
Default coordinate system if not specified in GeoTIFF file.
Type CoordinateSystem
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
path
Path to elevation model in GeoTIFF format.
Type string
raster_type
Type of raster layer to import.
Type DataSource
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ImportReference
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
columns
Column order in csv format (n - label, o - enabled flag, x/y/z - coordinates, X/Y/Z - coordinate
accuracy, a/b/c - rotation angles, A/B/C - rotation angle accuracy, [] - group of multiple values, | -
column separator within group).
Type string
create_markers
Create markers for missing entries (csv format only).
Type bool
crs
Reference data coordinate system (csv format only).
Type CoordinateSystem
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
delimiter
Column delimiter in csv format.
Type string
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
format
File format.
Type ReferenceFormat
group_delimiters
Combine consequitive delimiters in csv format.
Type bool
ignore_labels
Matches reference data based on coordinates alone (csv format only).
Type bool
items
List of items to load reference for (csv format only).
Type ReferenceItems
name
Task name.
Type string
149
Metashape Python Reference, Release 1.6.0
path
Path to the file with reference data.
Type string
shutter_lag
Shutter lag in seconds (APM format only).
Type float
skip_rows
Number of rows to skip in (csv format only).
Type int
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
threshold
Error threshold in meters used when ignore_labels is set (csv format only).
Type float
workitem_count
Work item count.
Type int
class Tasks.ImportShapes
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
boundary_type
Boundary type to be applied to imported shapes.
Type Shape.BoundaryType
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
format
Shapes format.
Type ShapesFormat
name
Task name.
Type string
path
Path to shape file.
Type string
replace
Replace current shapes with new data.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ImportTiledModel
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
path
Path to tiled model.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
151
Metashape Python Reference, Release 1.6.0
class Tasks.InvertMasks
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
cameras
List of cameras to process.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.LoadProject
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
path
Path to project file.
Type string
read_only
Open project in read only mode.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.MatchPhotos
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
cameras
List of cameras to match.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
downscale
Image alignment accuracy.
Type int
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
filter_mask
Filter points by mask.
Type bool
153
Metashape Python Reference, Release 1.6.0
generic_preselection
Enable generic preselection.
Type bool
guided_matching
Enable guided image matching.
Type bool
keep_keypoints
Store keypoints in the project.
Type bool
keypoint_limit
Key point limit.
Type int
mask_tiepoints
Apply mask filter to tie points.
Type bool
max_workgroup_size
Maximum workgroup size.
Type int
name
Task name.
Type string
pairs
User defined list of camera pairs to match.
Type list of (int, int) tuples
reference_preselection
Enable reference preselection.
Type bool
reference_preselection_mode
Reference preselection mode.
Type ReferencePreselectionMode
reset_matches
Reset current matches.
Type bool
subdivide_task
Enable fine-level task subdivision.
Type bool
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
tiepoint_limit
Tie point limit.
Type int
workitem_count
Work item count.
Type int
workitem_size_cameras
Number of cameras in a workitem.
Type int
workitem_size_pairs
Number of image pairs in a workitem.
Type int
class Tasks.MergeAssets
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
assets
List of assets to process.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
source_data
Asset type.
Type DataSource
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.MergeChunks
Task class containing processing parameters.
155
Metashape Python Reference, Release 1.6.0
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.OptimizeCameras
Task class containing processing parameters.
adaptive_fitting
Enable adaptive fitting of distortion coefficients.
Type bool
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
fit_b1
Enable optimization of aspect ratio.
Type bool
fit_b2
Enable optimization of skew coefficient.
Type bool
fit_corrections
Enable optimization of additional corrections.
Type bool
fit_cx
Enable optimization of X principal point coordinates.
Type bool
fit_cy
Enable optimization of Y principal point coordinates.
Type bool
fit_f
Enable optimization of focal length coefficient.
Type bool
fit_k1
Enable optimization of k1 radial distortion coefficient.
Type bool
fit_k2
Enable optimization of k2 radial distortion coefficient.
157
Metashape Python Reference, Release 1.6.0
Type bool
fit_k3
Enable optimization of k3 radial distortion coefficient.
Type bool
fit_k4
Enable optimization of k3 radial distortion coefficient.
Type bool
fit_p1
Enable optimization of p1 tangential distortion coefficient.
Type bool
fit_p2
Enable optimization of p2 tangential distortion coefficient.
Type bool
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
tiepoint_covariance
Estimate tie point covariance matrices.
Type bool
workitem_count
Work item count.
Type int
class Tasks.PlanMission
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
capture_distance
Image capture distance (m).
Type float
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
max_waypoints
Maximum waypoints per flight.
Type int
min_altitude
Minimum altitude (m).
Type float
min_waypoint_spacing
Minimum waypoint spacing (m).
Type float
name
Task name.
Type string
overlap
Overlap percent.
Type int
safety_distance
Safety distance (m).
Type float
sensor
Sensor key.
Type int
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
use_selection
Focus on model selection.
Type bool
workitem_count
Work item count.
Type int
class Tasks.ReduceOverlap
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
capture_distance
Image capture distance (m).
Type float
159
Metashape Python Reference, Release 1.6.0
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
max_cameras
Maximum cameras to use.
Type int
name
Task name.
Type string
overlap
Overlap level.
Type int
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
use_selection
Focus on model selection.
Type bool
workitem_count
Work item count.
Type int
class Tasks.RefineMesh
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
cameras
List of cameras to process.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
downscale
Refinement quality.
Type int
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
iterations
Number of refinement iterations.
Type int
name
Task name.
Type string
smoothness
Smoothing strength. Should be in range [0, 1].
Type float
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.RemoveLighting
Task class containing processing parameters.
ambient_occlusion_multiplier
Ambient occlusion multiplier. Should be in range [0.25, 4].
Type float
ambient_occlusion_path
Path to ambient occlusion texture atlas. Can be empty.
Type string
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
color_mode
Enable multi-color processing mode.
Type bool
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
161
Metashape Python Reference, Release 1.6.0
encodeJSON()
Create a JSON string with task parameters.
internal_blur
Internal blur. Should be in range [0, 4].
Type float
mesh_noise_suppression
Mesh normals noise suppression strength. Should be in range [0, 4].
Type float
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.ResetMasks
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
cameras
List of cameras to process.
Type list of int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.RunScript
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
args
Script arguments.
Type string
code
Script code.
Type string
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
path
Script path.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.SaveProject
Task class containing processing parameters.
163
Metashape Python Reference, Release 1.6.0
absolute_paths
Store absolute image paths.
Type bool
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
chunks
List of chunks to be saved.
Type list of int
compression
Project compression level.
Type int
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
name
Task name.
Type string
path
Path to project.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
version
Project version to save.
Type string
workitem_count
Work item count.
Type int
class Tasks.SmoothModel
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
165
Metashape Python Reference, Release 1.6.0
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
first_frame
Starting frame index.
Type int
last_frame
Ending frame index.
Type int
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
class Tasks.TriangulatePoints
Task class containing processing parameters.
apply(object[, workitem ][, progress ])
Apply task to specified object.
Parameters
• object (Chunk or Document) – Chunk or Document object to be processed.
• workitem (int) – Workitem index.
• progress (Callable[[float], None]) – Progress callback.
decode(dict)
Initialize task parameters with a dictionary.
decodeJSON(json)
Initialize task parameters from a JSON string.
encode()
Create a dictionary with task parameters.
encodeJSON()
Create a JSON string with task parameters.
max_error
Reprojection error threshold.
Type float
min_image
Minimum number of point projections.
Type int
name
Task name.
Type string
supports_gpu
GPU support flag.
Type bool
target
Task target.
Type Tasks.TargetType
workitem_count
Work item count.
Type int
Tasks.createTask(name)
Create task object by its name.
Parameters name (string) – Task name.
Returns Task object.
Return type object
class Metashape.Thumbnail
Thumbnail instance
copy()
Returns a copy of thumbnail.
Returns Copy of thumbnail.
Return type Thumbnail
image()
Returns image data.
Returns Image data.
Return type Image
load(path[, layer ])
Loads thumbnail from file.
Parameters
• path (string) – Path to the image file to be loaded.
• layer (int) – Optional layer index in case of multipage files.
setImage(image)
Parameters image (Image) – Image object with thumbnail data.
class Metashape.Thumbnails
A set of thumbnails generated for a chunk frame.
items()
List of items.
keys()
List of item keys.
meta
Thumbnails meta data.
Type MetaData
167
Metashape Python Reference, Release 1.6.0
modified
Modified flag.
Type bool
values()
List of item values.
class Metashape.TiledModel
Tiled model data.
class FaceCount
Tiled model face count in [LowFaceCount, MediumFaceCount, HighFaceCount]
TiledModel.bands
List of color bands.
Type list of string
TiledModel.clear()
Clears tiled model data.
TiledModel.copy()
Create a copy of the tiled model.
Returns Copy of the tiled model.
Return type TiledModel
TiledModel.crs
Reference coordinate system.
Type CoordinateSystem or None
TiledModel.data_type
Data type used to store color values.
Type DataType
TiledModel.key
Tiled model identifier.
Type int
TiledModel.label
Tiled model label.
Type string
TiledModel.meta
Tiled model meta data.
Type MetaData
TiledModel.modified
Modified flag.
Type bool
TiledModel.pickPoint(origin, target, endpoints=1)
Returns ray intersection with the tiled model.
Parameters
• origin (Vector) – Ray origin.
• target (Vector) – Point on the ray.
169
Metashape Python Reference, Release 1.6.0
171
Metashape Python Reference, Release 1.6.0
copy()
Return a copy of the vector.
Returns A copy of the vector.
Return type Vector
cross(a, b)
Cross product of 2 vectors.
Parameters
• a (Vector) – First vector.
• b (Vector) – Second vector.
Returns Cross product.
Return type Vector
norm()
Return norm of the vector.
norm2()
Return squared norm of the vector.
normalize()
Normalize vector to the unit length.
normalized()
Return a new, normalized vector.
Returns a normalized copy of the vector
Return type Vector
size
Vector dimensions.
Type int
w
Vector W component.
Type float
x
Vector X component.
Type float
y
Vector Y component.
Type float
z
Vector Z component.
Type float
zero()
Set all elements to zero.
class Metashape.Version
Version object contains application version numbers.
build
Build number.
Type int
copy()
Return a copy of the object.
Returns A copy of the object.
Return type Version
major
Major version number.
Type int
micro
Micro version number.
Type int
173
Metashape Python Reference, Release 1.6.0
minor
Minor version number.
Type int
class Metashape.Viewpoint(app)
Represents viewpoint in the model view
center
Camera center.
Type Vector
coo
Center of orbit.
Type Vector
copy()
Return a copy of the object.
Returns A copy of the object.
Return type Viewpoint
fov
Camera vertical field of view in degrees.
Type float
height
OpenGL window height.
Type int
mag
Camera magnification defined by distance to the center of rotation.
Type float
rot
Camera rotation matrix.
Type Matrix
width
OpenGL window width.
Type int
class Metashape.Vignetting
Vignetting polynomial
copy()
Return a copy of the object.
Returns A copy of the object.
Return type Vignetting
THREE
175
Metashape Python Reference, Release 1.6.0
m
Metashape, 5
199