Re: [JAVA2D] Java2D and system color profile

2002-03-18 Thread Igor B
Thank you for your answer Chet, yet my question was about color profiles in general, not regarding palettes. I.e. it is possible to configure Windows to adapt/compensate for some specifics of the hardware (screens/printers) by altering the colors in some way. It is called creating a color

[JAVA2D] Neural Networks for ocr

2002-03-18 Thread Scott Wong
Hi, I am trying to use a neural network to recognize all upppercase letters of the alphabet, the 10 numerical digits (0-9) and neglect any other symbol not related to the above sets from a 2d image. I guess the questions that I want to ask are: 1. How do I determine the # of initial and

Re: [JAVA2D] Render awt components to offscreen image

2002-03-18 Thread Dmitri Trembovetski
Hello Paco, you can render the contents of a component into an image by doing something like this: Component comp; comp = ... // create your component, set it's size, etc BufferedImage bi = new BufferedImage(comp.getWidth(), comp.getHeight(),