gpt4 book ai didi

python - 如何旋转图像以获得非空像素?

转载 作者:行者123 更新时间:2023-12-05 09:03:57 25 4
gpt4 key购买 nike

在我下面链接的图像中,我需要获取这个旋转矩形中的所有黄色/绿色像素并去除蓝色背景,以便矩形的轴与 x 轴和 y 轴对齐。

我正在使用 numpy,但不知道我应该做什么。

我在这个 drive 上传了数组万一有人想使用实际的数组

Original Image print

提前感谢您的帮助。

最佳答案

我使用了与 user2640045 相同的图像,但方法不同。

import numpy as np
import cv2

# load and convert image to grayscale
img = cv2.imread('image.png')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

# binarize image
threshold, binarized_img = cv2.threshold(gray, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU)

# find the largest contour
contours, hierarchy = cv2.findContours(binarized_img, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
c = max(contours, key = cv2.contourArea)

# get size of the rotated rectangle
center, size, angle = cv2.minAreaRect(c)

# get size of the image
h, w, *_ = img.shape

# create a rotation matrix and rotate the image
M = cv2.getRotationMatrix2D(center, angle, 1.0)
rotated_img = cv2.warpAffine(img, M, (w, h))

# crop the image
pad_x = int((w - size[0]) / 2)
pad_y = int((h - size[1]) / 2)

cropped_img = rotated_img[pad_y : pad_y + int(size[1]), pad_x : pad_x + int(size[0]), :]

结果:

enter image description here

关于python - 如何旋转图像以获得非空像素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69365863/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com