Image Processing using Qt
Hi!. Does any body know any image processing library based on Qt?, I need to implement several algorithms like thresholding, smoothing, equalization, and several segmentation techniques, mainly on grayscale 8 bit images.
If anybody knows anything that could help me to save time, I'd appreciate it a lot. Thanks.
Re: Image Processing using Qt
You want to implement or use those algorithms? If the former, what do you need such library for? QImage itself should be sufficient...
Re: Image Processing using Qt
Quote:
Originally Posted by
danielperaza
Hi!. Does any body know any image processing library based on Qt?, I need to implement several algorithms like thresholding, smoothing, equalization, and several segmentation techniques, mainly on grayscale 8 bit images.
If anybody knows anything that could help me to save time, I'd appreciate it a lot. Thanks.
Well, as wysota said, if you want to implment those techniques yourself (not too difficult for the first three), then you can just use QImage and bits() (or pixel() if you dont mind the performance hit).
But if you want to get real work done you really want to use OpenCV, which does most of these things for you.