zoukankan      html  css  js  c++  java
  • OpenCV-Python 图片简单处理 & 拼接对比

    import cv2
    import numpy as np
    
    img = cv2.imread("Resources/The Legend of Zelda.jpg")
    kernel = np.ones((5, 5), np.uint8)  # 卷积核
    
    # 颜色空间转换,转换成灰度图(注意是BGR而不是RBG)
    imgGray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
    # 平滑处理,高斯模糊, 高斯核的宽和高只能是奇数
    imgBlur = cv2.GaussianBlur(imgGray, (5, 5), 0)
    # 边缘检测, 实际也是采用了高斯模糊去除噪音并设置梯度阈值进行过滤
    imgCanny = cv2.Canny(img, 150, 200)
    # 膨胀,可以适当增加迭代次数
    imgDilated = cv2.dilate(imgCanny, kernel, iterations=1)
    # 侵蚀
    imgEroded = cv2.erode(imgDilated, kernel, iterations=1)
    
    # 缩小到0.2倍并拼接
    imgStack = stackImages(0.2, [[img, imgGray, imgBlur],
                                 [imgCanny, imgDilated, imgEroded]])
    cv2.imshow("Image Stack", imgStack)
    
    cv2.waitKey(0)
    

      

    其中stackImage函数的定义为

    def stackImages(scale, imgArray):
        '''
        图像堆栈,可缩放,按列表排列,不受颜色通道限制
        '''
        rows = len(imgArray)
        cols = len(imgArray[0])
        rowsAvailable = isinstance(imgArray[0], list)
        width = imgArray[0][0].shape[1]
        height = imgArray[0][0].shape[0]
        if rowsAvailable:
            for x in range(0, rows):
                for y in range(0, cols):
                    if imgArray[x][y].shape[:2] == imgArray[0][0].shape[:2]:
                        imgArray[x][y] = cv2.resize(imgArray[x][y], (0, 0), None, scale, scale)
                    else:
                        imgArray[x][y] = cv2.resize(imgArray[x][y], (imgArray[0][0].shape[1], imgArray[0][0].shape[0]),
                                                    None, scale, scale)
                    if len(imgArray[x][y].shape) == 2:
                        imgArray[x][y] = cv2.cvtColor(imgArray[x][y], cv2.COLOR_GRAY2BGR)
            imageBlank = np.zeros((height, width, 3), np.uint8)
            hor = [imageBlank]*rows
            hor_con = [imageBlank]*rows
            for x in range(0, rows):
                hor[x] = np.hstack(imgArray[x])
            ver = np.vstack(hor)
        else:
            for x in range(0, rows):
                if imgArray[x].shape[:2] == imgArray[0].shape[:2]:
                    imgArray[x] = cv2.resize(imgArray[x], (0, 0), None, scale, scale)
                else:
                    imgArray[x] = cv2.resize(imgArray[x], (imgArray[0].shape[1], imgArray[0].shape[0]), None,scale, scale)
                if len(imgArray[x].shape) == 2:
                    imgArray[x] = cv2.cvtColor(imgArray[x], cv2.COLOR_GRAY2BGR)
            hor = np.hstack(imgArray)
            ver = hor
        return ver
    

      

    封装了numpy中的vstack和hstack,方便使用

    效果:

    更多图像处理可参考官方文档:https://docs.opencv.org/master/d2/d96/tutorial_py_table_of_contents_imgproc.html

  • 相关阅读:
    idea中yml文件变成text样式并且没有提示
    挂载redhat镜像创建本地yum源
    Windows环境下Oracle数据库的自动备份脚本
    Oracle存储过程锁表
    DDL和客户端ip监控
    Linux 单实例oracle安装步骤
    Linux常用命令
    Linux常用目录
    oracle基础知识及语法
    Linux下Oracle新建用户并且将已有的数据dmp文件导入到新建的用户下的操作流程
  • 原文地址:https://www.cnblogs.com/yl-xy/p/13379562.html
Copyright © 2011-2022 走看看