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...
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...
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...
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...
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...
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? ... ...
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...
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....
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...
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...
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 ...
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...
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 ...
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...
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,...
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...
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',...
Gamera::ImageView<Gamera::OneBitImageData>* seems to be a pointer. You can call a method of a pointer using the '->' operator. For example: x->set( ... ) ...
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...
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...
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...
... 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 ...
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...
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...
Mike, Thanks for your help for kFill algorithm. it works now. Now i am actaully implementing another algorithm - White Rohrer binarization algorithm. In that i...