image processing and stuff
Project description
image2layout_computer_vision
An image processing module for some computer vision tasks (public module for image2layout)
Package Page: pypi
Features:
- Text Detection and Recognition (OCR)
- Color extraction (background and main foreground)
Installations
Install with python
/conda
[Linux]
- (Optional) Conda
curl https://repo.anaconda.com/archive/Anaconda3-2023.03-1-Linux-x86_64.sh -o ~/conda.sh
bash ~/conda.sh -b -f -p /opt/conda
rm ~/conda.sh
conda init --all --dry-run --verbose
conda create -n cv python=3.10 -y
conda activate cv
- Python libraries (python>=3.8)
# python -m pip install 'torch>=2.0' torchvision torchaudio
python -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
python -m pip install datasets transformers scikit-learn
python -m pip install --upgrade datasets transformers scikit-learn Pillow numpy pandas
python -m pip install paddleocr paddlepaddle
python -m pip install --upgrade image2layout-computer-vision
Install with docker
OUTDATED - update in progress
sudo docker build --tag cv -f Dockerfile_cpu .
sudo docker run -it -p 0.0.0.0:8000:8000 -p 0.0.0.0:8001:8001 -v $(pwd):/app cv bash
From inside container
cd deployment
conda activate cv
python api_serve.py -n CV -p 8000
Usage
- Run this python code to pre-download model weights
from image2layout_computer_vision import model_dispatch_layout
model_dispatch_layout._load()
- Recognize texts
import image2layout_computer_vision as icv
# 2 lists of dicts with keys [text, box, score]
data_merged, data_raw = icv.detect_text_full('path/to/image.png')
- Extract colors
import image2layout_computer_vision as icv
color_bg, color_fg = icv.extract_colors('path/to/image.png')
Build
(for building and uploading this package)
python -m pip install --upgrade pip
python -m pip install --upgrade build twine "keyring<19.0"
rm -rf dist
python -m build
python -m twine upload dist/* --verbose
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
Built Distribution
Close
Hashes for image2layout_computer_vision-0.1.4.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3d27fe70296f1999ca6fff874e7fb96e4f88ebfa243ed8daffb9ee7a2d225ec |
|
MD5 | 9971c9b44f241155db0df524f04666d8 |
|
BLAKE2b-256 | 540daa9f86c22f3461324cc9ea3fdb0f28b790deac0cd3c128395d7e6e13e91e |
Close
Hashes for image2layout_computer_vision-0.1.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6441e1f01a58d244b0957280cacb0e7c93681d6e281c1eb87e2e68f35c8e7f2f |
|
MD5 | 8030a47a82a212f5fade23c2ce979e64 |
|
BLAKE2b-256 | 24b99e787c841f983f827c88fc475d3acf15399f73f6d119a43f965c9296f6ab |