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 - e.spiridonova

Pages: 1 [2] 3
16
Bug Reports / Re: Assertion "3478972301441" failed at line 720
« on: April 05, 2023, 12:08:43 PM »
Hello Everyone
I just encountered very similar problem.
I have a bunch of scans from leica scanner orinted in Cyclone and exported to e57 separately. I can process all of them in ContextCapture, but some of them (3 out of 20 scans) fail to process to mesh in Agisoft giving error: failed #44 BuildModel.prepairDepthMaps (1/1): Assertion "23671468921001171" failed at line 1149!
It is curious, that same 3 scans in e57 fail to convert to RCP in recap...
Have proceed with some small investigation...
1. changing region in Agisoft does not help (smaller, bigger, different parts of the scan).
2. deleting points not in range, updating, compressing point cloud in Agisoft does not help.
3. eksporting without color or intensity does not help
4. filtering point cloud containing 700.000.000 points giving 0.5mm resolution gives point cloud with 1.700.000.000 :O (something is not right... should be smaller if i understand correctly)
5. importing point cloud with different coordinate precision settings didnt help.
6. using 2.0.2 or 2.0.1 - no difference - fresh projects each time.
7. Two desktops (64 GB RAM and 128 GB ram, different hardware) - same error.
Two of them are in scanners high resolution giving 700.000.000 points, but one of them is in medium resolution with about 200.000.000 points (as all of working scans) so I guess this is not the size problem.
What we noticed is that the scan is processing in Agisoft and Recap if we delete points close to the scanner position in Cyclone before exporting. Is it possible that the problem is too dense point cloud on objects near the scanner??? If i delete same points inside Agisoft (after import) it does not solve the problem - scan is still "faulty" in some way and does not want to process to mesh.
Anyway, the workflow would require to load the scans and just process. Identifing 3 out of 20 scans which is cousing the problem is a bit time consuming (assertation error does not give strait information about the name of scan/scans in project, so I guess it would be best if you could check and solve the problem on importing clouds.
I can send you a link with a sample scan or two. Please provide me an email (or other private masseging system) I can use for passing it.
Best regards

Dear pima,

Could you please send us an example of your data set to support@agisoft.com?

17
I'm also experiencing the issue with the red/pink point cloud bounding box in V2.0. This seems to appears after duplicating the point cloud. The point cloud bounding box is also then visible on the original point cloud until the project is closed and opened again. I can't find a way to remove or make invisible the bounding box.

Dear rmowbs,
We can offer the following solution: could you please left-click on the Workspace pane (for example, click on the name of the chunk) and then the red bounding box will not be visible in the Model view.
If you double-click on point cloud, the red bounding box will appear again.

18
Dear Phogi,
Starting Metashape 2.0 in the Model view there are 2 Regions visible around the point cloud. The red color indicates the Point cloud Bounding box. The green color indicates general bounding box for this chunk. Now in Metashape available to change the color for it (Tools > Preferences > Appearance tab).  You can also left-click on the Workspace pane (for example, click on the name of the chunk) and the red bounding box will not be visible in the Model view. If you double-click on point cloud, it will appear again.

About Source and Sequential preselections: such a difference in the alignment results shouldn't be observed. Please check that when using Source preselection you correctly specified the coordinate system for the chunk and for the cameras in the Reference Settings dialog window (click Settings button on the Reference pane). Also please check that the image coordinates data was imported correctly.

19
General / Re: Agisoft Metashape 2.0.0 pre-release
« on: January 24, 2023, 06:02:44 PM »
This may seem like a minimal thing to look for, but the change of "Build Dense Cloud" to "Build Point Cloud" is fine, but now the order in the Workflow dropdown is out of order it seems and can be confusing. it is nice to have the workflow items in order of common workflow process order. Now Build Point Cloud is below Build Tiled Model.

Dear smiller,
Thank you for your feedback.

Usually, when building a model and a tiled model, users can skip building a point cloud and use depth maps as source data. Users who need a point cloud as a result usually process aerial data, after that they build DTM/DSM, Orthomosaic. Therefore, the workflow is divided into such sections and the order of commands has been changed.

20
General / Re: Import Point - Issue with import Dense Cloud
« on: December 28, 2022, 03:20:52 PM »
Dear Daniele,
Thank you, we downloaded the data.
We wish you Merry Christmas and Happy New Year!

21
General / Re: Import Point - Issue with import Dense Cloud
« on: December 26, 2022, 01:09:25 PM »
Hello,
It would be helpful, if you can share your data set.
If you are able to share the data, please send the download link to support@agisoft.com.

22
Python and Java API / Re: Add tweaks to script in Metashape
« on: November 07, 2022, 12:25:42 PM »
Dear ehxz,
Please note, that the 1st solution this is an analogue of setting tweaks through the interface.
The second solution (using tasks) is suitable for using tweaks during the script.

23
Python and Java API / Re: Add tweaks to script in Metashape
« on: November 07, 2022, 11:52:15 AM »
Hello,

We can offer the following solutions:
1. Use the following command:
Code: [Select]
Metashape.app.settings.setValue("BuildModel/ooc_surface_blow_up",0.95)
Metashape.app.settings.setValue("BuildModel/ooc_surface_blow_off",0.95)

2. Or try using tasks, as an example below:
Code: [Select]
chunk = Metashape.app.document.chunk
task = Metashape.Tasks.BuildModel()
task["ooc_surface_blow_up"] = "0.95"
task["ooc_surface_blow_off"] = "0.95"
[i]#add other paramerters for building model[/i]
task.apply(chunk)

24
General / Re: Hovermap SLAM normals
« on: November 03, 2022, 05:59:24 PM »
Dear Chani,
We analyzed your data and imported the trajectory file into the project and the normals are calculated correctly. 

Unfortunately, the *.xyz format for normals is not supported now, and before using it, you need to re-save it to the *.txt format and then use the *.txt file.  Also, the first column in the file cannot be excluded through the GUI of the program (there is a value of 0), you need to delete this column if you want to import the file through the GUI and specify the following parameters (see screen 1.png).

Or we can only suggest resaving the file in *txt format without deleting the first column in the file and using the command via Python for import point cloud.
import Metashape
Metashape.app.document.chunk.importPoints("/path/to/laz_file.laz", use_trajectory=True, traj_path="/path/to/traj.xyz.txt", traj_skip_rows=1, traj_columns="0txyz")

where:
/path/to/laz_file.laz - path to the laz file with the cloud
/path/to/traj.xyz.txt - the path to the txt file with the trajectory
traj_skip_rows=1 - there is 0 in the first column of the trajectory file, so we added the option to skip this column in the script.


Then we can offer the following workflow:
- re-save the file with the trajectory in *txt format;
- open Console pane (select View > Console) and use the command:
import Metashape
Metashape.app.document.chunk.importPoints("/path/to/laz_file.laz", use_trajectory=True, traj_path="/path/to/traj.xyz.txt", traj_skip_rows=1, traj_columns="0txyz")


To check whether the trajectory file was taken into account when importing, you will see similar lines as in screenshot 2.png

25
General / Re: Hovermap SLAM normals
« on: November 02, 2022, 02:02:28 PM »
Dear Chani,
Thank you, we downloaded your data.

26
General / Re: Hovermap SLAM normals
« on: November 01, 2022, 06:25:10 PM »
Dear Chani,

Could you please send an example of your data set (point cloud and trajectory file) to support@agisoft.com?

27
General / Re: Agisoft Metashape 2.0.0 pre-release
« on: October 27, 2022, 01:15:58 PM »
Yes but, is there any risky that by activating licence with 1.8 that I should paid for a future upgrade sooner that by activating licence in 2.0 , in case of your business model would change ?
I mean, is there any negativ point by activating in 1.8 or potential negativ point in the future?
thanks.

Dear flyzk,
All the users that have previous versions of Metashape can download to 2.0 for free. 2.0 version comes with the new activation system which means that new activations made with Metashape Professional 2.0 will use a new license format incompatible with Metashape Professional 1.x versions. Update to 2.0 does not require any additional actions from user - only to install the version and run it with the previously activated license.

28
General / Re: Agisoft Metashape 2.0.0 pre-release
« on: October 20, 2022, 05:41:01 PM »
From reading this and the knowledge base entry I'm still not clear on exactly what effect this procedure will have on the transforms of the Laser Scans. Will the grouped and fixed laser scans maintain their position relative to each other while the entire group is still allowed to move?

Dear Jed,
Yes, the grouped and fixed laser scans will maintain their position relative to each other while the entire group is still allowed to move.

Can the entire group be locked in to place easily so that it is not allowed to move? That's something we've been asking for ever since laser scan support was introduced, e.g. this comment in the 1.7.0 prerelease thread:

https://www.agisoft.com/forum/index.php?topic=12653.msg56372#msg56372

Dear Jed,
Currently alignment with preserving absolute transform is not supported. However, even after resetting alignment for fixed laser scan group the relative orientations will be preserved and group as a rigid structure will be aligned to photogrammetric tie points.

29
General / Re: Agisoft Metashape 2.0.0 pre-release
« on: October 20, 2022, 12:52:52 PM »
Here is a link to a sample e57 file https://drive.google.com/file/d/1KXlUsAUTf8BV-qOzeN3-cm3G11Q7WFNA/view?usp=sharing
Please let me know if you are able to reproduce the problem.

Dear bassistas,
Thank you for the data set. We managed to reproduce the problem on our side.
The fix of this bug will get into the next pre-release version.
Thanks again for the provided file and we apologize for the inconvenience.

30
General / Re: Agisoft Metashape 2.0.0 pre-release
« on: October 19, 2022, 04:30:17 PM »
Dear Elizaveta,

all your suggestions regarding the procedure are understood. I apply them exactly as you suggested.

The point cloud used for my test project is in .e57 format and contains, apart from the point cloud, a panoramic image embedded. This file was exported from Z+F software.
Please note that  in the case of another format (.obj), the panoramic image is missing. In this case when align photos the "reset current alignment" option is inactive and cannot be selected. I suspect that the alignment uses the panoramic image for matching with the rest of the frame images.
As for the case of .e57, the result of alignment is wrong. In particular,  the to block of the frame images was not connected on the point cloud . See attached image and log file.
Last, when i save and try to open the project i get "invalid sensor id" message.

best regards
Vasilis


Dear Vasilis,
Please send your project that you have problems with to support@agisoft.com.
If this is not possible, please send a screenshot of the Workspace pane.


Pages: 1 [2] 3