图片处理
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.20030614.tar.gz
(154.6 kB
view details)
Built Distribution
File details
Details for the file image_app-0.0.3.20030614.tar.gz
.
File metadata
- Download URL: image_app-0.0.3.20030614.tar.gz
- Upload date:
- Size: 154.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 254dc58aea441b32348f80e3a807177ea2897a33b1b0c55044bc6df73892ae2f |
|
MD5 | 4f1e6086b011c8581fbe3547ec0c2bf2 |
|
BLAKE2b-256 | 8a9d5f1b9d95e01681cf8cfc6e5d74ceb2acff9b0974496c093ecabaeb5693ff |
File details
Details for the file image_app-0.0.3.20030614-py3-none-any.whl
.
File metadata
- Download URL: image_app-0.0.3.20030614-py3-none-any.whl
- Upload date:
- Size: 156.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa81fc386ceb5fa9502f533d732223fdfb6da809508fe554f4daa38582fbe2c2 |
|
MD5 | 3ea2882667e806b29edd93a8fdf4ec58 |
|
BLAKE2b-256 | 61e9cfdf1f4eaeb27fd1943f116f0e2f234638f2bf90b64a4d582f20acdaedac |