OpenCV查找图像中的轮廓并且展示

1、查找轮廓随机用不同的颜色画出

python 复制代码
import cv2
import numpy as np


def get_contour_colors(num_contours):
    # 定义颜色表 (BGR 格式)
    colors = [
        (255, 0, 0),
        (255, 50, 0),
        (255, 100, 0),
        (255, 150, 0),
        (255, 200, 0),
        (255, 255, 0),
        (200, 255, 0),
        (150, 255, 0),
        (100, 255, 0),
        (50, 255, 0),
        (0, 255, 0),
        (0, 255, 50),
        (0, 255, 100),
        (0, 255, 150),
        (0, 255, 200),
        (0, 255, 255),
        (0, 200, 255),
        (0, 150, 255),
        (0, 100, 255),
        (0, 50, 255),
        (0, 0, 255),
    ]
    # 返回一个颜色表
    return [colors[i % len(colors)] for i in range(num_contours)]


def fill_contours(img, contours):
    # 创建空白的图像,用来画轮廓表
    filled_img = np.zeros_like(img)
    num_contours = len(contours)
    # 颜色表
    colors = get_contour_colors(num_contours)

    for i, contour in enumerate(contours):
        cv2.drawContours(filled_img, [contour], -1, colors[i], -1)

    return filled_img


# 读取原图,原图是RGB图
img = cv2.imread('1.png')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

# 查找轮廓
contours, _ = cv2.findContours(gray, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_NONE)

# 填充轮廓
filled_img = fill_contours(img, contours)


cv2.imshow('Filled Contours', filled_img)
cv2.waitKey(0)
cv2.destroyAllWindows()

原图:

输出:

2、查找轮廓按大小用不同的颜色画出

python 复制代码
import cv2
import numpy as np



def get_color(k, start_color=(255, 0, 0), end_color=(0, 0, 255)):
    out_color = []   # 输出的颜色
    for i in range(3):
        single_color = int((end_color[i] - start_color[i]) * k + start_color[i])
        out_color.append(single_color)
    for j in range(3):
        if out_color[j] > 255:
            out_color[j] = 255
        elif out_color[j] < 0:
            out_color[j] = 0

    return out_color


def fill_contours(img, contours):
    # 创建空白的图像,用来画轮廓表
    filled_img = np.zeros_like(img)
    # num_contours = len(contours)

    dims = []   # 所有的轮廓的尺寸
    for contour in contours:
        rect = cv2.minAreaRect(contour)  # 获取最小外接矩形
        dia = rect[1][0] if rect[1][0] <= rect[1][1] else rect[1][1]  # 计算轮廓的最短尺寸,并获取直径
        dims.append(dia)
    max_dim = max(dims)  # 最大尺寸
    min_dim = min(dims)  # 最小尺寸
    range_dim = max_dim - min_dim   # 尺寸范围

    for i, contour in enumerate(contours):
        rect = cv2.minAreaRect(contour)  # 获取最小外接矩形
        dia = rect[1][0] if rect[1][0] <= rect[1][1] else rect[1][1]  # 计算轮廓的最短尺寸,并获取直径
        k = (dia - min_dim) / range_dim    # 尺寸比例
        color = get_color(k)    # 获取颜色
        cv2.drawContours(filled_img, [contour], -1, color, -1)

    return filled_img


# 读取原图,原图是RGB图
img = cv2.imread('1.png')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

# 查找轮廓
contours, _ = cv2.findContours(gray, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_NONE)

# 填充轮廓
filled_img = fill_contours(img, contours)

cv2.imshow('Filled Contours', filled_img)
cv2.waitKey(0)
cv2.destroyAllWindows()

输出:

相关推荐
EQUINOX137 分钟前
3b1b线性代数基础
人工智能·线性代数·机器学习
Kacey Huang1 小时前
YOLOv1、YOLOv2、YOLOv3目标检测算法原理与实战第十三天|YOLOv3实战、安装Typora
人工智能·算法·yolo·目标检测·计算机视觉
加德霍克1 小时前
【机器学习】使用scikit-learn中的KNN包实现对鸢尾花数据集或者自定义数据集的的预测
人工智能·python·学习·机器学习·作业
Light Gao1 小时前
AI赋能未来:Agent能力与AI中间件平台对行业的深远影响
人工智能·ai·中间件·大模型
matlabgoodboy1 小时前
代码编写java代做matlab程序代编Python接单c++代写web系统设计
java·python·matlab
l1x1n01 小时前
No.37 笔记 | Python面向对象编程学习笔记:探索代码世界的奇妙之旅
笔记·python·学习
骇客野人1 小时前
【人工智能】循环神经网络学习
人工智能·rnn·学习
wanfeng_091 小时前
视频m3u8形式播放 -- python and html
python·html·video·hls·m3u8
阿俊仔(摸鱼版)2 小时前
Python 常用运维模块之OS模块篇
运维·开发语言·python·云服务器
lly_csdn1232 小时前
【Image Captioning】DynRefer
python·深度学习·ai·图像分类·多模态·字幕生成·属性识别