Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

จะแปลงภาพสีเป็นภาพสีน้ำเงิน / เขียว / แดงโดยใช้ไลบรารี Java OpenCV ได้อย่างไร


The cvtColor() วิธีการของ Imgproc คลาสเปลี่ยน/แปลงสีของรูปภาพจากที่หนึ่งไปยังอีกที่หนึ่ง วิธีนี้ยอมรับพารามิเตอร์สามตัว -

  • src − วัตถุเมทริกซ์ที่แสดงแหล่งที่มา

  • วันที่ − วัตถุเมทริกซ์แสดงถึงปลายทาง

  • รหัส − ค่าจำนวนเต็มที่แสดงสีของภาพปลายทาง

ในการแปลงภาพสีเป็นโทนสีเทา คุณต้องผ่าน Imgproc.COLOR_RGB2BGR เป็นพารามิเตอร์ตัวที่สามของวิธีนี้

ตัวอย่าง

import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;
public class ColorToGrayscale {
   public static void main(String args[]) throws Exception {
      //Loading the OpenCV core library
      System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
      //Reading the image
      Mat src = Imgcodecs.imread("spiderman.jpg");
      //Creating the empty destination matrix
      Mat dst = new Mat();
      //Converting the image to grey scale
      Imgproc.cvtColor(src, dst, Imgproc.COLOR_RGB2GRAY);
      //Instantiating the Imagecodecs class
      Imgcodecs imageCodecs = new Imgcodecs();
      //Writing the image
      imageCodecs.imwrite("rgb2bgr.jpg", dst);
      System.out.println("Image Saved");
   }
}

อินพุต

จะแปลงภาพสีเป็นภาพสีน้ำเงิน / เขียว / แดงโดยใช้ไลบรารี Java OpenCV ได้อย่างไร

ผลลัพธ์

จะแปลงภาพสีเป็นภาพสีน้ำเงิน / เขียว / แดงโดยใช้ไลบรารี Java OpenCV ได้อย่างไร