Forum

Recent Posts

Pages: [1] 2 3 ... 10
1
General / undo lock transformation on LIDAR
« Last post by gheflorian on Today at 08:24:46 AM »
Hi there! Is there a way to undo the point clouds if I did unlock transformation, georef using GCP and then lock and save the project?
2
General / Re: Problemas com Matrice 350 RTK
« Last post by Paulo on July 15, 2025, 08:37:10 PM »
Acho que o mesmo sensor que o Mavic3E y eu tenho bons result6ados com este sensor...

Se pode compartilhar o jogo de fotos, poderei olhar...
3
General / Re: Problemas com Matrice 350 RTK
« Last post by JulioPereira on July 15, 2025, 07:18:29 PM »
Peço perdão, houve um erro na especificação do drone o que utilizamos é o DJI Matrice 4 Enterprise com camera Sensor CMOS de 4/3, 20 MP de pixels efetivos, f/2,8-f/11, formato equivalente: 24 mm, Obturador mecânico
4
General / Re: Problemas com Matrice 350 RTK
« Last post by Paulo on July 15, 2025, 06:48:36 PM »
Bom dis, Julio,

pode especificar a camara utilizada? Si é a P1, então no deveria ter ningún problema no alinhamento y geração de ortomosaico...
5
General / Re: Importing depth maps
« Last post by akiefer on July 15, 2025, 06:00:25 PM »
Hello,

I am trying to use a smartphone camera to recreate an environment with proper scale. I have GPS data but it does not seem to be strong enough in getting the scaling we need. I also have depth map imagery which uses the phone's LiDAR sensor to capture depth information. I have used the python script to embed the depth information into the images however I don't think this is desired as the goal is to use the depth maps for scaling, not scene reconstruction. So I have a few questions:

1. Is there a process in metashape to use the depth maps just for scaling given that these depth maps can tie to a image in the data set but not be used in alignment/processing?
2. Should we focus on specific objects for these depth maps?
3. Is there any other ways to get more accurate scaling?

Thank you for any help and insight you can provide!
6
General / Problemas com Matrice 350 RTK
« Last post by JulioPereira on July 15, 2025, 03:45:07 PM »
Bom dia !

Alguém mais está tendo problemas ao processar imagens geradas pelo Drone DJI Matrice 350 RTK?

Estou percebendo algumas deformações no mosaico, atualmente utilizo a versão 2.2.1 do Metashape Pro
7
Python and Java API / Re: Share cameras between frames
« Last post by avolodin on July 15, 2025, 11:11:43 AM »
okay I think I realized how to do it on per-frame basis, maybe somebody will benefit off it:

Code: [Select]
doc = Metashape.Document()
chunk = doc.addChunk()

folders = glob.glob("stash_bs/*/rgb/")
folder = folders[0]
photo_files = [os.path.join(folder, f) for f in os.listdir(folder)
               if f.lower().endswith(('.jpg', '.jpeg', '.png', '.tif', '.cr2', '.dng', '.tiff'))]

groups = [len(folders) for _ in photo_files]

per_folder_files = {}
for folder in folders:
    per_folder_files[folder] = sorted(glob.glob(f"{folder}/*{os.path.splitext(photo_files[0])[1]}"))

all_photo_files = []

for i in range(len(per_folder_files[folder])):
    for folder in folders:
        all_photo_files.append(per_folder_files[folder][i])

chunk.addPhotos(all_photo_files, groups, layout=Metashape.ImageLayout.MultiframeLayout, strip_extensions=False)
8
Python and Java API / Re: Share cameras between frames
« Last post by avolodin on July 15, 2025, 10:59:19 AM »
btw, your example is per-camera folders, how do I use per-frame folders?
9
Python and Java API / Re: Share cameras between frames
« Last post by avolodin on July 15, 2025, 10:57:51 AM »
thanks! i think Python manual can benefit from this remark, I really couldn't wrap my head around it
10
General / ubuntu metashape worker root path issue
« Last post by kg.sanjeeth on July 15, 2025, 08:02:27 AM »
Hi Team.

i am trying to run a worker node with the following command in ubuntu "./metashape.sh --worker -platform offscreen --host <server_ip_address> " I want the node to take root path from the server. i had earlier set root path using --root option, Since then it somehow remembers/caches even though I have not given it now. Any idea how do I reset this? I want the worker to pickup the shared folder path the server.

i see below logs, what ever the root path I give

2025-07-15 14:52:12 registration accepted
2025-07-15 14:52:12 ExportModel
2025-07-15 14:52:12 Error: Can't open file: No such file or directory (2): /home/hp/Downloads/metashape-pro_2_2_1_amd64/metashape-pro/smb:/hp-hp-z6-g4-workstation.local/taskfolder[/color]///10.12.1.179/taskfolder/tus-uploads/Drone/workspace/metashape/Drone.psx
2025-07-15 14:52:12 processing failed in 0.001882 sec

highlighted text in bold and red is not required and only the last part is the correct one.

Pages: [1] 2 3 ... 10