任务说明:编写一个钱币定位系统,其不仅能够检测出输入图像中各个钱币的边缘,同时,还能给出各个钱币的圆心坐标与半径。
效果
代码实现
Canny边缘检测:
# Author: Ji Qiu (BUPT)
# filename: my_canny.py
import cv2
import numpy as np
class Canny:
def __init__(self, Guassian_kernal_size, img, HT_high_threshold, HT_low_threshold):
'''
:param Guassian_kernal_size: 高斯滤
2022-04-13 08:19:13
378KB
ann
ug
算法
1