如何使用OpenCV库将正片图像转换为负片图像?
将图像转换为负片的算法
获取每个像素的红绿蓝值
从255中减去每个颜色值,并将它们保存为新的颜色值。
从修改后的颜色创建新的像素值。
将新值设置为像素。
Java实现
使用ImageIO.read()方法读取所需的图像。
获取图像的高度和宽度。
使用嵌套for循环遍历图像中的每个像素。
使用getRGB()方法获取像素值。
通过将上面检索到的像素值作为参数,创建一个Color对象。
分别使用getRed()、getGreen()和getBlue()方法从颜色对象中获取红色、绿色、蓝色值。
根据算法计算新的红色、绿色和蓝色值。
通过将新的RGB值作为参数,创建一个新的Color对象。
获取像素
使用setRGB()方法设置新的像素值。
示例
import java.io.File; import java.io.IOException; import java.awt.Color; import java.awt.image.BufferedImage; import javax.imageio.ImageIO; public class Color2Negative { public static void main(String args[])throws IOException { //Reading the image File file= new File("D:\Images\car3.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(); //Subtracting RGB from 255 to convert into negative red = 255-red; green = 255-green; blue = 255-blue; //Creating new Color object color = new Color(red, green, blue); int newPixel = color.getRGB(); //Setting new Color object to the image img.setRGB(x, y, newPixel); } } //Saving the modified image file = new File("D:\Images\negative_image.jpg"); ImageIO.write(img, "jpg", file); System.out.println("Done..."); } }
输入
输出
广告