Pick major colors from image
Documentation:
Demo:
MajoCol
Requirements
Python 3.6+
Installation
$ pip3 install majocol
Example
from majocol import color, convert
# Using Pillow (Open local image)
from PIL import Image
image = Image.open(<IMAGE_PATH>)
image_ndarr = convert.pillow_to_rgb_ndarr(image)
colors = color.pick(image_ndarr, 3)
# Using opencv-python (Open local image)
import cv2
image = cv2.imread(<IMAGE_PATH>)
image_ndarr = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
colors = color.pick(image_ndarr, 3)
# Using requests (Fetch web image)
import requests
resp = requests.get(<IMAGE_URL>)
image_ndarr = convert.byte_to_rgb_ndarr(resp.content)
colors = color.pick(image_ndarr, 3)
— 🪄 —
MajoCol is licensed under the terms of the MIT license.
Release files for majocol 0.1.6
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| majocol-0.1.6.tar.gz | 3.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| majocol-0.1.6-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 7.6 kB
Release files / majocol-0.1.6.tar.gz
| Download URL | majocol-0.1.6.tar.gz |
|---|---|
| Size | 3.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
325df053bf935983e3e47b90d09b0d6662d0f749c90147ad2b292b5a12b230cd
|
|
BLAKE2b-256 checksum How to use checksums |
14307cec6b246708be9c545b9365d15e0e19e3acdc45f2f54ea5c54033ddfab7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.0.10 CPython/3.8.5 Linux/5.4.0-1025-azure
|
Release files / majocol-0.1.6-py3-none-any.whl
| Download URL | majocol-0.1.6-py3-none-any.whl |
|---|---|
| Size | 3.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
79fccd63ee47ae039244a354e751c389b5bf1faf879c97e37258a5662cfc7c1e
|
|
BLAKE2b-256 checksum How to use checksums |
82f9a3d15949b05e0bc188103ee3a27eb016b79f0688a81640ee2b6e15eb5fcb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.0.10 CPython/3.8.5 Linux/5.4.0-1025-azure
|