... Sounds like a compile problem. It wasn't taken out... Can you send me the output of the compile. Also the output from starting up the Gamera GUI may help...
Ah, yes. Sorry I missed that point in my last e-mail. Certain functions don't make sense as "member functions" of images -- since they create images from...
That's benign, as long as the image is loaded. The image is loaded by "trying it" as a TIFF first. If that fails, it is tried as a PNG. I can't figure out...
Exactly what you need is already there -- but it's defined in gamera/gui/args_gui.py, since it's only relevant when the GUI is running. If you call .show( )...
... It is simple to suppress all error mesages with TIFFSetErrorHandler: http://www.die.net/doc/linux/man/man3/tiffseterrorhandler.3.html To only suppress it...
On Thu, 02 Jun 2005 11:45:02 -0400 ... Just tested it and it works fine. There is one minor point however: were it possible to (maybe optionally, in order not...
... The keyword or "default" arguments problem is one that is a problem in other ways too: i.e. you have to provide a stub Python function in order to support...
On Fri, 03 Jun 2005 16:29:42 -0400 ... I was not thinking of the general Gamera Args interface for plugins (which handles more than just the GUI), but only of...
... Ah, I think I understand you better now. Your suggestion (of putting non-GUI arguments at the end) seems like the path of least resistance. I'd like to...
... Thanks. This does exactly what I want. I don't mind that is suppresses all error messages, because they are being caught (based on the return value) and...
Hallo, this is slightly off topic, but maybe there are some other coders on this list who also use Emacs as their editor of choice. I am using the Python mode,...
My understanding is that Python tolerates tabs for backward compatibility, but spaces are the recommended thing to do. (Going back at least to 2001). AFAIK,...
... AFAIK, python-mode (for emacs) supports the vi version of the line, and presumably "translates" it into an emacs one (at least it works for me), but the...
I found this service that helped me refinance my home mortgage saving me thousands of dollars a year. Check this service out. http://www.greatrefi.com/?a=rcc1...
I have been using gamera for an app om mac for some time and it was working fine using the roman_text.py. I upgraded to mac tiger and now from the command...
oops - I just noticed that the plugins did not load as in: Loading plugins: ---------------------------------------- Loading XML... ... Traceback (most recent...
Good to hear from you, Kip. I was just about to ask whether the plugins were loading. Seems a reasonable explanation. We've been putting off upgrading to...
Ok - gamera is no problem. My brain, on the other hand.... everything is in the same old place but tiger requires a new 'site-packages' directory under the 2.3...
Hallo, While trying to set the default value of a Float argument to None I have observed that the argument dialog in the GUI silently converts None to 0.0. As...
... None is equivalent to "no default specified", and since you have to pick *something*, 0.0 seemed like the most obvious choice. ... IMO, part of the value...
On Tue, 14 Jun 2005 09:43:39 -0400 ... Actually the argument is a float value, but the user can leave it empty so that the algorithm tries to guess this value...
... Thanks for the clarification. Let's do some thinking about this. Hopefully we can come up with a better solution -- maybe something like a checkbox next...
On Tue, 14 Jun 2005 17:15:54 -0400 (EDT) ... The problematic point with the Any type is how it to represent it on the Python side. The most general type would...
... would ... It really can be "Any" type. When returned from the GUI (through .get_value()), it will be run through "eval". So if the string from the GUI is...
Hallo, I vaguely recall that we have discussed the following question some time ago, but I could not find it in the mailing list archives. So please excuse me,...