栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

Python实现哈夫变换

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Python实现哈夫变换

import numpy as np
import cv2
def Read_raw(filename,w,h,m):
    #初始化image
    image=[]
    for i in range(m*h):
        image.append([])
        for j in range(w):
            image[i].append(255)
    #读取raw
    with open(filename,'rb') as f:
        data=f.read()
    #写入raw
    for i in range(m*h):
        for j in range(w):
            image[i][j]=data[i*w+j]
    print('读取文件{0}成功'.format(filename))
    return image

def Write_raw(filename,image):
    #将数组image转为bytes
    bt=bytearray()
    for i in range(len(image)):
        for j in range(len(image[i])):
            bt.append(image[i][j])
    #写入raw
    with open(filename,'wb') as f:
        f.write(bt)
    f.close()
    print('写入文件{0}成功'.format(filename))

def Hough(x,y):
    all_b=[]
    for t in range(180):
        temp_theta=np.pi/(t+1)
        all_b.append(0)
        for i in range(1):
            temp_b=y[i]-np.tan(temp_theta)*x[i]
            '''
            print('b=',temp_b)
            print('k=',round(np.tan(temp_theta),2))
            print('x=',x[i],'y=',y[i])
            '''
            
def threshold(filename):
    im=cv2.imread(filename,0)
    im=cv2.GaussianBlur(im,(5,5),0)
    canny=cv2.Canny(im,50,150)
    temp_x=[]
    temp_y=[]
    for i in range(len(canny)):
        for j in range(len(canny[i])):
            if canny[i][j]==255:
                temp_x.append(i)
                temp_y.append(j)
    return temp_x,temp_y

x,y=threshold('lena1.jpg')
Hough(x,y)

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/341838.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号