image-app

图片处理


License
Other
Install
pip install image-app==0.0.2.2002617

Documentation

image_app

Documentation

The documentation is hosted at https://github.com/BingerYang/image_app

Installation

 pip install image_app

Usage

在一张图中找到连续相似的一片片长方向区域

# -*- coding: utf-8 -*- 
import os
from image_app import load_smooth_area
import cv2
path = os.path.abspath("1.jpg")
image = cv2.imread(path)
rects = load_smooth_area(image)
for rect in rects:
    cv2.rectangle(image, (rect[0], rect[1]), (rect[2], rect[3]), (120, 78, 255), 2)
cv2.imwrite('test.jpg', image)
cv2.imshow("test", image)
cv2.waitKey(3000)