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.


Topics - Simon_

Pages: [1]
1
Bug Reports / Linux Metashape, start fails
« on: January 18, 2019, 01:18:10 PM »
Hello,
the following error comes up, when startin Metashape 1.5.0:
Code: [Select]
QOpenGLWidget: Failed to create context
composeAndFlush: makeCurrent() failed
composeAndFlush: makeCurrent() failed
composeAndFlush: makeCurrent() failed

System:
Ubuntu 18.04 bionic

What OpenGL Version is needed in order to run metashape?

2
General / Quadro FX 3800 support
« on: February 16, 2017, 02:47:43 PM »
Hey guys,

i found an old NVIDIA Quadro FX 3800.

When starting Photoscan on Win10/Ubuntu 16.04 with the latest NVIDIA drivers installed everything works fine, no Errors in the Console and Terminal window.
Also no OpenCL Error as mentioned here: http://www.agisoft.com/forum/index.php?topic=6163.0


But the GPU will not be listed in the GPU device list.
I found posts where Photoscan was used with this GPU.

Was the support dropped?
What was the last working Photoscan Version with this GPU?


Thanks, regards
Simon

3
Python and Java API / [1.2.x] How to load the Markes XML file
« on: March 09, 2016, 08:11:45 PM »
Hello,

I am trying to load my exported Markers back into the application via python.

My code so far:

Code: [Select]
import PhotoScan
import os

doc = PhotoScan.app.document
chunk = PhotoScan.app.document.addChunk()
chunk.label = "autoChunk"

# ChangeToYourPath
path_photos = YourPathToPhotos

image_list = os.listdir(path_photos)
for photo in image_list:
if ("jpg" or "jpeg" or "tif" or "png") in photo.lower():
print(path_photos + photo)
chunk.addPhotos([path_photos + photo])

PhotoScan.app.update()

chunk.crs = PhotoScan.CoordinateSystem("EPSG::4326")

# ChangeToYourPath
MarkersXML = YourMarkersXML

boolOut = chunk.loadReference(MarkersXML, "xml")

print("Does it work? -- " + str(boolOut))

chunk.updateTransform()

PhotoScan.app.update()

With the Dialog: Tools >> Import >> Import Markers... the program loads my XML file correctly.

The script above does not.

Whos spots the mistake?

Thanks!
Simon

Pages: [1]