Dear all, has anyone yet compiled Gamera with Python 2.6? A user recently reported the problem indicated in the backtrace below. As I have no system with...
I am getting this "RunTime Error Max Recursion Depth Exceeded" when running the classifier in windowsxp. It is occurring when I am trying to select a glyph and...
Am Tue, 16 Dec 2008 17:34:47 -0000 ... From the screenshot I conclude that you are working with Python 2.5 on Windows. What is your version of Gamera? Can you...
Am Wed, 17 Dec 2008 10:04:59 +0100 ... Sorry, forgot to ask what your version of wxpython is. You can figure it out with the following commands in the ... ...
(yuppy! chris is very much around :-D) A. Software I am using gamera - gamera-3.1.1 Build Last Update: Jun 09 2008 Python 2.5 matplotlib-0.98.3 Python 2.5...
Am Wed, 17 Dec 2008 14:18:19 -0000 ... I have wxpython 2.8.4 and cannot produce any error during training. I have done the following: 1) marked glyphs in the...
I am doing exactly the same steps chris but this time I removed wxpython 2.9.x and installed wxPython2.8.4.0 and strangely I no longer see those errors. Is...
This is really strange! I did not encounter the error when installed wxpython 2.8.4 and first ran the instructions u gave below BUT during subsequent runs I am...
Am Thu, 18 Dec 2008 08:58:30 -0000 ... Meanwhile I have managed to reproduce the error. It only occurs on Windows. The problem occurs at the moment the ENTER...
Am Thu, 18 Dec 2008 17:19:39 +0100 ... I have just removed wxPython 2.8 and installed wxPython 2.6 on my Windows system, and the error still shows up. So this...
Good Evening, ... I'm also running Archlinux and can reproduce the problem :-S If you (or somebody else) can tell me how to go on about it (probably off-list)...
Hello List, Before discussing the remainder of my post, I'd like you to verify that I have the right idea about Size and Dim in gamera: I picture a Rect to...
Am Sat, 17 Jan 2009 18:21:17 -0000 ... Hm, I fear the only way to do the porting is by running into the compilation errors and trying to fix them one by one. I...
Hi Georg, many thanks for spotting this! Incidentally this pointed me to another error in roman_text.py concerning x/y consistency. I have added your name to...
Dear Michael, just run into the problem that an image was destroyed before it could be displayed in the classifier dialog. It turned out that the cuplrit was...
I can't remember specifically why they were needed -- except that generally that would be a way to avoid memory leaks caused by cyclical references. It's...
Hello Christoph, ... That's great, thanks! :-) ... My incentive to put the two-argument signature in was to provide a simple non-ambiguous way to specify the...
Am Wed, 21 Jan 2009 19:35:44 +0100 ... Ok, this is a matter of philosophy: whether you prefer the Perl philosophy "there's more than seven ways to do it and...
Am Wed, 21 Jan 2009 19:35:44 +0100 ... Oh, sorry you are right, this does no longer matter. There once was the problem problem that in older versions of ...
Dear all, there is now a "Tutorial Introduction to the Gamera Framework" available from the Gamera homepage. See http://gamera.informatik.hsnr.de/#docs It is...
Dear all, I am currently trying to write a linear time median implementation, which is basically simply a wrapper around the STL algorithm nth_element(). ...
On Wed, Feb 4, 2009 at 10:54 AM, Christoph Dalitz ... Part of the problem is that given a Python list, you don't know whether it contains all ints or all...
Am Wed, 4 Feb 2009 11:14:51 -0500 ... Works great! I could use PyObject_RichCompare to define a "canonical" wrapper class around PyObject that can be used in...
That's correct. You're working with the raw Python C/API there, which being C does not have destructors, so reference counting must be handled manually. Mike ...
Am Fri, 6 Feb 2009 10:36:39 -0500 ... Is this also necessary when the return value is constructed with Py_BuildValue? That is, does the following work return...