gpt4 book ai didi

image - 是否可以使用 opencv 在同一窗口上显示黑白和彩色图像?

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

是否可以使用 opencv 库在同一个窗口中显示黑白和彩色图像?我怎样才能将这两个图像显示在同一个窗口中?

最佳答案

fraxel的回答已经解决了老cv界面的问题。我想使用 cv2 接口(interface)来展示它,只是为了了解这在新的 cv2 模块中有多容易。 (可能对 future 的访客有帮助)。下面是代码:

import cv2
import numpy as np

im = cv2.imread('kick.jpg')
img = cv2.imread('kick.jpg',0)

# Convert grayscale image to 3-channel image,so that they can be stacked together
imgc = cv2.cvtColor(img,cv2.COLOR_GRAY2BGR)
both = np.hstack((im,imgc))

cv2.imshow('imgc',both)
cv2.waitKey(0)
cv2.destroyAllWindows()

下面是我得到的输出:

enter image description here

关于image - 是否可以使用 opencv 在同一窗口上显示黑白和彩色图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11067962/

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