Hallo, I am currently writing a C++ plugin function which calls the plugin function PyObject* least_squares_fit_xy(const PointVector* points) which builds its...
On Mon, 3 Apr 2006 14:34:06 +0200 ... Just to close this thread: Yes, the PyObject* must be freed. The correct way to do so is by calling Py_DECREF(po); ...
Hallo Robert, currently I am using Gamera in an undergraduate course at our university and we have stumbled over two missing points in the Gamera Howto on...
Hallo Robert, the draw_marker plugin function in gamera (cvs 2006-02-02) does not check the boundaries when the marker style is 3 (filled rectangle). Attached...
Hallo, at the moment I have a hard time understanding whether and how it is possible to modify ConnectedComponents as returned by cc_analysis. I have figured...
... The times when I've needed to do this, I've just made a copy of the image into a regular-old one-bit image and then modified as necessary. Certainly less...
Hi, I was trying to compile GAMERA 3 on Windows through Cygwin 1.5.19-4. The gcc version is 3.4.4-1. I also installed gcc-mingw packages. When I compile it...
Hi, I was trying to compile GAMERA 3 on Windows through Cygwin 1.5.19-4. The gcc version is 3.4.4-1. I also installed gcc-mingw packages. When I compile it...
Do you have g++ installed? Last time I installed Cygwin, this was not a default. Try to compile something really simple on the command line, i.e: g++ main.cpp...
Hi Rob, Oh, this might be the problem, I just found that this version of Cygwin only ships with Python 2.4.1. I'll try to use the 'pexport' approach and get...
Hi , I noticed that a cvs access problem was raised and resolved a few days ago. Now when I tried to get to the cvs using pserver, I was asked to input cvs...
Hi, I finally built Cygwin on my lab machine (WinXP SP1) with Cygwin 1.5.16, an older version from 2005-5-31, using Cygwin Python 2.4.1, Cygwin gcc 3.3.3. It...
Hi, I finally built Cygwin on my lab machine (WinXP SP1) with Cygwin 1.5.16, an older version from 2005-5-31, using Cygwin Python 2.4.1, Cygwin gcc 3.3.3. It...
On Tue, 9 May 2006 17:51:30 -0400 ... What do you mean exactly? The PATH variable has nothing to do with headers or libs. The include directories are...
... Hmm... on Cygwin, Gamera is supposed to use it's own internal copies of libpng/libz etc. What was the exact error message produced? Did you build with...
... From: Michael Droettboom To: gamera-devel@yahoogroups.com Sent: Wednesday, May 10, 2006 7:33 AM Subject: Re: [gamera-devel] build GAMREA with Cygwin On...
It looks like you're trying to compile with the Cygwin version of Python. I haven't done that in a while (as in years), and I'm not sure it will work. Try...
Hi, I'm new to this group and to Gamera. Actually, Mike's suggestion won't work, or at least it hasn't for me. I have been trying to compile with the native...
I would suggest searching/asking on the appropriate Python mailing list for this, as this sounds like a general problem when building Python extensions with...
Hello, I just installed Gamera on Linux Debian, but i am unable to start the GUI. ... When I try to import the modules manually from python, I get the same ......
It might be useful to try to load the C++ compiled object directly. (The "friendly" error message you're seeing here is actually hiding the real one.) What...
The line: from gamera import gameracore should load the compiled C++ module, but obviously it's failing. That's the root cause of the error you're seeing. I...