カラー画像をグレースケールに変換します。
各ピクセルの赤、緑、青の値を取得します。
これら 3 色の平均を取得します。
RGB 値を平均値に置き換えます。
変更した色に基づいて新しいピクセル値を作成します。
新しい値をピクセルに設定します。
import java.io.File; import java.io.IOException; import java.awt.Color; import java.awt.image.BufferedImage; import javax.imageio.ImageIO; public class Color2Grey { public static void main(String args[])throws IOException { //Reading the image File file= new File("D:\Images\car.jpg"); BufferedImage img = ImageIO.read(file); for (int y = 0; y < img.getHeight(); y++) { for (int x = 0; x < img.getWidth(); x++) { //Retrieving the values of a pixel int pixel = img.getRGB(x,y); //Creating a Color object from pixel value Color color = new Color(pixel, true); //Retrieving the R G B values int red = color.getRed(); int green = color.getGreen(); int blue = color.getBlue(); //Finding the average of the red green blue values int average = (red+green+blue)/3; //Creating new Color object color = new Color(average, average, average); //Setting new Color object to the image img.setRGB(x, y, color.getRGB()); } } //Saving the modified image file = new File("D:\Images\grey_image.jpg"); ImageIO.write(img, "jpg", file); System.out.println("Done..."); } }
##出力
以上がJava OpenCVで、メソッドを使用せずに画像をグレースケールに変換しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。