| """ |
| Vision Core — the single source of truth for image operations. |
| |
| Every provider that needs to decode, resize, convert, hash, or analyze |
| an image calls these functions instead of reimplementing them. This |
| guarantees: |
| |
| 1. Single decode path (no double-decoding of the same bytes). |
| 2. Single resize policy (consistent max_dim, interpolation). |
| 3. Single hashing implementation (cache keys always match). |
| 4. Single color-conversion path (BGR <-> Gray <-> RGB). |
| 5. Single perceptual-hash implementation (pHash, dHash, aHash, wHash). |
| |
| This module is dependency-light: only numpy + cv2 + Pillow (already |
| required by the platform). No external services, no model downloads. |
| """ |
|
|
| from cores.vision.decode import ( |
| bytes_to_numpy, |
| base64_to_numpy, |
| numpy_to_base64, |
| numpy_to_bytes, |
| url_to_bytes, |
| url_to_numpy, |
| sniff_format, |
| ) |
| from cores.vision.geometry import ( |
| BBox, |
| crop_region, |
| resize_with_aspect, |
| clamp_box, |
| boxes_iou, |
| ) |
| from cores.vision.color import ( |
| to_gray, |
| to_rgb, |
| to_bgr, |
| guess_color_profile, |
| dominant_colors, |
| ) |
| from cores.vision.hashing import ( |
| sha256_bytes, |
| sha256_image, |
| phash, |
| dhash, |
| ahash, |
| whash, |
| hamming_distance, |
| ) |
| from cores.vision.quality import ( |
| brightness, |
| contrast, |
| sharpness, |
| noise_level, |
| quality_score, |
| ) |
| from cores.vision.drawing import draw_boxes |
| from cores.vision.yolo import letterbox, nms, xywh2xyxy, scale_boxes |
|
|
| __all__ = [ |
| |
| "bytes_to_numpy", "base64_to_numpy", "numpy_to_base64", "numpy_to_bytes", |
| "url_to_bytes", "url_to_numpy", "sniff_format", |
| |
| "BBox", "crop_region", "resize_with_aspect", "clamp_box", "boxes_iou", |
| |
| "to_gray", "to_rgb", "to_bgr", "guess_color_profile", "dominant_colors", |
| |
| "sha256_bytes", "sha256_image", "phash", "dhash", "ahash", "whash", |
| "hamming_distance", |
| |
| "brightness", "contrast", "sharpness", "noise_level", "quality_score", |
| |
| "draw_boxes", |
| |
| "letterbox", "nms", "xywh2xyxy", "scale_boxes", |
| ] |
|
|