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 - Ryan Fox

Pages: [1]
1
Feature Requests / Re: Why still no .NEF support?
« on: July 06, 2017, 05:35:47 PM »
You might try dcraw: http://www.cybercom.net/~dcoffin/dcraw/
It can convert NEFs to TIFF.

2
Python and Java API / Re: How to print/handle progress
« on: June 29, 2017, 06:27:06 PM »
It's running into trouble on your last percent sign - Python is interpreting that as another substitution, and expecting a format spec to follow.  You can escape the last percent by putting two of them:
Code: [Select]
print("%s Progress: %f%%" % (self.name, percent))
You can also use the newer .format() style:
Code: [Select]
"{} Progress: {}%".format(self.name, percent)

3
Python and Java API / Re: Python scripts collection?
« on: June 24, 2017, 12:19:45 AM »
Is there still interest in a repository of scripts?  I'd be willing to maintain it.  I set up a repo here: https://github.com/FoxRow/Agisoft-Scripting

I can pull in the scripts already in http://wiki.agisoft.com/wiki/Python.  If we get a critical mass, it would be nice to release it as a companion package on PyPI.  I don't see any license on the scripts already in the wiki, does maybe someone from Agisoft know their provenance?  I'd like to have a coherent license for the repository in that case.

Pages: [1]