La méthode
cvtColor()
de la classe Imgproc peut convertir la couleur d'une image de l'une à l'autre. Cette méthode accepte trois paramètres :
src − Un objet Matrix représentant l'image source.
dst − représente l'objet Matrix de l'image cible.
code − Une valeur entière représentant la couleur de l'image cible.
Pour convertir une image HSV en RVB, vous devez transmettre Imgproc.COLOR_HSV2RGB comme troisième paramètre de la méthode.
import org.opencv.core.Core; import org.opencv.core.Mat; import org.opencv.imgcodecs.Imgcodecs; import org.opencv.imgproc.Imgproc; public class HSV2RGB { 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("D:\images\hsvimage.jpg"); //Creating the empty destination matrix Mat dst = new Mat(); //Converting the image to gray scale Imgproc.cvtColor(src, dst, Imgproc.COLOR_HSV2RGB); //Instantiating the Imagecodecs class Imgcodecs imageCodecs = new Imgcodecs(); //Writing the image imageCodecs.imwrite("D:\images\hsv2rgb.jpg", dst); System.out.println("Image Saved"); } }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!