我想查找圖像中最大明亮區域中心的(x,y)座標。 這是示例圖像 http://postimg.org/image/id3k558bx/如何檢測明亮區域
Q
如何檢測明亮區域
-3
A
回答
-1
現在你改變了你的問題,並增加了一個示例圖像:
import scipy.ndimage as img
import matplotlib.pylab as plt
image = img.imread('threshold_Image.jpg', flatten=True)
image_thresh= image
threshold = 127 # half of the maximum - might want to vary it if your image is noisy etc.
image_thresh[image < threshold] = 0
labeled, num_objects = img.label(image_thresh)
slices = img.find_objects(labeled)
xcomlist, ycomlist = [], []
for peakslice in slices:
y, x = peakslice
xcom, ycom= img.measurements.center_of_mass(image[peakslice])
xcom += x.start
ycom += y.start
xcomlist.append(xcom)
ycomlist.append(ycom)
plt.imshow(image_thresh)
plt.plot(xcomlist, ycomlist, 'gx')
plt.show()
相關問題
- 1. 使用OpenCv檢測圖像中的矩形明亮區域
- 2. imagemagick檢測透明區域的座標
- 3. 檢測iphone區域
- 4. 如何在android中檢測開放區域的觸摸區域?
- 5. 檢測明亮和黑暗的圖像
- 6. 檢測閾值區域(S)
- 7. Android矩形區域檢測
- 8. iPhone - 觸摸區域檢測
- 9. Iphone檢測區域格式
- 10. Flash碰撞檢測區域
- 11. 地理區域檢測PHP
- 12. Android - 如何檢測自定義形狀按鈕點擊區域的透明度
- 13. Javascript方法來檢測不透明PNG的區域
- 14. Emacs區域語法高亮
- 15. 高亮區域完成
- 16. 不同亮度的區域
- 17. 如何避免虛假亮點檢測?
- 18. 如何檢測SVG區域的任何位置的顏色
- 19. php imagick,如何使區域透明
- 20. 檢測區域內的電話
- 21. 檢測點擊指定區域
- 22. symfony2:僞區域設置(自動)檢測
- 23. Python - 檢測區域的元素
- 24. 檢測和操縱CKEditor區域
- 25. MGRS/USNG-檢測區域更改
- 26. 基於地理位置檢測區域
- 27. 檢測網頁中的變化區域
- 28. Javascript OnChange檢測文本區域
- 29. Aforge.Net的運動檢測區域
- 30. Xonix遊戲:檢測適當區域
恐怕你得提供你正試圖在這裏完成的更多的例子。這個問題很難回答。 –