Python opencv图像投影

举报
Python新视野 发表于 2021/09/09 23:14:59 2021/09/09
【摘要】 题目描述 利用opencv或其他工具编写程序实现图像的水平投影、垂直投影。 实现过程 import cv2 from pathlib import Path gray_img = cv2.i...

题目描述
利用opencv或其他工具编写程序实现图像的水平投影、垂直投影。


实现过程

import cv2  
from pathlib import Path

gray_img = cv2.imread(str(Path(Path.cwd().parent, 'test.png')), 0)
cv2.imshow('img1', gray_img)

# 水平投影
_, thresh1 = cv2.threshold(gray_img, 130, 255, cv2.THRESH_BINARY)    # 阈值分割,得到二值图
high, width = thresh1.shape    # 返回高和宽
# 初始化一个跟图像高一样长度的数组,用于记录每一行的黑点个数
arr1 = [0 for n in range(0, high)] 
for row in range(0, high):    # 遍历每行
    for column in range(0, width):    # 遍历每列
        if  thresh1[row, column] == 0:    # 判断该点是否为黑点,0代表黑点
            arr1[row] += 1    # 该行的计数器加一
            thresh1[row, column] = 255    # 将其改为白点,即等于255         
for row  in range(0, high):    # 遍历每一行
    for column in range(0, arr1[row]):    # 从该行应该变黑的最左边的点开始向最右边的点设置黑点
        thresh1[row, column] = 0    # 设置黑点
cv2.imshow('img2', thresh1)

# 垂直投影
_, thresh2 = cv2.threshold(gray_img, 130, 255, cv2.THRESH_BINARY)
high, width = thresh2.shape    # 返回高和宽
# 初始化一个跟图像宽一样长度的数组,用于记录每一列的黑点个数
arr2 = [0 for n in range(0, width)]
for column in range(0, width):    # 遍历每一列 
    for row in range(0, high):    # 遍历每一行
        if  thresh2[row, column] == 0:    # 判断该点是否为黑点,0代表是黑点
            arr2[column] += 1     # 该列的计数器加1
            thresh2[row, column] = 255    # 记录完后将其变为白色,即等于255    
for column in range(0, width):    # 遍历每一列
    for row in range(high - arr2[column], high):    # 从该列应该变黑的最顶部的开始向最底部设为黑点
        thresh2[row, column] = 0    # 设为黑点        
cv2.imshow('img3', thresh2)

cv2.waitKey(0)  
cv2.destroyAllWindows()

  
 

运行结果
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

文章来源: blog.csdn.net,作者:Dream丶Killer,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/qq_43965708/article/details/115206424

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。