0
A
回答
1
2
public int[] searchForColor(BufferedImage bi, int searchColor)
{
for (int x = 0; x < bi.getWidth(); ++x)
for (int y = 0; y < bi.getHeight(); ++y)
{
if ((bi.getRGB(x, y) & 0x00FFFFFF) == searchColor)
return new int[]{x, y};
}
}
用法:
BufferedImage bi = takeScreenShot();
int searchColor = 0x2D5E83; // A random color
int[] coordinate = searchForColor(bi, searchColor);
int x = coordinate[0];
int y = coordinate[1];
相關問題
- 1. 獲取X Y座標w.r.t圖像
- 2. 獲取X和Y像素座標,當遍歷HTML5畫布getImageData
- 3. 從鼠標的緩衝圖像中獲取像素RGB X和Y的位置
- 4. 計數像素座標x和y
- 5. Android:獲取視圖的x,y座標
- 6. 如何獲取JButton的(x,y)座標
- 7. 獲取UIButton的x和y座標
- 8. 獲取HTML5中的x和y座標
- 9. Android:獲取TextView的X和Y座標?
- 10. 獲取縮放圖像像素的X,Y座標 - KineticJs/HTML5 Canvas圖像
- 11. 計算從像素座標cm(釐米)的x和y座標
- 12. 提取給定座標內的像素
- 13. 提取X,Y從圖像座標
- 14. 相處SVG路徑點的y座標給定的x座標
- 15. 從CvPoint獲取X Y座標
- 16. 如何獲取x,y座標
- 17. Java獲取x和y座標
- 18. 在ImageView touch上獲取X/Y座標
- 19. 使用TapGestureRecognizer獲取座標x和y
- 20. 獲取X和Y座標onClick
- 21. 從列表中獲取(x,y)座標
- 22. 獲取X和Y座標視圖
- 23. 如何從圖像中獲取像素的x,y座標顏色?
- 24. 獲取div元素的X和Y座標
- 25. 如何獲取網頁中元素的x,y座標?
- 26. 從標準X,Y座標獲取等距網格座標
- 27. 使用X座標和Y座標定位元素
- 28. 找到SVG圖像中是否存在給定(x,y)座標?
- 29. 如何在Android中獲取(x,y)圖像的座標?
- 30. 如何獲取顯示圖像的(x,y)座標?
你想第一像素的給定RGB的位置,如果我得到它的權利? –
checkt [this](http://stackoverflow.com/questions/1604319/getting-pixel-data-from-an-image-using-java)問題 – PTBG
這取決於你如何存儲圖像。例如,如果您將它作爲二維數組,您只需查看它就可以收集匹配的像素索引。 – zeller