gpt4 book ai didi

python - 如何在使用 imwrite 进行阈值处理后将图像保存在 opencv 中

转载 作者:太空宇宙 更新时间:2023-11-03 22:39:09 25 4
gpt4 key购买 nike

我尝试在阈值处理后使用 cv2.imwrite 保存图像,但它不保存图像。下面是我正在使用的代码:

import necessary packages

ap = argparse.ArgumentParser()

ap.add_argument("-i", "--image", required = True,
help = "Path to the image to be thresholded")

ap.add_argument("-t", "--threshold", type = int, default = 128,
help = "Threshold value")

args = vars(ap.parse_args())

image = cv2.imread(args["image"])

gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)

methods = [("THRESH_BINARY", cv2.THRESH_BINARY)]

for (threshName, threshMethod) in methods:

(T, thresh) = cv2.threshold(gray, args["threshold"], 255, threshMethod)

cv2.imshow(threshName, thresh)

cv2.waitKey(0)

cv2.imwrite(gray, args["image"])

最佳答案

我想你想保存脱粒图像。 cv2.imwrite(args["image"], thresh) 应该在 for 循环内。

关于python - 如何在使用 imwrite 进行阈值处理后将图像保存在 opencv 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55803244/

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