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 - guicanarin

Pages: [1] 2 3
1
General / Re: Metashape Training - Endorsed by Agisoft
« on: February 10, 2021, 08:41:36 PM »
 :)

2
Bug Reports / Re: Metashape is crashing
« on: October 31, 2020, 12:28:23 AM »
The agisoft support asked me to update intel graphics and worked!!

3
Bug Reports / Re: Metashape is crashing
« on: October 30, 2020, 11:52:14 PM »
I updated to the latest version, and keep crashing...

ARB_texture_non_power_of_two: Yes
ARB_vertex_buffer_object: Yes
CPU: Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz
Comments: I'm giving up this software.
I posted in forum and no one helped me.
I need to work with this, but there is no way...
Email: guilhermecanarin@gmail.com
OpenGLMaxTextureSize: 32768
OpenGLRenderer: GeForce GTX 1060/PCIe/SSE2
OpenGLStereo: No
OpenGLVendor: NVIDIA Corporation
OpenGLVersion: 4.6.0 NVIDIA 456.71
ProductName: Metashape Pro
System: Windows 64bit
SystemMemory: 31.9 GB
Throttleable: 1
URL:
Vendor: Agisoft
Version: 1.6.5.11249
XLog: Agisoft Metashape Professional Version: 1.6.5 build 11249 (64 bit)
Platform: Windows
CPU: Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz (laptop)
CPU family: 6 model: 158 signature: 906E9h
RAM: 31.9 GB
OpenGL Vendor: NVIDIA Corporation
OpenGL Renderer: GeForce GTX 1060/PCIe/SSE2
OpenGL Version: 4.6.0 NVIDIA 456.71
Maximum Texture Size: 32768
Quad Buffered Stereo: not enabled
ARB_vertex_buffer_object: supported
ARB_texture_non_power_of_two: supported
Using simple console. Rich console can be enabled in Preferences dialog.


This report also contains technical information about

4
Bug Reports / Re: Metashape is crashing
« on: October 30, 2020, 11:48:09 PM »
Now, it shows another problem.
When i click in GPU tab at preferences, the software just crashes.....
And this is what appears in crash report

"ARB_texture_non_power_of_two: Yes
ARB_vertex_buffer_object: Yes
CPU: Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz
OpenGLMaxTextureSize: 32768
OpenGLRenderer: GeForce GTX 1060/PCIe/SSE2
OpenGLStereo: No
OpenGLVendor: NVIDIA Corporation
OpenGLVersion: 4.6.0 NVIDIA 456.71
ProductName: Metashape Pro
System: Windows 64bit
SystemMemory: 31.9 GB
Throttleable: 1
URL:
Vendor: Agisoft
Version: 1.5.5.9097
XLog: No license found.
Details: No license for product (-1)
Agisoft Metashape Professional Version: 1.5.5 build 9097 (64 bit)
Platform: Windows
CPU: Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz (laptop)
CPU family: 6 model: 158 signature: 906E9h
RAM: 31.9 GB
OpenGL Vendor: NVIDIA Corporation
OpenGL Renderer: GeForce GTX 1060/PCIe/SSE2
OpenGL Version: 4.6.0 NVIDIA 456.71
Maximum Texture Size: 32768
Quad Buffered Stereo: not enabled
ARB_vertex_buffer_object: supported
ARB_texture_non_power_of_two: supported
Using simple console. Rich console can be enabled in Preferences dialog.


This report also contains technical information about the state of the application when it crashed."


Someone could help me?

5
Bug Reports / Metashape is crashing
« on: October 29, 2020, 02:27:27 AM »
Hello guys!
I'm trying to start a new project but my metashape professional is crashing in "Align Photos" step.
I updated the drivers, i tried to use old versions of metashape, i tried to use just images without control points...
But nothing works... when i press to start to align photos, metashape just close.
Someone can help me?

6
Bug Reports / Problem "Not enough memory"
« on: September 19, 2019, 04:30:16 PM »
Hi guys, i'm working with a Metashape Professional license and i have a Dense cloud with more than 500 millions points and a PC with 64 GB memory. When i wll make a mesh, i always watch the memory consuming. And in this case i have a pike of 54 GB memory consuming, but when the software was consuming 16 GB of memory, the error "Not enough memory" appears.
I wanna understand why this is happening!!

7
Python and Java API / Re: Problem with rotation angles
« on: August 16, 2019, 09:15:07 PM »
I got it!!
It Works!!
Thanks, Alexey!

8
Python and Java API / Problem with rotation angles
« on: August 16, 2019, 05:39:09 PM »
Hello guys, i used a code to translate and transform my coordinate system to the first camera of my chunk, and the code was..
Code: [Select]
import Metashape

def CS_to_camera():

print("Script started...")
chunk = Metashape.app.document.chunk
if not chunk:
print("Empty project, script aborted")
return
selected = [camera for camera in chunk.cameras if camera.selected and camera.transform]
if len(selected) != 1:
print("Select only one aligned camera to procees. Script aborted.")
return
camera = selected[0]

Rt = camera.transform


chunk.transform.translation = Metashape.Vector((0,0,0))

chunk.transform.matrix = chunk.transform.matrix * Rt.inv()

print("System set to " + camera.label + " coordinates. Script finished.")
return 1
CS_to_camera()
Metashape.app.addMenuItem("Custom menu/Coordinate system to camera", CS_to_camera)
With this code, when i export the cameras its positions and rotations should be value "0" for X, Y, Z and Ome, Phi and Kappa.
But i had X =0, Y = 0, Z = 0, Omega = - 180, Phi = 0 and Kappa = 0.
I don't have any idea what is causing this Omega value.
Someone has any idea how to turn this value to "0"??

9
General / About Units in Photoscan
« on: August 10, 2018, 08:17:10 PM »
Hello guys, i'm using PhotoScan Pro for Close Range Photogrammetry and i've found in preferences just "meters" unit. And is more acceptable for me use the software in "milimeters", but it don't have in options.
There's a way to use PhotoScan in milimeters??
Thank you.

10
Python and Java API / Re: Stop and Continue
« on: May 24, 2018, 07:31:55 PM »
Ah ok ok, i found this!! haha THX Alexey!

11
Python and Java API / Re: Stop and Continue
« on: May 24, 2018, 07:25:35 PM »
Hello Alexey, i tried to use this, and nothing happened.
What i suppose to do to this code works?

12
Python and Java API / Re: Stop and Continue
« on: May 24, 2018, 06:32:31 PM »
Hello alexey, i'm using PhotoScan Pro in my academics works, and this is the first script.
This will be used for many years and a lot of people will use.
If we have two scripts,  this information will be lost in many years.
So i want to concentrate all information just in one script.

13
Python and Java API / Re: Stop and Continue
« on: May 24, 2018, 04:13:53 PM »
I want to break the process after align photos to clean some points that is not my interest, and then continue the process.
Is this possible?

14
Python and Java API / Re: Stop and Continue
« on: May 24, 2018, 03:42:44 PM »
Ok Alexey, it works!!
But, i really need to stop the script, and then continue.
There is a way to do that? Or is impossible??
haha
Thx a lot!!

15
Python and Java API / Re: Stop and Continue
« on: May 22, 2018, 07:11:33 PM »
So, i'll have to run one script and after the other, or i just can run the two scripts togheter?

Pages: [1] 2 3