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

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 835 - 864 of 1874   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
835
Hello, First, let me introduce myself. I'm a new student of Ichiro Fujinaga's at McGill. I'll be working on Gamera, and so expect to hear from me again from ...
John Ashley Burgoyne
j_a_burgoyne
Offline Send Email
Aug 4, 2005
9:30 pm
836
The unit testing and documentation examples are one-and-the-same with plugin functions (though I realise that's not entirely clear from the docs, in...
Michael Droettboom
mdboom
Offline Send Email
Aug 5, 2005
9:02 am
837
There is now very brief documentation about unit testing with Gamera here: http://dkc.jhu.edu/gamera/html/unit_testing.html Comments and feedback encouraged. ...
Michael Droettboom
mdboom
Offline Send Email
Aug 5, 2005
12:53 pm
838
Hallo, just saw in the online docs that new thinning methods have been added. However after checking out from cvs, removing my previous gamera install and...
Christoph Dalitz
christofero2002
Offline Send Email
Aug 8, 2005
12:12 pm
839
Oops. I generated these docs from my working copy (which I shouldn't have done.) No, the thinning algorithms are not complete -- I'm finding both of the ...
Michael Droettboom
mdboom
Offline Send Email
Aug 8, 2005
12:14 pm
840
Hallo, is there a function to create a PyObject of the Python type "Point" from a C++ object of type Point? Thanks, Christoph...
Christoph Dalitz
christofero2002
Offline Send Email
Aug 8, 2005
3:15 pm
841
PyObject* obj = create_PointObject(Point point);...
Michael Droettboom
mdboom
Offline Send Email
Aug 8, 2005
3:26 pm
842
Hello, My understanding of the current function of the equality operator over objects of type Image in Gamera is that it tests that the the bounding boxes of...
John Ashley Burgoyne
j_a_burgoyne
Offline Send Email
Aug 9, 2005
1:04 am
843
Thanks for all the detail. I may not have time to follow up beyond this until Wednesday... These were written the way they were, if I remember correctly, for...
Michael Droettboom
mdboom
Offline Send Email
Aug 9, 2005
1:27 am
844
Hallo, this is somewhat offtopic, but maybe someone here has also encountered the following problem which kept me busy searhing for an inexplicable error in my...
Christoph Dalitz
christofero2002
Offline Send Email
Aug 9, 2005
2:16 pm
845
... From http://publications.gbdirect.co.uk/c_book/chapter2/ expressions_and_arithmetic.html: "If either operand is negative, the result of / may be the...
John Ashley Burgoyne
j_a_burgoyne
Offline Send Email
Aug 9, 2005
3:03 pm
846
Dear Python C-Api experts, after obtaining a class property with PyObject_GetATtrString I need to check whether this property is None. I am sure there must be...
Christoph Dalitz
christofero2002
Offline Send Email
Aug 9, 2005
3:33 pm
847
From the Python API docs (http://www.python.org/doc/api/noneObject.html#l2h-365): Since |None| is a singleton, testing for object identity (using "==" in C) is...
Michael Droettboom
mdboom
Offline Send Email
Aug 10, 2005
1:40 am
848
... This idea seems excellent to me, especially because, as you mention, the current state doesn't quite work. ... Within the current unit tests, there are...
John Ashley Burgoyne
j_a_burgoyne
Offline Send Email
Aug 10, 2005
2:37 am
849
Hallo, when I call a free C++ plugin function (i.e. one that is not an image method), as in plugins.skeleton_utilities.is_staff_segment_candidate_new(s,dt,1) I...
Christoph Dalitz
christofero2002
Offline Send Email
Aug 10, 2005
8:16 am
850
You'll need to create an instance of the class, and then call that. For an example, see union_images in image_utilities.py -- at the bottom of the file is: ...
Michael Droettboom
mdboom
Offline Send Email
Aug 10, 2005
10:15 am
851
On Wed, 10 Aug 2005 06:15:11 -0400 ... Ah, now it works. Thanks, Christoph...
Christoph Dalitz
christofero2002
Offline Send Email
Aug 10, 2005
10:39 am
852
Hallo, for some reason I cannot call draw_line from a C++ plugin function and obtain the error: include/plugins/skeleton_utilities.hpp:140: error: no matching...
Christoph Dalitz
christofero2002
Offline Send Email
Aug 16, 2005
1:31 pm
853
It looks like you might need to dereference the image pointer. (Aren't C++ error messages wonderful?) Cheers, Mike...
Michael Droettboom
mdboom
Offline Send Email
Aug 16, 2005
10:27 pm
854
On Tue, 16 Aug 2005 18:26:54 -0400 ... Oh my! <blush> Although this solves the (deprecated?) draw_line call, the following calls to draw_line_points still...
Christoph Dalitz
christofero2002
Offline Send Email
Aug 17, 2005
10:22 am
855
I think that's my fault -- it's code from Gamera 3.x that was erroneously brought into Gamera 2.x. Line 158 in draw.hpp should read: draw_line(image, a.y(),...
Michael Droettboom
mdboom
Offline Send Email
Aug 17, 2005
11:38 am
856
Hallo, while doing a lot of scalar products and angle calculations, I would find it useful if the "Point" data would behave like a 2d-vector, ie. if the ...
Christoph Dalitz
christofero2002
Offline Send Email
Aug 17, 2005
12:35 pm
857
On Wed, 17 Aug 2005 14:31:10 +0200 ... Just observed that Point.x and Point.y are of type coord_t (= size_t = unsigned int) so that Points cannot be used as...
Christoph Dalitz
christofero2002
Offline Send Email
Aug 17, 2005
12:49 pm
858
... This is one of the additions in Gamera 3.x -- FloatPoint which is a pair of doubles. It was just too cumbersome to put this into Gamera 2.x and maintain...
Michael Droettboom
mdboom
Offline Send Email
Aug 17, 2005
1:03 pm
859
Hi, I am running a fresh CVS from August the 16th and getting the following error when I try to apply a _splitx to a glyph: Traceback (most recent call last): ...
lucian_of_tyre
Offline Send Email
Aug 17, 2005
3:51 pm
860
Sean, Hmmm... Thanks for letting me know. I'm not able to reproduce this here. Perhaps you're doing something differently that I didn't anticipate. ...
Michael Droettboom
mdboom
Offline Send Email
Aug 17, 2005
4:04 pm
861
Hi Michael Thanks for the prompt response. I added the print you suggested and got this before the error: <gameracore.Rect offset_y: 731 offset_x: 3083 nrows:...
Sean McGuire
lucian_of_tyre
Offline Send Email
Aug 18, 2005
3:03 am
862
And I'm running Python 2.4.1 on Linux Kubuntu. Thanks! I really appreciate this! - Sean...
Sean McGuire
lucian_of_tyre
Offline Send Email
Aug 18, 2005
3:05 am
863
This turns out to be related to Python 2.4... Python 2.4 changes how arguments are passed to bound static methods, so it was getting the image passed in...
Michael Droettboom
mdboom
Offline Send Email
Aug 18, 2005
12:33 pm
864
Mike, Well that fixed the problem and it works brilliantly! I actually didn't think that 3.0 was stable enough (an assumption in MY head ;) ). Perhaps I'll...
Sean McGuire
lucian_of_tyre
Offline Send Email
Aug 18, 2005
2:05 pm
Messages 835 - 864 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