【py】提取掩膜的矩形区域

 

import cv2
import numpy as np
import matplotlib.pyplot as plt
image = cv2.imread('1.png')

img = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
ret, thresh = cv2.threshold(img, 230, 255, cv2.THRESH_BINARY_INV)
contours, hierarchy = cv2.findContours(thresh, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)

for c in contours:
    # 找到边界坐标
    x, y, w, h = cv2.boundingRect(c)  # 计算点集最外面的矩形边界
    if x==0 and y==0 and w==img.shape[1] and h==img.shape[0]:
        continue
    # cv2.rectangle(image, (x, y), (x+w, y+h), (0, 255, 0), 5)

    # # 找面积最小的矩形
    # rect = cv2.minAreaRect(c)
    # # 得到最小矩形的坐标
    # box = cv2.boxPoints(rect)
    # # 标准化坐标到整数
    # box = np.int0(box)
    # # 画出边界
    # cv2.drawContours(image, [box], 0, (0, 0, 255), 5)
img1=image[y:y+h,x:x+w]
plt.imshow(img1)
plt.axis('off')
cv2.imwrite("img_1.jpg", img1)

# 绘制 loss 曲线
# train_loss = [0.5, 0.4, 0.3, 0.2, 0.1]
# plt.plot(train_loss, label='train loss')
# plt.legend()
# plt.xlabel('Epoch')# plt.ylabel('Loss')
# plt.show()

相关推荐

  1. 什么是图像中(Mask),如何使用

    2024-02-22 16:02:03       67 阅读
  2. ActiViz中提取感兴趣区域

    2024-02-22 16:02:03       38 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-02-22 16:02:03       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-02-22 16:02:03       101 阅读
  3. 在Django里面运行非项目文件

    2024-02-22 16:02:03       82 阅读
  4. Python语言-面向对象

    2024-02-22 16:02:03       91 阅读

热门阅读

  1. python opencv图像模糊

    2024-02-22 16:02:03       47 阅读
  2. ThreadLocal内存如何释放

    2024-02-22 16:02:03       64 阅读
  3. excel合并多列单元格并保留数据

    2024-02-22 16:02:03       65 阅读
  4. 数据库三范式

    2024-02-22 16:02:03       54 阅读
  5. 项目总结(ALL)

    2024-02-22 16:02:03       61 阅读
  6. Rust 安装

    2024-02-22 16:02:03       52 阅读
  7. IP分片重组功能的模拟实现

    2024-02-22 16:02:03       48 阅读