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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 1721 - 1750 of 1874   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
1741
On Wed, Feb 25, 2009 at 2:10 AM, Christoph Dalitz ... Yes, it does allow the build to finish. Not sure why I didn't think of that, but it works. I'm not sure...
David Blewett
david.blewet...
Offline Send Email
Feb 25, 2009
3:00 pm
1742
... If I understand your patch correctly, BSD unix does not match any of the platforms and thus falls through the tests. I wonder whether this also holds for...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 25, 2009
7:02 pm
1743
On Wed, Feb 25, 2009 at 2:06 PM, Christoph Dalitz ... Basically, yes. It seemed that 2.2.2 was the minimum you're looking for. ... 1> import sys 2>...
David Blewett
david.blewet...
Offline Send Email
Feb 26, 2009
6:12 pm
1744
Am Wed, 25 Feb 2009 10:00:55 -0500 ... Just merged the patch into SVN. Thanks, Chris...
Christoph Dalitz
christofero2002
Offline Send Email
Mar 2, 2009
12:27 pm
1745
Dear all, I have just added some documentation on passing custom types (i.e. Class("bla") on the Python wrapper side and PyObject* on the C++ side) to and from...
Christoph Dalitz
christofero2002
Offline Send Email
Mar 4, 2009
2:22 pm
1746
Dear all, just added a class KdTree to Gamera, which can be used for log(n) two (or higher) dimensional searches. For details see: ...
Christoph Dalitz
christofero2002
Offline Send Email
Mar 25, 2009
10:47 am
1747
Dear all, just compiled Gamera according to the installation instructions on a Windows system with Cygwin and the Migw32 compiler (as shipped with Cygwin). ...
Christoph Dalitz
christofero2002
Offline Send Email
Mar 25, 2009
7:32 pm
1748
Am Wed, 25 Mar 2009 17:12:39 +0100 ... Just tested the compilation of Gamera without Cygwin, but with the Mingw32 compiler from http://mingw.org/ not from a...
Christoph Dalitz
christofero2002
Offline Send Email
Mar 27, 2009
2:00 pm
1749
Hello, just observed that the skeleton features computed by gamera are not the ones that should be computed. For an image with the attached skeleton (thin_lc,...
Christoph Dalitz
christofero2002
Offline Send Email
Mar 31, 2009
10:07 am
1750
Hallo, just released version 3.1.2 of Gamera on http://sourceforge.net/project/showfiles.php?group_id=99328 It should fix a long outstanding issue that made...
Christoph Dalitz
christofero2002
Offline Send Email
Apr 14, 2009
8:12 am
Messages 1721 - 1750 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