我不確定從哪一個開始,但是有沒有一種方法可以使用Java按行掃描特定顏色的圖像,並通過所有的位置和ArrayList?在java中掃描特定顏色的圖像
0
A
回答
2
你能嗎?是。這是如何:
ArrayList<Point> list = new ArrayList<Point>();
BufferedImage bi= ImageIO.read(img); //Reads in the image
//Color you are searching for
int color= 0xFF00FF00; //Green in this example
for (int x=0;x<width;x++)
for (int y=0;y<height;y++)
if(bi.getRGB(x,y)==color)
list.add(new Point(x,y));
+0
好的,簡單的解決方案 – 2013-05-12 19:40:57
+0
很高興喜歡它 – Jason 2013-05-12 19:43:05
0
嘗試使用PixelGrabber
。它接受Image
或ImageProducer
。
下面是改編自文檔的例子:
public void handleSinglePixel(int x, int y, int pixel) {
int alpha = (pixel >> 24) & 0xff;
int red = (pixel >> 16) & 0xff;
int green = (pixel >> 8) & 0xff;
int blue = (pixel ) & 0xff;
// Deal with the pixel as necessary...
}
public void handlePixels(Image img, int x, int y, int w, int h) {
int[] pixels = new int[w * h];
PixelGrabber pg = new PixelGrabber(img, x, y, w, h, pixels, 0, w);
try {
pg.grabPixels();
} catch (InterruptedException e) {
System.err.println("interrupted waiting for pixels!");
return;
}
if ((pg.getStatus() & ImageObserver.ABORT) != 0) {
System.err.println("image fetch aborted or errored");
return;
}
for (int j = 0; j < h; j++) {
for (int i = 0; i < w; i++) {
handleSinglePixel(x+i, y+j, pixels[j * w + i]);
}
}
}
在你的情況,你會:
public void handleSinglePixel(int x, int y, int pixel) {
int target = 0xFFABCDEF; // or whatever
if (pixel == target) {
myArrayList.add(new java.awt.Point(x, y));
}
}
相關問題
- 1. 在java中掃描某個特定像素顏色的圖像
- 2. 如何在java中掃描特定顏色/圖像的屏幕?
- 3. C#圖像掃描像素顏色
- 4. 在java中掃描圖像熱圖
- 5. iphone - 掃描完成圖像的像素顏色
- 6. 掃描一個圖像的某種顏色存在
- 7. 最快的方式來掃描特定顏色的gtexture?
- 8. 掃描檢測物體顏色在圖像
- 9. 顏色掃描屏幕
- 10. 更改圖像中的特定顏色
- 11. 掃描圖像的某些顏色,轉換爲整數陣列
- 12. 掃描特定圖像的圖像,限制範圍
- 13. 刪除圖像中的所有特定顏色(顏色範圍)?
- 14. 用另一種顏色替換圖像中的特定顏色
- 15. 使用掃描儀掃描圖像的Java庫
- 16. 掃描圖像並將其保存在特定文件夾中
- 17. iPod相機掃描相似的顏色
- 18. 掃描特定rowkey的Hbase
- 19. 如何像掃描圖像一樣調整彩色圖像
- 20. 掃描圖像像素
- 21. 掃描圖像像素
- 22. 如何找出圖像中的「特定像素的顏色」?
- 23. 如何在圖像圖中爲NA分配特定顏色
- 24. 替換圖像中的特定顏色像素
- 25. 如何查找圖像中特定顏色的像素數量?
- 26. ActionScript:掃描圖像的其他圖像
- 27. java圖像顏色公式
- 28. Java更改圖像顏色
- 29. 在asp.net中掃描文檔和圖像
- 30. 在ListView中添加掃描圖像
另請參見[平滑鋸齒狀路徑](http://stackoverflow.com/questions/7218309/smoothing-a-jagged-path)。 – 2013-05-13 04:19:47