0

Image_1.jpg があります。Image_1.jpg から 2D 配列で画像ピクセル値を取得しました。2D 配列の最初の 8*8 ブロックの値を次のように設定しました。

16 , 16 , 16 , 16 , 16 , 16 , 16 , 16 , 
16 , 16 , 16 , 16 , 16 , 16 , 16 , 16 , 
16 , 16 , 16 , 16 , 16 , 16 , 16 , 16 , 
16 , 16 , 16 , 16 , 16 , 16 , 16 , 16 , 
16 , 16 , 16 , 16 , 16 , 16 , 16 , 16 , 
16 , 16 , 16 , 16 , 16 , 16 , 16 , 16 , 
16 , 16 , 16 , 16 , 16 , 16 , 16 , 16 , 
16 , 16 , 16 , 16 , 16 , 16 , 16 , 16 , 

画像を Img.jpg として構築します。もう一度、この Img.jpg 画像を 2D 配列で読み取り、最初の 8*8 ブロックを読み取ります。次の値を取得しました。

-16776690 , -16776690 , -16776432 , -16776176 , -16775922 , -16775927 , -16776190 , -16645120 , 
-16776944 , -16776688 , -16776432 , -16776176 , -16775922 , -16775925 , -16776188 , -16645376 , 
-16777198 , -16776940 , -16776940 , -16776684 , -16776430 , -16776434 , -16776697 , -16580096 , 
-16777196 , -16777196 , -16776939 , -16776683 , -16776428 , -16776432 , -16776695 , -16580350 , 
-16646124 , -16711660 , -16777195 , -16776937 , -16776683 , -16776686 , -16711413 , -16449532 , 
-16646126 , -16711662 , -16776940 , -16776940 , -16776940 , -16776944 , -16711413 , -16449532 , 
-16449523 , -16580594 , -16711664 , -16776944 , -16776944 , -16776947 , -16645881 , -16384000 , 
-16449529 , -16449527 , -16646133 , -16776693 , -16776695 , -16776442 , -16645632 , -16383744 ,

これらの値を 16 にしたいのですが、このために次のコードを書きました。どうすればよいですか?

 /*
     * To change this template, choose Tools | Templates
     * and open the template in the editor.
     */
    package testing;

    import java.awt.image.BufferedImage;
    import java.io.File;
    import javax.imageio.ImageIO;

    /**
     *
     * @author pratibha
     */
    public class ConstructImage{
        int[][] PixelArray;
        public ConstructImage(){
            try{

            BufferedImage bufferimage=ImageIO.read(new File("C:\\photo\\Modified\\image_1.jpg"));
            int height=bufferimage.getHeight();
            int width=bufferimage.getWidth();
            PixelArray=new int[width][height];
            for(int i=0;i<width;i++){
                for(int j=0;j<height;j++){
                    PixelArray[i][j]=bufferimage.getRGB(i, j);
                }
            }
            ///////create Image from this PixelArray

             for(int i=0;i<8;i++){
                for(int j=0;j<8;j++){
                    PixelArray[i][j]=16;
                }
            }
             for(int i=0;i<8;i++){
                for(int j=0;j<8;j++){
                  System.out.print(PixelArray[i][j]+" , ");
                }
                System.out.println("");
            }






            BufferedImage bufferImage2=new BufferedImage(width, height,BufferedImage.TYPE_INT_RGB);
              for(int x=0;x<width;x++){
                    for(int y=0;y<height;y++){
              bufferImage2.setRGB(x, y, PixelArray[x][y]);

                }
             }

             File outputfile = new File("C:\\photo\\Modified\\img.jpg");
             ImageIO.write(bufferImage2, "jpg", outputfile);
            ///////////////////////////////////////////////////////////////////
                  BufferedImage bufferimage1=ImageIO.read(new File("C:\\photo\\Modified\\img.jpg"));
            int height1=0;
            height1=bufferimage1.getHeight();
            int width1=0;
            width1=bufferimage1.getWidth();
            int[][] PixelArray1=new int[width1][height1];
            for(int i=0;i<width1;i++){
                for(int j=0;j<height1;j++){
                    PixelArray1[i][j]=bufferimage1.getRGB(i, j);
                }
            }
            ///////create Image from this PixelArray

             for(int i=0;i<8;i++){
                for(int j=0;j<8;j++){ 
                    System.out.print(PixelArray1[i][j]+" , ");
                }
                System.out.println();
            }
            System.out.println(Integer.toBinaryString(222));
            System.out.println(Integer.signum(93226268));;
            }
            catch(Exception ee){
                ee.printStackTrace();
            }
        }

        public static void main(String args[]){
            ConstructImage c=new ConstructImage();
        }
    }
4

1 に答える 1

1

Image値を直接設定したいintかどうかはわかりませんが...本当にやりたいのは「グレースケール値16」に設定することだと思います。実際に行っているのは、ピクセルを「赤0、緑0、青16」に設定することです。

まず、を作成しColor(16,16,16)てから呼び出しますgetRGB()

ところで、JPGは不可逆圧縮であるため、保存/読み込み時に値が完全に一致することは期待できません。代わりにPNGを使用することをお勧めします。

ちなみに、サードパーティライブラリのAPI要件を満たそうとしているのでない限りBufferedImage、配列コピーを作成するのではなく、クラスに直接アクセスすることをお勧めします。非圧縮の画像は非常にすぐに大きくなる可能性があり、メモリ使用量を不必要に2倍にすることでメモリが不足します。

于 2012-08-13T14:53:33.063 に答える