Link to home
Start Free TrialLog in
Avatar of MagicianH
MagicianH

asked on

Image processing SDK in C++

I need an image processing SDK which can do:

in a black on white image - find all the pixel connection elements (black groups).
let me pass on each with runlengths & so on.

I didn't find graphics kit with this option.
Avatar of krishnaprathab
krishnaprathab

Hi,

Check out this one, this is close to your requirment.

http://web.cps.msu.edu/~stockman/HS97/coloring.cc

Thanks,
KP
Can you please close this question.

Thanks,
KP
Avatar of MagicianH

ASKER

Yes, This file answers the algorithm problem.

I hoped there would be class code which has a container
that keep all the "blobs" for simple retrieval of them.

If there isn't any - I will have to code it but I think it will
take too much time...

Do you know a class with a container of class blobs ?
Hi,

I have never come across one. Iam doing some research on image manipulation but never had a chance to see such a code.

Thanks,
KP
This code is very basic if you want to code an OCR program. each "blob" of pixel can be a letter or digit...
ASKER CERTIFIED SOLUTION
Avatar of krishnaprathab
krishnaprathab

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you !