Python utilities for archive, config and zero-shot detection
Project description
klygo
Thư viện Python hỗ trợ xử lý ZIP, quản lý dataset YOLO, đọc/ghi cấu hình và ảnh, nhận diện vật thể zero-shot, crop và trực quan hóa kết quả.
Cài đặt
git clone https://github.com/IchigoMazone/klygo.git
cd klygo
uv sync
Các package
klygo.archive: nén, giải nén, tìm kiếm, kiểm tra, chỉnh sửa, gộp và chia ZIP.klygo.datasets: partition, repartition, unpartition, merge, split và remap dataset YOLO.klygo.io: đọc/ghi YAML, JSON, TOML; đọc ảnh bằng PIL hoặc OpenCV.klygo.models: nhận diện zero-shot trên ảnh, thư mục ảnh và video.klygo.visualize: hiển thị, vẽ bbox, crop, đọc crop và thống kê dataset.
Sử dụng nhanh
Archive
import klygo.archive as ar
ar.compress("dataset", "dataset.zip", overwrite=True)
ar.extract("dataset.zip", output_dir="extracted", overwrite=True)
files = ar.search("dataset.zip", "images/*.jpg")
Dataset YOLO
import klygo.datasets as ds
ds.partition(
source="raw_dataset.zip",
target="dataset",
ratios=(0.8, 0.1, 0.1),
overwrite=True,
)
info = ds.get_dataset_info("dataset")
print(info)
Đọc cấu hình và ảnh
import klygo.io as io
config = io.Config("config.yaml").read()
pil_images = io.read_images("dataset/images", backend="pil")
opencv_images = io.read_images("dataset/images", backend="opencv")
Model
from klygo.models import Model
model = Model()
predictions = model.predict(
source="dataset/images",
prompt="car. person.",
)
detected_frames = model.detect(
source="traffic.mp4",
output_path="detected.mp4",
annotated_dir="annotated",
dataset_dir="generated_dataset",
prompt="car. person.",
)
detection_results = model.detect(
source="dataset/images",
prompt="car. person.",
metadata=True,
)
crop_results = model.crop(
source="traffic.mp4",
target="crops",
prompt="car. person.",
)
Visualize
import klygo.visualize as vis
grid = vis.read_crops("crops") # lưới 5 x 5 mặc định
vis.show_image(grid, title="Detected objects")
saved_detections = vis.read_detections("annotated")
Quy ước đường dẫn
source: file hoặc thư mục đầu vào.*_path: đường dẫn file.*_dir: đường dẫn thư mục.target: file hoặc thư mục đầu ra linh hoạt.
Tài liệu chi tiết
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
klygo-2.0.2.tar.gz
(2.9 MB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file klygo-2.0.2.tar.gz.
File metadata
- Download URL: klygo-2.0.2.tar.gz
- Upload date:
- Size: 2.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee98212f2b99339b1e68df4ac3dcec2c8610ee18b60cbe17c4e6f8c39d15c3d4
|
|
| MD5 |
4dbafe67c7eb620f3d50228a2cdc057d
|
|
| BLAKE2b-256 |
6351a5b9b7b5028314d712658e2a99bc4c807a0899039ead3cd5df354caaeede
|
File details
Details for the file klygo-2.0.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: klygo-2.0.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1b3f623a5875f250dc5f06dda28e600f6b8d4c45b16a496e18a9fcad6d1f768
|
|
| MD5 |
b243641d72673ceffc08b449c97b0935
|
|
| BLAKE2b-256 |
3bea38405dbde3014258a93421fd2aae5b9facbeaf527c8ee8ff495538e59dcb
|