???????e???????д???Щ??????????????и???????FindPic???????????Χ??????????????????????????????λ?á?
?????????Java?????????????????????
????????????
????????????????A??(????????????B)??
?????????A????????????B???磬????B?????????A????????
?????????????????B?????????????????????????????????в???4?????????????2??????
??????????????????Χ???????????B?????????????????????????????????????????????2??????
???????????????????????BufferedImage??????????????RGB???????????£???BufferedImage????int??????飺
1     /**
2      * ????BufferedImage?????RGB????
3      * @param bfImage
4      * @return
5      */
6     public static int[][] getImageGRB(BufferedImage bfImage) {
7         int width = bfImage.getWidth();
8         int height = bfImage.getHeight();
9         int[][] result = new int[height][width];
10         for (int h = 0; h < height; h++) {
11             for (int w = 0; w < width; w++) {
12                 //???getRGB(w?? h)?????????????ARGB????????????????????RGB???????????ARGB?????RGB????bufImg.getRGB(w?? h) & 0xFFFFFF??
13                 result[h][w] = bfImage.getRGB(w?? h) & 0xFFFFFF;
14             }
15         }
16         return result;
17     }
?????????????????RGB??????????????????????????????==Ч?????????????????????????0???????????????RGB??????????????