Search the web
Sign In
New User? Sign Up
gamera-devel
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1711 - 1740 of 1874   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1711
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)...
tuxlifan
Offline Send Email
Jan 17, 2009
6:21 pm
1712
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...
Georg Drees
tuxlifan
Offline Send Email
Jan 17, 2009
7:48 pm
1713
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...
Christoph Dalitz
christofero2002
Offline Send Email
Jan 19, 2009
10:12 am
1714
Am Mon, 19 Jan 2009 11:13:48 +0100 ... Forgot to say: a good starting point for porting to Python 2.6 is the following list of issues: ...
Christoph Dalitz
christofero2002
Offline Send Email
Jan 19, 2009
10:23 am
1715
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...
Christoph Dalitz
christofero2002
Offline Send Email
Jan 19, 2009
1:57 pm
1716
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...
Christoph Dalitz
christofero2002
Offline Send Email
Jan 19, 2009
3:54 pm
1717
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...
Michael Droettboom
mdboom
Offline Send Email
Jan 20, 2009
2:30 pm
1718
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...
Georg Drees
georgdrees
Offline Send Email
Jan 21, 2009
6:35 pm
1719
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...
Christoph Dalitz
christofero2002
Offline Send Email
Jan 22, 2009
3:27 pm
1720
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 ...
Christoph Dalitz
christofero2002
Offline Send Email
Jan 22, 2009
3:30 pm
1721
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...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 2, 2009
1:45 pm
1722
This is wonderful! Thank you very much! Ichiro...
Ichiro Fujinaga
if4156
Offline Send Email
Feb 2, 2009
2:13 pm
1723
Yes -- this is a great idea! I should have some time this evening to look it over in more detail. Thanks, Mike ... -- Michael Droettboom ...
Michael Droettboom
mdboom
Offline Send Email
Feb 2, 2009
2:30 pm
1724
Am Mon, 2 Feb 2009 14:45:40 +0100 ... I have just added a very basic set of test images for the exercises in the tutorial. The direct link is ...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 2, 2009
4:29 pm
1725
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(). ...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 4, 2009
3:54 pm
1726
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...
Michael Droettboom
mdboom
Offline Send Email
Feb 4, 2009
4:14 pm
1727
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...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 6, 2009
10:47 am
1728
Hallo, I have just written a plugin with the Python interface class median_py(PluginFunction): self_type = None return_type = Class("m") args =...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 6, 2009
11:00 am
1729
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 ...
Michael Droettboom
mdboom
Offline Send Email
Feb 6, 2009
3:36 pm
1730
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...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 6, 2009
3:48 pm
1731
... Eventually, I have found an explanation on http://docs.python.org/extending/extending.html#ownership-rules When Py_BuildValue is called, Py_INCREF is not...
christofero2002
Offline Send Email
Feb 6, 2009
9:42 pm
1732
Hallo, I have added a new class "canonicPyObject" to gameracore.so that is used in a new plugin in listutilities.py. Strangely, whenever I try to load my new...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 9, 2009
12:07 pm
1733
Have you tried forcing a full rebuild (by removing the build directory?) I've seen similar things because distutils doesn't track header file dependencies. ...
Michael Droettboom
mdboom
Offline Send Email
Feb 9, 2009
12:28 pm
1734
Am Mon, 9 Feb 2009 07:28:49 -0500 ... Yes, I had rebuilt everything and checked in the logs that gameracore.so indeed was recompiled and my new cpp file...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 9, 2009
12:44 pm
1735
Ok -- I see how this is built now. Plugins don't (can't?) link against gameracore.so. Instead, they import it through the Python API and then pull the...
Michael Droettboom
mdboom
Offline Send Email
Feb 9, 2009
1:30 pm
1736
Am Mon, 9 Feb 2009 08:30:16 -0500 ... Ah, I see. I have now explicitly linked against my object with the following line in the plugin specification: ...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 9, 2009
1:44 pm
1737
You can add the path to the .cpp file using cpp_sources instead. But as you say, if you inline everything that won't be necessary anyway. Cheers, Mike On Mon,...
Michael Droettboom
mdboom
Offline Send Email
Feb 9, 2009
1:54 pm
1738
Hello, yet another somewhat crazy question... I would like to make a free plugin function (median) available under the same name on the C++ and Python side. ...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 9, 2009
2:06 pm
1739
Hi All: Just found out about Gamera, and tried to install it on my FreeBSD development box. Unfortunately, it appears the gamera_setup.py file needs to be...
David Blewett
david.blewet...
Offline Send Email
Feb 24, 2009
7:02 pm
1740
Welcome David! ... Additional include and lib directories can be added over the environment variables CFLAGS and LDFLAGS, e.g. CFLAGS=-I/usr/local/include ...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 25, 2009
7:06 am
Messages 1711 - 1740 of 1874   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help