gpt4 book ai didi

c++ - 像素距离取决于轮廓

转载 作者:行者123 更新时间:2023-11-28 01:32:33 26 4
gpt4 key购买 nike

我在 opencv 中有一个二进制图像,其中显示了一个对象的轮廓。我的老板告诉我,OpenCV 中有一个函数可以测量图像的所有像素与轮廓之间的最小距离,有人能告诉我那个函数是什么吗?。或者是否有一个内核可用于对该图像执行卷积?

想知道我的目标是什么:introducir la descripción de la imagen aquí

谢谢

最佳答案

我认为是 cv2.distanceTransform 来计算与轮廓的距离。

distanceTransform(...)
distanceTransform(src, distanceType, maskSize[, dst[, dstType]]) -> dst
. @overload
. @param src 8-bit, single-channel (binary) source image.
. @param dst Output image with calculated distances. It is a 8-bit or 32-bit floating-point,
. single-channel image of the same size as src .
. @param distanceType Type of distance, see #DistanceTypes
. @param maskSize Size of the distance transform mask, see #DistanceTransformMasks. In case of the
. #DIST_L1 or #DIST_C distance type, the parameter is forced to 3 because a \f$3\times 3\f$ mask gives
. the same result as \f$5\times 5\f$ or any larger aperture.
. @param dstType Type of output image. It can be CV_8U or CV_32F. Type CV_8U can be used only for
. the first variant of the function and distanceType == #DIST_L1.

这里有一个简单的例子(在 python 中):

import numpy as np
import matplotlib.pyplot as plt

img = np.zeros((400, 800), np.uint8)
cv2.circle(img, (300, 200), 100, (255,0,0), 3, cv2.LINE_AA)
cv2.circle(img, (500, 200), 100, (255,0,0), 3, cv2.LINE_AA)
img = 255 - img
#cv2.imshow("x", img);cv2.waitKey();cv2.destroyAllWindows()
dist = cv2.distanceTransform(img, cv2.DIST_L2, maskSize=0)
plt.subplot(211)
plt.imshow(img, cmap="gray")
plt.subplot(212)
plt.imshow(dist)
plt.show()

enter image description here

这里有一个 C++ 例子:

Contour width measurement along its entire lendth

关于c++ - 像素距离取决于轮廓,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50832327/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com