我需要找到特定于轮廓的坐标,如this image中所示。我能够绘制一个特定的轮廓(用红色突出显示),但.txt
文件给出了相同的坐标集,即使我正在改变轮廓。
import numpy as np
import cv2
im = cv2.imread("ceramic.bmp")
imgray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY)
ret,thresh = cv2.threshold(imgray,55,255,0)
_th,contours, hierarchy =
cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_NONE)
print" Number of contours detected %d.>"%len(contours)
cv2.drawContours(im,contours,55,(1,70,255)) #-1 fills it
area = cv2.contourArea(contours[55])
print (area)
cv2.imshow("Contours",im)
text_file = open("contour_list_55.txt", "w") ##### Write the
coordinates (x,y) of a contour in an txt file python
text_file.write( "%s"% contours)
text_file.close()
cv2.waitKey(0)
cv2.destroyAllWindows()`
答案 0 :(得分:0)
这是因为您要将所有轮廓都写入文件,而不仅仅是单个轮廓。
您正在绘制索引为55的轮廓:
area = cv2.contourArea(contours[55])
但您对.txt文件的命令是:
text_file.write( "%s"% contours)
应该是这样的:
text_file.write( "%s" % contours[55] )
即如果您想获得绘制的相同轮廓的坐标。
我还建议你在编程中遵循DRY(不要重复自己)的原则。如果你有一个常量(如55),你应该定义它并在整个代码中按名称使用它。例如:
import numpy as np
import cv2
THRESHOLD = 55
CONTOUR = 55
im = cv2.imread("ceramic.bmp")
imgray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY)
ret,thresh = cv2.threshold(imgray,THRESHOLD,255,0)
_th,contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_NONE)
print "Number of contours detected = %d" % len(contours)
cv2.drawContours(im,contours,CONTOUR,(1,70,255))
area = cv2.contourArea(contours[CONTOUR])
print (area)
cv2.imshow("Contours",im)
np.set_printoptions(threshold=np.inf)
coords = np.array2string(contours[CONTOUR])
open("contour_%d.txt" % CONTOUR, "w").write(coords)
cv2.waitKey(0)
cv2.destroyAllWindows()`
它会将坐标写入文件contour_55.txt
。如果你想改变另一个轮廓,你只需要改变常量轮廓。