我一直在使用多边形类,并尝试将多边形内的像素值设置为透明,或者如果可能的话将它们全部删除,但是当我试图将值存储为 RGB 时,我遇到了一些困难int 值并且不知道如何通过此方法使像素透明/删除。
除此之外,我还想做同样的事情,但将像素保留在多边形内部并尽可能删除外部的像素,以便只留下多边形内包含的像素。我之前已经搜索过这个,但无济于事。
我确实尝试为此创建一个 SSCCE,以便任何花时间提供帮助的人更容易使用和查看,但是作为我正在创建的一个更大的程序的一部分,事实证明这需要一些时间,但是有一次我有一个工作来更好地证明这个问题,我将编辑这篇文章。
感谢任何人花时间帮助我解决这个问题
下面我有一些代码用于我目前用来分割已指定多边形中包含的像素。这与我将多边形外的像素设置为透明的方式非常相似,仅使用 if 语句参数交换以删除图像的一部分并返回 newImage 而不是保存图像内容,但是它可以完美地工作当我这样做以保存多边形中包含的像素时,由于某种原因它不会保存。
public void saveSegment(int tabNum, BufferedImage img) {
segmentation = new GUI.Segmentation();
Polygon p = new Polygon();
Color pixel;
p = createPolygon(segmentation);
int height = img.getHeight();
int width = img.getWidth();
newImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
//loop through the image to fill the 2d array up with the segmented pixels
for(int y = 0; y < height; y++) {
for(int x = 0; x < width; x++) {
//If the pixel is inside polygon
if(p.contains(x, y) == true) {
pixel = new Color(img.getRGB(x, y));
//set pixel equal to the RGB value of the pixel being looked at
int r = pixel.getRed(); // red component 0...255
int g = pixel.getGreen(); // green component 0...255
int b = pixel.getBlue(); // blue component 0...255
int a = pixel.getAlpha(); // alpha (transparency) component 0...255
int col = (a << 24) | (r << 16) | (g << 8) | b;
newImage.setRGB(x, y, col);
}
else {
pixel = new Color(img.getRGB(x, y));
int a = 0; // alpha (transparency) component 0...255
int col = (a << 24);
newImage.setRGB(x, y, col);
}
}
}
try {
//then save as image once all in correct order
ImageIO.write(newImage, "bmp", new File("saved-Segment.bmp"));
JOptionPane.showMessageDialog(null, "New image saved successfully");
} catch (IOException e) {
e.printStackTrace();
}
}