我是靠谱客的博主 敏感裙子,最近开发中收集的这篇文章主要介绍opencv轮廓周长原理_opencv 图像轮廓特征 图像面积,轮廓周长,外接矩形、最小外接矩形、最小外接圆、拟合椭圆...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

找出图像轮廓

contours, hierarchy = cv.findContours(thresh, 3, 2)

画出图像轮廓

cnt = contours[1]

cv.drawContours(img_color1, [cnt], 0, (0, 0, 255), 2)

计算轮廓面积

area = cv.contourArea(cnt) #cnt:轮廓

print(area)

计算轮廓周长

perimeter = cv.arcLength(cnt, True) #参数2:表示轮廓是否封闭

print(perimeter)

图像矩

M = cv.moments(cnt)

print(M)

print(M['m00']) # 轮廓面积

cx, cy = M['m10'] / M['m00'], M['m01'] / M['m00'] # 轮廓质心

print(cx, cy)

图像外接矩形

x, y, w, h = cv.boundingRect(cnt) # 外接矩形

cv.rectangle(img_color1, (x, y), (x + w, y + h), (0, 255, 0), 2)

最小外接矩形

rect = cv.minAreaRect(cnt) # 最小外接矩形

box = np.int0(cv.boxPoints(rect)) # 矩形的四个角点并取整

cv.drawContours(img_color1, [box], 0, (255, 0, 0), 2)

最小外接圆

(x, y), radius = cv.minEnclosingCircle(cnt)

(x, y, radius) = map(int, (x, y, radius)) # 这也是取整的一种方式噢

cv.circle(img_color2, (x, y), radius, (0, 0, 255), 2)

拟合椭圆

ellipse = cv.fitEllipse(cnt)

cv.ellipse(img_color2, ellipse, (0, 255, 0), 2)

实验:计算下图中数字1的面积、轮廓周长,绘制数字1的外接矩形、最小外接矩形、最小外接圆、拟合椭圆

import cv2 as cv

import numpy as np

# 载入手写数字图片

img = cv.imread('handwriting.jpg', 0)

# 将图像二值化

_, thresh = cv.threshold(img, 0, 255, cv.THRESH_BINARY_INV + cv.THRESH_OTSU)

contours, hierarchy = cv.findContours(thresh, 3, 2)

# 创建出两幅彩色图用于绘制

img_color1 = cv.cvtColor(img, cv.COLOR_GRAY2BGR)

img_color2 = np.copy(img_color1)

# 创建一幅彩色图像用作结果对比

img_color = np.copy(img_color1)

# 计算数字1的轮廓特征

cnt = contours[1]

cv.drawContours(img_color1, [cnt], 0, (0, 0, 255), 2)

# 1.轮廓面积

area = cv.contourArea(cnt) # 6289.5

print(area)

# 2.轮廓周长

perimeter = cv.arcLength(cnt, True) # 527.4041

print(perimeter)

# 3.图像矩

M = cv.moments(cnt)

print(M)

print(M['m00']) # 轮廓面积

cx, cy = M['m10'] / M['m00'], M['m01'] / M['m00'] # 轮廓质心

print(cx, cy)

# 4.图像外接矩形和最小外接矩形

x, y, w, h = cv.boundingRect(cnt) # 外接矩形

cv.rectangle(img_color1, (x, y), (x + w, y + h), (0, 255, 0), 2)

rect = cv.minAreaRect(cnt) # 最小外接矩形

box = np.int0(cv.boxPoints(rect)) # 矩形的四个角点并取整

cv.drawContours(img_color1, [box], 0, (255, 0, 0), 2)

# 5.最小外接圆

(x, y), radius = cv.minEnclosingCircle(cnt)

(x, y, radius) = map(int, (x, y, radius)) # 这也是取整的一种方式噢

cv.circle(img_color2, (x, y), radius, (0, 0, 255), 2)

# 6.拟合椭圆

ellipse = cv.fitEllipse(cnt)

cv.ellipse(img_color2, ellipse, (0, 255, 0), 2)

result = np.hstack((img_color,img_color1,img_color2))

cv.imshow('result',result)

cv.waitKey(0)

cv.destroyAllWindows()

实验结果

最后

以上就是敏感裙子为你收集整理的opencv轮廓周长原理_opencv 图像轮廓特征 图像面积,轮廓周长,外接矩形、最小外接矩形、最小外接圆、拟合椭圆...的全部内容,希望文章能够帮你解决opencv轮廓周长原理_opencv 图像轮廓特征 图像面积,轮廓周长,外接矩形、最小外接矩形、最小外接圆、拟合椭圆...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部