Forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Alexey Pasumansky

Pages: [1] 2 3 ... 1048
1
Hello joswil,

Here is the example of Python script that works similar to Add Marker command applied to the image in Photo view:

Code: [Select]
import Metashape

chunk = Metashape.app.document.chunk #active chunk

N = 10 #camera id
x, y = 3000, 2000 #pixel coordinates for marker on Nth camera in the chunk

if chunk.point_cloud:
surface = chunk.point_cloud
elif chunk.tiled_model:
surface = chunk.tiled_model
elif chunk.model:
surface = chunk.model
else:
surface = chunk.tie_points

cameras = [c for c in chunk.cameras if c.type == Metashape.Camera.Type.Regular and camera.transform]
camera = chunk.cameras[N]
marker = chunk.addMarker(camera.unproject([x,y]))
point = surface.pickPoint(camera.center, camera.transform.mulp(camera.sensor.calibration.unproject(Metashape.Vector([x,y]))))

for camera in cameras:
if not camera == chunk.cameras[N]:
continue
if marker.projections[camera]: #skipping, if marker has projections on the given image
continue
x, y  = camera.project(point)
if (0 <= x < camera.sensor.width) and (0 <= y < camera.sensor.height):
marker.projections[camera] = Metashape.Marker.Projection(Metashape.Vector([x,y]), False)
print("Script finished")

Scripts sends the ray for Nth camera through x,y coordinates of the image, intersects it with the available 3D surface in the following order, depending on presence in the active chunk: dense point cloud, tiled model, mesh model, tie point cloud. Then re-projects the intersection point back to all the other aligned cameras.

This should work in 2.3 version.

2
Bug Reports / Re: [2.3.1] doc.save() to .psz silently drops sensor.axes
« on: August 26, 2026, 03:37:13 PM »
Hello Frédéric,

Thank you for reporting the problem.

Fix will be included in the next version update.

3
Hello Flotilla,

Can you please share the part of the processing log corresponding to failed Build Depth Maps operation and also confirm that you have the lastest compatible driver installed for AMD GPU?

4
General / Re: Loss of detail in Mosaic tecture
« on: August 07, 2026, 10:16:18 PM »
Hello fmcmains,

That should not happen - Mosaic texturing mode was not affected (especially on purpose) when Natural has been introduced. Do you have any comparison screenshots of the same model textured in older and newer versions - if so, can you share them together with the screenshots of model properties from Metashape project?

5
General / Re: Align Images not Using GPU RTX 6000 ADA
« on: August 07, 2026, 10:14:32 PM »
Hello aaronfhd,

Can you share the output from the Console pane after starting a new Metashape instance with RTX 6000 ADA?

Also please check, if GPU-Z (or similar utility) shows CUDA and OpenCL for this graphic card.

6
Hello michaelRRI,

Are you still observing the problem in 2.3.1 release version?

If so, can you please share batch process task list exported to XML format and the log related to the processing operation completed to at least few chunks.

7
General / Re: Build / "Generating Model" Processing Time
« on: August 04, 2026, 12:52:19 PM »
Hello Tas,

If you are still observing similar issues with other projects, it would be helpful, if you can share the complete processing of Build Model processing stage and PDF report exported from the project.

8
General / Re: Will the next version include updates to the 3DGS feature?
« on: August 03, 2026, 04:03:28 PM »
Hello china007,

Such functionality is not planned in the current 2.3.x version.

9
Feature Requests / Re: Depth Map Merging
« on: August 03, 2026, 04:01:56 PM »
Hello tweezlednutball,

Feel free to send the download link to the project and related data to support@agisoft.com.



10
Feature Requests / Re: Agisoft Metashape Icon on Mac
« on: August 03, 2026, 04:00:57 PM »
Hello Matteo,

Can you please check if in etashape 2.3.2 build 22809 pre-release version the issue with the application icon is fixed?

Professional edition: https://download.agisoft.com/metashape-pro_2_3_2.dmg
Standard edition: https://download.agisoft.com/metashape_2_3_2.dmg

11
General / Re: Tiled model errors
« on: July 31, 2026, 03:02:48 PM »
Hello Samuel,

I suggest to try version 2.3.2 pre-release, as it should deal with rare "Empty Image" errors that could appear during tiled model generation:
https://download.agisoft.com/metashape-pro_2_3_2_x64.msi
https://download.agisoft.com/metashape-pro_2_3_2.dmg
https://download.agisoft.com/metashape-pro_2_3_2_amd64.tar.gz

12
Hello Gstudio,

Most likely there is no active DEM in the chunk, so Profile tab in the Measure Shape dialog is not available.

Note that you can use Measure Profile tool from the toolbar, if you need to preform the measurements based on the mesh model.

The feature that you have mentioned (with Offset and Thickness options) is Measure Profile tool, but if applied to the point cloud or laser scan.

13
General / Re: WGS84 > OSGB + ODN transormation issue
« on: July 28, 2026, 07:14:11 PM »
Hello DronePatrol,

You can also keep geoid files in the user's folder that shouldn't require administrator access rights:
on Windows: C:\Users\<username>\AppData\Local\Agisoft\Metashape Pro\geoids

15
Hello Frédéric,

Thank you for reporting the problem with Python. We have fixed it in Metashape 2.3.2 build 22776 pre-release version:

https://download.agisoft.com/metashape-pro_2_3_2_x64.msi
https://download.agisoft.com/metashape-pro_2_3_2.dmg
https://download.agisoft.com/metashape-pro_2_3_2_amd64.tar.gz


Pages: [1] 2 3 ... 1048