我正在加载BufferedImage并根据xy位置获取像素的RGB值。 之后我想创建一个只包含黑色像素的ArrayList。 我试图创建列表:
List<Integer> blackpixels = new ArrayList<Integer>();
但是我在声明列表的行中收到此错误:
类型列表不是通用的;它不能用参数
参数化这是我的完整代码:
import java.awt.Color;
import java.awt.List;
import java.awt.image.BufferedImage;
import java.util.*;
public class ImageTest {
public static BufferedImage Threshold(BufferedImage img) {
int height = img.getHeight();
int width = img.getWidth();
BufferedImage finalImage = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
int r = 0;
int g = 0;
int b = 0;
List<Integer> blackpixels = new ArrayList<Integer>();
for (int x = 0; x < width; x++) {
// System.out.println("Row: " + x);
try {
for (int y = 0; y < height; y++) {
//Get RGB values of pixels
int rgb = img.getRGB(x, y);
r = ImageTest.getRed(rgb);
g = ImageTest.getGreen(rgb);
b = ImageTest.getBlue(rgb);
finalImage.setRGB(x,y,ImageTest.mixColor(r, g,b));
System.out.println(r);
}
}
catch (Exception e) {
e.getMessage();
}
}
return finalImage;
}
private static int mixColor(int red, int g, int b) {
return red<<16|g<<8|b;
}
public static int getRed(int rgb) {
return (rgb & 0x00ff0000) >> 16;
}
public static int getGreen(int rgb) {
return (rgb & 0x0000ff00) >> 8;
}
public static int getBlue(int rgb) {
return (rgb & 0x000000ff) >> 0;
}
}
答案 0 :(得分:4)
您收到的错误是,您尝试创建的List
来自java.awt.List
而不是java.util.List
。如果您不打算使用java.awt.List
,只需删除
import java.awt.List;
您已经使用import java.util.*;
导入了正确的类,因此在删除上述句子后,它应该可以正常运行。