0
我已在標記圖像上使用regionsprops函數來獲取邊界框座標和大小。當我訪問邊界框座標時,我得到一個字符串爲「L」的元組。我不明白爲什麼會有一個字符串內的座標和大小。邊界框座標中的字符串
打印邊界框座標返回(0L, 393L, 29L, 463L)
,而如果返回(0, 393, 29, 463)
,它會使生活變得更容易。
我不能繪製邊界框,因爲元組不被視爲數字元組TypeError: points is not a numerical tuple
。我如何使用這個元組在圖像上繪製邊界框。
properties = skimage.measure.regionprops(labelled_image)
boundingbox = properties[0].bbox
print boundingbox # returns (0L, 393L, 29L, 463L)