Imgproc 类的 applyColorMap() 方法将指定的颜色映射应用于给定图像。此方法接受三个参数 -
两个代表源图像和目标图像的 Mat 对象。
表示要应用的颜色图类型的整数变量。
您可以将以下任意值作为颜色图值传递给此方法。
COLORMAP_AUTUMN、COLORMAP_BONE、COLORMAP_COOL、COLORMAP_HOT、 COLORMAP_HSV、COLORMAP_JET、COLORMAP_OCEAN、COLORMAP_PARULA、 COLORMAP_PINK、COLORMAP_RAINBOW、COLORMAP_SPRING、 COLORMAP_SUMMER、COLORMAP_WINTER。
import org.opencv.core.Core; import org.opencv.core.Mat; import org.opencv.imgcodecs.Imgcodecs; import org.opencv.imgproc.Imgproc; public class CustomColorMaps { public static void main(String args[]) { // Loading the OpenCV core library System.loadLibrary(Core.NATIVE_LIBRARY_NAME); // Reading the Image from the file and storing it in to a Matrix object String file ="D:\images\cat.jpg"; Mat src = Imgcodecs.imread(file); // Creating an empty matrix to store the result Mat dst = new Mat(); // Applying color map to an image Imgproc.applyColorMap(src, dst, Imgproc. COLORMAP_PINK); // Writing the image Imgcodecs.imwrite("D:\images\color_map.jpg", dst); System.out.println("Image processed"); } }
执行时,上述程序生成以下输出 -
以上是如何使用OpenCV在Java中创建自定义颜色映射?的详细内容。更多信息请关注PHP中文网其他相关文章!