Comparing pixel arrays
Answered
- Need more info
- Answered
- Working on it
in
Programming Questions
•
3 years ago
- if (Arrays.equals(src.pixels, dest.pixels)) {
- // ...
- }
Would the above piece of code be a valid way of comparing the pixel arrays in two images? The reason I ask is because I'm comparing two pixel arrays in images that undergo heavy modification, but that I later attempt to reconstruct, and need to know when they're identical.
2