0

我对 python/opencv 有点陌生,我有点困惑。我想我的问题与opencv无关,只是python。所以我将在没有 opencv 的情况下解释它:我有一个 3-dim 列表:

for contour in contours:
    contour = cv2.approxPolyDP(contour,10,True)
    print "--------------------------"
    print contour
    print "--------------------------"

我明白了:

--------------------------
[[[168 377]]

 [[250 404]]]
--------------------------
--------------------------
[[[332 153]]

 [[419 216]]]
--------------------------

但是,我真正想要的是:

--------------------------
[[[168 377]]

 [[250 404]]

 [[332 153]]

 [[419 216]]]
--------------------------

当我通过 oy 自己构建列表时,它也可以正常工作,它应该是这样的:

>>> np.array([[[168,377],[250,404],[332,153],[419,216]]])
array([[[168, 377],
        [250, 404],
        [332, 153],
        [419, 216]]])

我知道...尺寸不一样。我不知道为什么opencv可以处理这个!?(这些是cv2.findContours 任何人都知道如何重新排列此列表的轮廓?或者对此有用的文档。谢谢 und Greets :)

4

2 回答 2

0
res = []
for contour in contours:
    contour = cv2.approxPolyDP(contour,10,True)
    print "--------------------------"
    print contour
    print "--------------------------"
    res.append(contour)
print np.vstack(res)
于 2013-10-02T06:23:37.030 回答
0
for i in range(2):
    tempcnts = cv2.findContours(gray, cv2.RETR_EXTERNAL,
                            cv2.CHAIN_APPROX_SIMPLE)
    tempcnts = imutils.grab_contours(tempcnts)
    # tempcnts = cv2.approxPolyDP(tempcnts, 10, True)
    print("--------------------------")
    print(tempcnts)
    print("--------------------------")
    if i==0:
        cnts=tempcnts
    else:
        cnts[0]=np.append(cnts[0], tempcnts[0],0)
print("--------------------------")
print("--------------------------")
print("--------------------------")
print(cnts)
print("--------------------------")
print("--------------------------")
print("--------------------------")
于 2020-10-31T22:46:02.103 回答