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 139 - 168 of 1874   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
139
Hi, Gamera offers a plugin function called "clip_image()", but this seems to return just the intersection of 2 images. I am looking for a function to get a...
Thomas Karsten
cybertoom
Offline Send Email
Jun 7, 2004
3:03 pm
140
... Yes. In Python: view = image.subimage(ul_y, ul_x, nrows, ncols) returns a view on the image. The coordinates are relative to the original underlying data....
Michael Droettboom
mdboom
Offline Send Email
Jun 7, 2004
3:39 pm
141
... There is no example image with training data available at the moment, though I plan to make one available in the near future. All of the collections I...
Michael Droettboom
mdboom
Offline Send Email
Jun 7, 2004
3:41 pm
142
Will newimage = image.clip_image(Rect(p1y, p1x, p2y - p1y, p2x - p1x)) or something along those lines not do the trick? That's roughly what I've been doing....
David Lewis
david_i_lewis
Offline Send Email
Jun 7, 2004
3:57 pm
143
No, it's definitely not "wrong". Both will work. David's approach has a little more overhead (probably not enough to care about -- this is Python after all),...
Michael Droettboom
mdboom
Offline Send Email
Jun 7, 2004
5:38 pm
144
Luis, I hope I can clarify my earlier response. I apologise if it was confusing. I do intend to do my best to help anyone interested in Gamera on this list,...
Michael Droettboom
mdboom
Offline Send Email
Jun 8, 2004
3:20 am
145
Hallo, while looking through all plugins I have noticed that there is currently no convolution plugin. Before we implement it ourselves (based on the neighbor9...
Christoph Dalitz
christofero2002
Offline Send Email
Jun 15, 2004
10:13 am
146
... Yes. Karl put in a fair bit of work to ensure it was easy to use Vigra code from Gamera. The process is not fully automatic, however -- you will have to...
Michael Droettboom
mdboom
Offline Send Email
Jun 15, 2004
6:11 pm
147
... I was thinking of the convolution with "kernels", which might help us in smoothing some images. Rather than adding a plethora of functions for various...
Christoph Dalitz
christofero2002
Offline Send Email
Jun 16, 2004
1:10 pm
148
... The second option is better, as it allows for non-square kernels. However, I think the most powerful option will be for image.convolve to take a FloatImage...
Michael Droettboom
mdboom
Offline Send Email
Jun 16, 2004
2:29 pm
149
... The typical C++ approach would be to overload the FloatImage constructor, so that you could write kernel = FloatImage(A) but this does not seem to be...
Christoph Dalitz
christofero2002
Offline Send Email
Jun 16, 2004
3:43 pm
150
... It's not impossible, but requires a little fiddleyness with variable length and default arguments, which would also add a little runtime overhead. It's...
Michael Droettboom
mdboom
Offline Send Email
Jun 16, 2004
5:19 pm
151
I've been looking at this whole Gamera animal and am wondering... The classifier goes through and guesses against the glyphs... Once enough training is...
home4church
Offline Send Email
Jun 16, 2004
11:33 pm
152
... Do the following with the classified glyph list: a) sort by offset_y and offset_x using the Python sort method with an appropriately defined comparison...
Christoph Dalitz
christofero2002
Offline Send Email
Jun 17, 2004
7:36 am
153
Thank you, Christoph. I agree with your response. Just one thing to add and one small correction... Transcribing a page of text turns out to be fairly...
Michael Droettboom
mdboom
Offline Send Email
Jun 17, 2004
11:04 am
154
... This reminds me to come back to our discussion about "confidence" (sorry if that becomes tiresome): Is there a way to get the class name of the majority...
Christoph Dalitz
christofero2002
Offline Send Email
Jun 17, 2004
12:12 pm
155
... The current behavior is that the first result is always the majority of k, *whether or not it has the highest average confidence*. To put it another way,...
Michael Droettboom
mdboom
Offline Send Email
Jun 17, 2004
12:25 pm
156
Thank you friends. I'm fairly good at Perl and PHP but am a bit lazy about trying to pick up Python. Sorry... I guess I'll need to roll up my sleeves and...
home4church
Offline Send Email
Jun 17, 2004
3:19 pm
157
Hallo, currently I am testing the rotateShear method for skew correction of our input documents, and have some questions about it. 1) Is there a way to choose...
Christoph Dalitz
christofero2002
Offline Send Email
Jun 21, 2004
10:03 am
158
All, There is a slew of additions to Gamera to announce: - convolution - arithmetic - improvements to draw.py - utilities to convert images to/from nested...
Michael Droettboom
mdboom
Offline Send Email
Jun 21, 2004
7:22 pm
159
All, It is my pleasure to announce that Robert Ferguson has joined our team at the Digital Knowledge Center. Robert has assisted with Gamera OS-X-related...
Michael Droettboom
mdboom
Offline Send Email
Jun 21, 2004
7:32 pm
160
Well team happy... I spent the weekend wrapping myself in Python to get a better feel of what's going on. I imported roman_text and it seems to be meeting with...
home4church
Offline Send Email
Jun 21, 2004
9:08 pm
161
... I'm away from a Gamera install at the moment, so I can't test this, but have you tried output.append(roman_text.make_string(section.lines)) ? Mike...
Michael Droettboom
mdboom
Offline Send Email
Jun 22, 2004
1:26 am
162
Forget my previous mail. With my friend "grep" I have found the solution: PyList_SET_ITEM(projlist, i, IntVector_to_python(result[i])); Christoph...
Christoph Dalitz
christofero2002
Offline Send Email
Jun 22, 2004
9:45 am
163
Hallo, I am trying to return a list of IntVector's from a plugin function. The usage in python should be something like: image.bla() # return value: ...
Christoph Dalitz
christofero2002
Offline Send Email
Jun 22, 2004
12:25 pm
164
Thank you Mike, That worked just fine... I had to remark out line 166 for it was creating errors... I then had to convert my training database to the unicode...
home4church
Offline Send Email
Jun 22, 2004
6:11 pm
165
In my script I am trying to execute the sequence generated from the Gamera GUI... """ import sys from gamera.core import * init_gamera() ...
home4church
Offline Send Email
Jun 22, 2004
7:35 pm
166
I'm not certain what might be going wrong. Are you certain that the image is unusable? Does it lead to any sort of exception (as opposed to warning)? I have...
Michael Droettboom
mdboom
Offline Send Email
Jun 22, 2004
7:55 pm
167
Thanks Michael, I'm not sure either... I ran it from a dos console and found that the script is actually crashing in roman_script.py... I'll need to ponder...
home4church
Offline Send Email
Jun 22, 2004
8:14 pm
168
I can run this code from the GUI and the image errors only show up in the dos console.... In the GUI I see the following errors: ERROR: Name not found: _SPLIT...
home4church
Offline Send Email
Jun 22, 2004
8:53 pm
Messages 139 - 168 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