Pantry tracker app with: - FastAPI backend + Vue 3 SPA frontend - SQLite via circuitforge-core (migrations 001-005) - Inventory CRUD, barcode scan, receipt OCR pipeline - Expiry prediction (deterministic + LLM fallback) - CF-core tier system integration - Cloud session support (menagerie)
10 lines
No EOL
485 B
Python
10 lines
No EOL
485 B
Python
# app/services/image_preprocessing/__init__.py
|
|
"""
|
|
Image preprocessing services for Kiwi.
|
|
Contains functions for image enhancement, format conversion, and perspective correction.
|
|
"""
|
|
|
|
from app.services.image_preprocessing.format_conversion import convert_to_standard_format, extract_metadata
|
|
from app.services.image_preprocessing.enhancement import enhance_image, correct_perspective
|
|
|
|
__all__ = ["convert_to_standard_format", "extract_metadata", "enhance_image", "correct_perspective"] |