Agisoft Metashape Professional 2 ❲Top 20 TRUSTED❳

At its core, Agisoft Metashape Professional 2 is a standalone software product that performs photogrammetric processing of digital images and 4D reconstruction. It takes thousands of overlapping 2D photos—captured by drones, terrestrial cameras, or even smartphones—and generates high-resolution 3D spatial data, including dense point clouds, textured polygonal meshes, digital elevation models (DEMs), georeferenced orthomosaics, and 3D models ready for export to CAD, GIS, or game engines.

Version 2 is not merely a patch or a service update; it represents a fundamental overhaul of the processing pipeline, leveraging modern GPU architectures and introducing AI-assisted workflows.

| Task | v1.8.5 (RTX 3080) | v2.0.1 (same hardware) | Improvement | |------|------------------|------------------------|--------------| | Align photos (500 images, 20MP) | 8m 22s | 5m 10s | ~38% faster | | Build dense cloud (High) | 24m 15s | 14m 05s | ~42% faster | | Build mesh (Arbitrary) | 12m 30s | 7m 20s | ~41% faster |

The most profound technical divergence in Metashape 2.0 is the native integration of machine learning models directly into the photogrammetric pipeline. Traditionally, dense point cloud classification was a rudimentary process based on geometric attributes (e.g., height from ground), often resulting in noise and misclassification in complex urban environments. agisoft metashape professional 2

Metashape 2.0 introduces a Convolutional Neural Network (CNN)-based classification engine. This system does not merely analyze geometric coordinates; it interprets the visual context of the imagery during the classification phase. By training on vast datasets, the software can now semantically segment point clouds into distinct classes—such as vegetation, buildings, roads, and vehicles—with a significantly higher F1 score than previous heuristic methods.

This semantic understanding extends to the Masking Workflow. In industrial scanning or artifact preservation, backgrounds constitute a significant source of noise. The 2.0 update utilizes deep learning for automatic background masking, effectively separating the foreground subject from the environment in the alignment phase. This reduces reconstruction artifacts and minimizes the "floating noise" often associated with complex scanning setups, streamlining the generation of water-tight meshes for engineering applications.

Based on the capabilities of Agisoft Metashape Professional 2, I have selected a high-value, complex feature to develop: "Automated Vegetation Classification and Digital Terrain Model (DTM) Generation." At its core, Agisoft Metashape Professional 2 is

This feature addresses a common pain point in photogrammetry: processing dense vegetation areas where you need a bare-earth model (DTM) rather than a surface model (DSM) that includes trees and bushes.

Below is the complete development documentation and implementation script for this feature.


The most significant architectural change in version 2.0 is the shift from Python 2 to Python 3. This is not just a version bump—it unlocks modern libraries (NumPy, SciPy, OpenCV) directly within Metashape’s console. The most significant architectural change in version 2

How to use this: You can now run complex machine learning pre-processing scripts without leaving the application. For example, you can write a script to auto-mask vegetation using a pretrained model before alignment.

Pro Tip: Use the built-in Metashape.Tasks module to batch-process 100+ chunks. Create a template script that imports os, Metashape, and time, then loops through a folder of new datasets every night.