图片处理
Project description
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)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
image_app-0.0.3.20041619.tar.gz
(153.6 kB
view details)
Built Distribution
File details
Details for the file image_app-0.0.3.20041619.tar.gz
.
File metadata
- Download URL: image_app-0.0.3.20041619.tar.gz
- Upload date:
- Size: 153.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c7bfb8f0da1aadd52e647b12ae57ea679135c64ef0ac4a8051500a68aa25264 |
|
MD5 | df6c1c869a41dd0fc3ed1278eccdd374 |
|
BLAKE2b-256 | 69e8a36a716c0515719b2d9e908d014454703aece9986c729bee652c7c98437a |
File details
Details for the file image_app-0.0.3.20041619-py3-none-any.whl
.
File metadata
- Download URL: image_app-0.0.3.20041619-py3-none-any.whl
- Upload date:
- Size: 152.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9670ca346ab121b298bc7bea14a1d2f296d96754a28ead2c03c242a66660b4ef |
|
MD5 | 4c0f72b7e1281f292ff6a6a698209790 |
|
BLAKE2b-256 | 81df564f8d5eb49e22aa8daa8e7e385f822e75facb81bcc40a9c9fc73e54d0cb |