Python 求(不规则)多边形的面积 通用办法(已知多边形顶点的坐标)
程序员文章站
2022-03-30 13:09:17
...
# -*- coding: UTF-8 -*-
import cv2
import numpy as np
image = cv2.imread('img0.jpg') # (这里读入的图的尺寸要大于你的多边形)
polygon = np.array([[[2, 2], [6, 2], [6, 6], [2, 6]]], dtype=np.int32) # 这里是多边形的顶点坐标
im = np.zeros(image.shape[:2], dtype="uint8") # 获取图像的维度: (h,w)=iamge.shape[:2]
polygon_mask = cv2.fillPoly(im, polygon, 255)
area = np.sum(np.greater(polygon_mask, 0))
print (area)
结果 表示 面积为25,实际这里我们的多边形就是拿正方形来举例的
C:\Users\JulianYang\Anaconda2\python.exe C:/helloWorld/python/test6.py 25 Process finished with exit code 0