如何基于OpenCV&Python实现霍夫变换圆形检测

下面是基于OpenCV&Python实现霍夫变换圆形检测的完整攻略:

1. 什么是霍夫变换

霍夫变换(Hough Transform)是一种图像处理算法,其功能是能够从边缘检测结果中得到直线或圆的方程表达式,即通过边缘点构造直线或圆,并统计在不同参数下断言通过该参数的点的数量,从而得到边缘的位置. 针对圆形检测,霍夫变换算法可以方便地实现圆心的检测。

2. 利用OpenCV实现霍夫圆形检测

2.1 程序示例1

下面是一个简单的程序示例,使用了OpenCV库函数来检测圆形。

import cv2

# load the image and convert it to grayscale
image = cv2.imread('image.jpg')
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)

# define the range of radii to be detected
min_radius = 10
max_radius = 30

# apply the HoughCircles function to detect circles
circles = cv2.HoughCircles(gray, cv2.HOUGH_GRADIENT, 1.2, 100)

# ensure at least some circles were found
if circles is not None:
    # convert the (x, y) coordinates and radius of the circles to integers
    circles = np.round(circles[0, :]).astype("int")

    # loop over the (x, y) coordinates and radius of the circles
    for (x, y, r) in circles:
        # draw the circle in the output image and update the list of markers
        cv2.circle(image, (x, y), r, (0, 255, 0), 2)

    # show the output image
    cv2.imshow("output", image)
    cv2.waitKey(0)

在上面的程序中,cv2.HoughCircles函数可以直接进行圆形检测。其中,gray是输入图像的灰度图像,cv2.HOUGH_GRADIENT是圆形检测方法,1.2是圆形中心之间的最小距离,100是Canny边缘检测器的上阈值。

2.2 程序示例2

下面是一个更加详细的程序示例,使用了手动实现霍夫圆形检测算法。

import cv2
import numpy as np

# load the image and convert it to grayscale
image = cv2.imread('image.jpg')
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)

# apply edge detection (using Canny algorithm)
edges = cv2.Canny(gray, 50, 150)

# initialize accumulator (for the Hough transform)
accumulator = np.zeros((gray.shape[0], gray.shape[1], 30))

# loop through all edge pixels
for y in range(edges.shape[0]):
    for x in range(edges.shape[1]):
        if edges[y, x] == 255:  # if edge pixel
            # loop through a range of radii
            for r in range(10, 40):
                # for each radius, compute the center (x_,y_) of the circle
                for i in range(0, 360):
                    a = x - r * np.cos(i * np.pi / 180)
                    b = y - r * np.sin(i * np.pi / 180)
                    if a >= 0 and a < gray.shape[1] and b >= 0 and b < gray.shape[0]:
                        accumulator[int(b), int(a), r - 10] += 1

# get the (x,y,r) of the center and radius of each detected circle
circles = []
for y in range(gray.shape[0]):
    for x in range(gray.shape[1]):
        for r in range(0, 30):
            if accumulator[y, x, r] > 70:  # if enough edge support
                # add it to the list of detected circles
                circles.append((x, y, r + 10))

# loop through all detected circles and draw them on the output image
for (x, y, r) in circles:
    cv2.circle(image, (x, y), r, (0, 255, 0), 2)

# show the output image
cv2.imshow("output", image)
cv2.waitKey(0)

在上面的程序中,利用Canny算法对灰度图像进行了边缘检测。然后,程序自己实现了霍夫圆形检测算法,可以通过设定r的范围和阈值进行调整。最后,程序解析出检测到的圆的位置和半径,并在原图上画出圆。

本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:如何基于OpenCV&Python实现霍夫变换圆形检测 - Python技术站

(0)
上一篇 2023年5月18日
下一篇 2023年5月18日

相关文章

  • Python基于pandas爬取网页表格数据

    Python是一种流行的编程语言,pandas是Python中常用的数据处理库,可以方便地进行数据分析、清洗和处理等操作。本文将具体讲解如何使用Python和pandas来爬取网页表格数据。 准备工作 在使用Python和pandas进行网页表格数据爬取之前,需要先安装所需的相关库。可以使用以下命令来安装: pip install pandas pip in…

    python 2023年5月14日
    00
  • python提取字典key列表的方法

    要提取Python字典中的key列表,有多种方法可以使用。以下是一些常用的方法: 方法一: 使用keys()方法 您可以使用Python中的keys()方法返回字典中所有键的列表,如下所示: # 定义一个字典 my_dict = {‘name’: ‘Alice’, ‘age’: 25, ‘gender’: ‘female’, ‘no’: ‘123456789…

    python 2023年5月13日
    00
  • python编程学习使用管道Pipe编写优化代码

    Python编程学习使用管道(Pipe)编写优化代码 什么是管道(Pipe)? 管道,又称为管子,顾名思义就是一种管道的实现。它指的是将一个进程的输出通过一个管道的连接传递给另一个进程,第二个进程就可以读取到第一个进程的输出。这样就实现了数据在两个进程之间的传递,这是一种进程间通信的方式。 在Python中,内置了os库和subprocess库,它们提供了一…

    python 2023年5月14日
    00
  • 在dataframe两列日期相减并且得到具体的月数实例

    要在DataFrame两列日期相减并且得到具体的月数,可以使用 pandas 库中的 pd.to_datetime 函数和 dt 属性。 首先,使用 pd.to_datetime 将日期字符串转为 datetime 类型。然后,使用 dt 属性获取日期的年、月信息,并计算相差的月数。 示例一: 假设有一个 DataFrame,其中包含了两列日期,分别为 st…

    python 2023年6月2日
    00
  • Python接口测试get请求过程详解

    以下是关于“Python 接口测试 GET 请求过程详解”的完整攻略: Python 接口测试 GET 请求过程详解 在 Python 中,我们可以使用 requests 模块进行接口测试。其中,GET 请求是最常用的一种请求方式。以下是 Python 接口测试 GET 请求过程的详解。 发送 GET 请求 我们可以使用 requests 模块的 get()…

    python 2023年5月15日
    00
  • python中reversed与reverse的区别解析

    Python中reversed与reverse的区别解析 概述 在Python中,reversed和reverse都是用于将数据序列反转的方法,但它们有些微妙的区别。在本文中,我们将详细讲解它们的区别和使用方式。 reversed 方法 reversed是一个内置函数,它用于返回一个反转的迭代器对象,可以用于任何序列类型的数据。它在返回反转迭代器的同时,并没…

    python 2023年5月14日
    00
  • 基于PyQt5完成的PDF拆分功能

    下面是关于“基于PyQt5完成的PDF拆分功能”的完整攻略。 概述 PDF拆分功能是指将一个较大的PDF文件拆成多个小的PDF文件,拆分后的多个小PDF文件可以独立存在。这个功能在很多行业中都有广泛应用,比如办公、教育等。下面将介绍如何使用PyQt5实现PDF拆分功能。 环境搭建 在使用PyQt5完成PDF拆分功能之前,需要先搭建相应的环境。具体的步骤如下:…

    python 2023年6月13日
    00
  • 在双python下设置python3为默认的方法

    要在双 Python 下设置 Python 3 为默认 Python 版本,可以使用 update-alternatives 命令。此命令会在可选项列表中创建符号链接,通过这些链接可以轻松切换使用不同版本的 Python。 以下是具体步骤: 确认 Python3 已安装 首先请确认系统中已安装 Python3,可以在终端输入以下命令进行检查: python3…

    python 2023年5月20日
    00
合作推广
合作推广
分享本页
返回顶部