| Crates.io | imspect |
| lib.rs | imspect |
| version | 0.1.0 |
| created_at | 2024-11-12 10:30:13.902939+00 |
| updated_at | 2024-11-12 10:30:13.902939+00 |
| description | Explore features of images during debug session |
| homepage | |
| repository | https://github.com/SEBROVATER/imspect |
| max_upload_size | |
| id | 1444722 |
| size | 149,044 |
A small GUI application for feature engineering in computer vision projects.
numpy images with data type uint8
(common data type for OpenCV).numpy arrays).pip install imspect for Python devs
cargo install imspect for Rust devs (CLI only)
from imspect import imspect
import numpy as np
# examples of acceptable images
img1 = np.empty((60, 100, 3), dtype=np.uint8)
img2 = np.zeros((60, 100), dtype=np.uint8) + 255
imspect(img1 , img2)
imspect path/to/image.png path/to/array.npy