[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.tools.jdt] Re: Image Processing

thirdfront a Ãcrit :
Hi,
I have a scanned handwritten text.
I need to segment it into lines and words.
I need to know whether here is any Image processing toolkit in Eclipse or not. If yes how to download.\


Or Atleast I need to know how to represent a black and whit(gray scale image) iin a matrix form in java.

from http://java.sun.com/j2se/1.4.2/docs/api/java/awt/image/BufferedImage.html


TYPE_BYTE_GRAY could do it (256 level of gray, from black to white) but for performance reason, you might to take a regular RGB image...

HTH