English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

needed for image comparisns for bitwise/ pixel-by-pixel comparisn

2006-06-13 21:38:04 · 1 answers · asked by Manya 1 in Computers & Internet Programming & Design

1 answers

Bitwise comparisons of the in-memory representations will be difficult, and maybe not especially meaningful. Pixel by pixel comparisons should be possible, however.

.Net uses the classes inheriting from Image to load and store image data during a run of a managed assembly. Of particular interest will be the Bitmap class, which lets you get information on a pixel-by-pixel basis through the GetPixel method. Java is similar. You'll want to look at the BufferedImage class, and the getRGB methods.

Good luck!

2006-06-13 22:00:00 · answer #1 · answered by Ryan 4 · 0 0

fedest.com, questions and answers