easyidp.reconstruct.Recons#

class easyidp.reconstruct.Recons#

The base class for reconstruction project. Used for each individual Pix4D project and each chunk in Metashape project

Note

Coordinate systems used in the 3D reconstruction.

  • internal coordinate (local):

    the coordinate used in current chunk, often the center of model as initial point

  • geocentric coordinate (world):

    use the earth’s core as initial point, also called world coordinate

  • geographic coordinate (crs):

    coordinate reference system (CRS) to locate geographical entities. Common used:

    • WGS84 (EPSG: 4326): xyz = longitude, latitude, altitude

    • WGS84/ UTM Zone xxx: e.g. UTM Zone 54N -> Tokyo area.

__init__()#

Methods

Attributes

crs

the geographic coordinates (often the same as the export DOM and DSM), <class 'pyproj.crs.crs.CRS'>

dom

The output digitial orthomosaic map (DOM), easyidp.GeoTiff

dsm

The output digitial surface map (DSM), easyidp.GeoTiff

pcd

The output point cloud, easyidp.PointCloud

label

the 3D reconstruction project name, <class 'str'>

meta

meta information in this project, <class 'dict'>

enabled

whether this project is activated, (often for Metashape), <class 'bool'>

sensors

the container for all sensors in this project (camera model), <class 'easyidp.Container'>, a dict-like object consisted by Sensor

photos

the container for all photos used in this project (images), <class 'easyidp.Container'>, a dict-like object consisted by Photo

property crs#

the geographic coordinates (often the same as the export DOM and DSM), <class 'pyproj.crs.crs.CRS'>

property dom#

The output digitial orthomosaic map (DOM), easyidp.GeoTiff

property dsm#

The output digitial surface map (DSM), easyidp.GeoTiff

enabled#

whether this project is activated, (often for Metashape), <class 'bool'>

label#

the 3D reconstruction project name, <class 'str'>

meta#

meta information in this project, <class 'dict'>

property pcd#

The output point cloud, easyidp.PointCloud

photos#

the container for all photos used in this project (images), <class 'easyidp.Container'>, a dict-like object consisted by Photo

sensors#

the container for all sensors in this project (camera model), <class 'easyidp.Container'>, a dict-like object consisted by Sensor