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 1258 - 1287 of 1874   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1258
Dear List! I don't understand how the return values of the classify methods work, resp. I thought they would work differently: When I have a glyph that gets...
Michael Reuß
michael_reussde
Offline Send Email
Dec 4, 2006
12:48 pm
1259
Hallo, the method described in an earlier message http://tech.groups.yahoo.com/group/gamera-devel/message/495 for enabling command line editing in the python...
Christoph Dalitz
christofero2002
Offline Send Email
Jan 12, 2007
11:13 am
1260
Hello everybody, I'm about to start writing a software that should recognize the answers that children put on multiple-choice test sheets. The choices will be...
Andrea Spadaccini
lupino3_a
Offline Send Email
Jan 16, 2007
7:54 am
1261
On Tue, 16 Jan 2007 08:33:45 +0100 ... Welcome Andrea! Your task is definitely doable with Gamera. You will however need to write a lot of custom code. The...
Christoph Dalitz
christofero2002
Offline Send Email
Jan 16, 2007
9:01 am
1262
Ciao Christoph, ... Thanks! ... Well, it seems that there are some functions that can help me.. Great! Given the problem statement, do you think that gamera is...
Andrea Spadaccini
lupino3_a
Offline Send Email
Jan 16, 2007
9:39 am
1263
On Tue, 16 Jan 2007 10:37:16 +0100 ... I would not dare to make such a claim. What is "best" depends on your needs. I have found it to be the best tool in...
Christoph Dalitz
christofero2002
Offline Send Email
Jan 16, 2007
11:03 am
1264
Ciao Christoph, ... Wow, it's great! :) ... Thanks a lot. Do you think that, in order to accomplish my task, I'll have to write low-level C++ plugins? ... ...
Andrea Spadaccini
lupino3_a
Offline Send Email
Jan 16, 2007
11:29 am
1265
On Tue, 16 Jan 2007 12:30:44 +0100 ... Possibly not. Assuming that your objects of interest are at fixed positions all you need are the subimage function. For...
Christoph Dalitz
christofero2002
Offline Send Email
Jan 16, 2007
12:49 pm
1266
Ciao Christoph, ... Thanks for the precious info. I'll get into gamera as soon as I find some spare time. Have a nice day, -- [ Andrea Spadaccini - a.k.a....
Andrea Spadaccini
lupino3_a
Offline Send Email
Jan 16, 2007
1:33 pm
1267
Hallo, in a toolkit C++ plugin I need a particular function from the win32 API. Although I can copy the prototype from windows.h into the *.hpp file and can...
Christoph Dalitz
christofero2002
Offline Send Email
Jan 17, 2007
8:09 am
1268
I am new to Gamera. Can someone please tell me what the following error means. I am getting 4 errors all of the same nature as below but one each for...
u_kompella
Offline Send Email
Jan 22, 2007
5:26 pm
1269
What triggers this error? Please also send your platform, Python and wxPython versions. ... -- Michael Droettboom http://www.droettboom.com/...
Michael Droettboom
mdboom
Offline Send Email
Jan 22, 2007
5:38 pm
1270
Mike, I am using Linux, Python 2.3, wxPython2.4.2 I am implementing kFill(noise reduction algorithm) as a plugin.And that function calls some other helper ...
uma kompella
u_kompella
Offline Send Email
Jan 22, 2007
7:15 pm
1271
I'm still a little puzzled. Could you send your source code for kFill that triggers this? Does the message (from your first message) have a file and line...
Michael Droettboom
mdboom
Offline Send Email
Jan 22, 2007
7:47 pm
1272
Please find attached the source code for kFill and the corresponding python file. I have placed the source code at the end of "morphology.hpp" and the python ...
uma kompella
u_kompella
Offline Send Email
Jan 22, 2007
8:45 pm
1273
Thanks. That's quite helpful. It seems that the kFill function you defined in c++ requires three arguments, but the code generated by the plugin generator...
Michael Droettboom
mdboom
Offline Send Email
Jan 22, 2007
8:58 pm
1274
Mike, Please find attached the python file. Also is it ok to write the Python code for just one function (kFill) and not others? - Uma ... ...
uma kompella
u_kompella
Offline Send Email
Jan 22, 2007
10:26 pm
1275
It seems that the description is set to only receive one (non-self) argument args = Args([Int("K")]) Changing this to args = Args([Int("K"),...
Michael Droettboom
mdboom
Offline Send Email
Jan 23, 2007
12:43 pm
1276
Mike, I am still getting problems, but it is different one this time. Are these because of the image_copy call? the first one says T *Gamera::kFill(T&, int,...
uma kompella
u_kompella
Offline Send Email
Jan 23, 2007
8:53 pm
1277
Mike, Do you have any suggestions for this? Thanks, Uma ... 'kFill(Gamera::ConnectedComponent<Gamera::OneBitImageData>&, ... ...
uma kompella
u_kompella
Offline Send Email
Jan 24, 2007
7:07 pm
1278
The type of image returned from image_copy is not necessarily the type of the image passed in. Since you have T as the type for both places, it is ...
Michael Droettboom
mdboom
Offline Send Email
Jan 24, 2007
7:35 pm
1279
Mike, Sorry for troubling you. I am still not getting it to work properly.So i have the following question with regards to kFill. Can you please help. I want...
uma kompella
u_kompella
Offline Send Email
Jan 25, 2007
4:16 pm
1280
Mike, How can i call a 'set' method on a image_view? Following is giving error where 'x' is a image_view* type The Error says: request for member 'set' in 'x',...
uma kompella
u_kompella
Offline Send Email
Jan 29, 2007
4:51 pm
1281
Gamera::ImageView<Gamera::OneBitImageData>* seems to be a pointer. You can call a method of a pointer using the '->' operator. For example: x->set( ... ) ...
Michael Droettboom
mdboom
Offline Send Email
Jan 29, 2007
5:08 pm
1282
Thanks Mike. I will try. Also, I am a student of Dr. Tim Andersen from Boise State University. Actually Tim wanted me to ask you about the maintainence of...
uma kompella
u_kompella
Offline Send Email
Jan 29, 2007
5:36 pm
1283
Dear List, I'm desperately trying to compile (and run!) Gamera with a 2.5 Python and still can't get over the _ctype problem with the msvcr71 library. Has...
Michael.Reuss@...
michael_reussde
Offline Send Email
Feb 2, 2007
10:55 am
1284
On Fri, 02 Feb 2007 11:49:36 +0100 ... Have you tried different gcc versions? In case you succeed somehow, please post a howto. Why do you need Python 2.5? Is...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 2, 2007
11:17 am
1285
... Not yet, still using 3.4.4 ... Haha. But sure I will. Last thing I tried was editing the \cygwin\lib\gcc\i686-pc-cygwin\3.4.4\specs file and replacing all ...
Michael Reuß
michael_reussde
Offline Send Email
Feb 2, 2007
11:47 am
1286
On Fri, 02 Feb 2007 11:46:05 -0000 ... No need for Python 2.5. Just comment out the warnings in gui/matplotlib_support.py ... If you have a Linux box...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 2, 2007
12:33 pm
1287
Hallo, just fixed an error in the neighbor computation neighbor4x() used in erode_dilate() when the shape parameter i 1 (octagonal). The attached figures show...
Christoph Dalitz
christofero2002
Offline Send Email
Feb 2, 2007
2:00 pm
Messages 1258 - 1287 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