Search found 19 matches

by dproc
2010-09-16T08:55:16-07:00
Forum: Users
Topic: Can someone edit an image for me?
Replies: 3
Views: 7312

Re: Can someone edit an image for me?

OK I sent you the XPM file. I converted it back to BMP to see if it worked and it seemed to be correct. Hope it works.
by dproc
2010-09-15T07:39:30-07:00
Forum: Users
Topic: need xy coordinate of blob center
Replies: 6
Views: 15165

Re: need xy coordinate of blob center

The key word here is "fast". The only way to do this precisely is by considering every single white pixel, as you say. If you're willing to sacrifice some precision, then you might try iterating the entire image only for every nth pixel (where n is an integer greater than 1), or you might ...
by dproc
2010-09-15T07:14:34-07:00
Forum: Users
Topic: build debug IM, no delegates for BMP, JPG
Replies: 2
Views: 5941

Re: build debug IM, no delegates for BMP, JPG

It ~looks~ like I am now up and running. I have no idea why, but to debug a Visual C++ (ver 8 ) application, apparently one should NOT define the _DEBUG preprocessor macro in the debug build of the app, Instead, define NDEBUG (as you would in a release build), but still specify no optimization and i...
by dproc
2010-09-14T21:20:58-07:00
Forum: Users
Topic: build debug IM, no delegates for BMP, JPG
Replies: 2
Views: 5941

build debug IM, no delegates for BMP, JPG

I wanted to use IM in my VC8 project. When I tried to debug my APP, the first thing I noticed was that IM seems to share resource handles or maybe heap pointers between the different run-time libraries, causing a crash in the library code. The only way I know how this might happen is if IM has some ...