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

Pages: [1]
1
Bug Reports / Re: Linux Metashape, start fails
« on: January 18, 2019, 03:12:15 PM »
Quote
Are you starting it via ./metashape.sh?
Yes

Quote
Also are you working locally or via any kind of remote connection?
No, sitting in front of the machine.


Interesting fact: I had the same issues with Photoscan 1.4.1.

Restarting the machine solved the issue...
I did some upgrades in that session, which I cant reproduce anymore...

Have a nice weekend!

2
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?

3
General / Re: New AMD Ryzen 7 processor
« on: June 20, 2017, 06:39:34 PM »
I am using a Ryzen 1700X without any issues so far! (Around 10-20 hours of processing time per week...)

Before you buy an AMD GPU have a look in the actual specifications!
I think they switched to CUDA which is NVIDIA based...

4
Bug Reports / Re: Can't load OpenCL library
« on: March 29, 2017, 10:13:14 AM »
Ubuntu 16.10
Photoscan 1.3.0

Photoscan worked until I installed OpenGL Dev packages.


Using nanders suggestion worked for me!

Code: [Select]
ln -s /usr/lib/x86_64-linux-gnu/libOpenCL.so.1 ~/Downloads/photoscan-pro/libOpenCL.so

5
General / Re: Quadro FX 3800 support
« on: February 20, 2017, 02:42:27 PM »
I have got Version 1.2.7 from Alexey.

It works with the GPU flawlessly and also slowly, because its from 2009 and modern hardware is much faster...

Thanks for the support Alexey!

6
General / Re: Quadro FX 3800 support
« on: February 17, 2017, 03:58:07 PM »
Hello Alexey,

were can I download the version legally?
A search with google reveals questionable sources only...

7
General / Re: Quadro FX 3800 support
« on: February 17, 2017, 11:03:23 AM »
Thanks Alexey!

Can you point me to an older version which works with this GPU?

8
General / Re: Quadro FX 3800 support
« on: February 16, 2017, 03:25:21 PM »
I compressed it too much, sorry!


9
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

10
Python and Java API / Re: [1.2.x] How to load the Markes XML file
« on: March 14, 2016, 06:50:39 PM »
Thanks Alexey, its working now!

11
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]