Files
tfm_ainventory/venv/lib/python3.12/site-packages/numpy/f2py/func2subr.pyi
Daniel Bedeleanu 3aafacab12 feat(phase1): implement OpenCV image processing pipeline
- Create ImageProcessor service with EXIF orientation detection
- Implement smart cropping via OpenCV contour detection (10% padding)
- Add text orientation detection using Hough line transform
- Resize and compress images to 1200px with 85% JPEG quality
- Generate 200px square thumbnails with center crop
- Fallback to Pillow if OpenCV fails
- Comprehensive test suite: 28 tests all passing
- File size validation (reject >10MB)
- Graceful error handling for corrupted/invalid images
- Update requirements.txt with opencv-python, piexif, python-magic
2026-04-20 22:17:11 +03:00

8 lines
386 B
Python

from .auxfuncs import _Bool, _ROut, _Var
def var2fixfortran(vars: _Var, a: str, fa: str | None = None, f90mode: _Bool | None = None) -> str: ...
def useiso_c_binding(rout: _ROut) -> bool: ...
def createfuncwrapper(rout: _ROut, signature: int = 0) -> str: ...
def createsubrwrapper(rout: _ROut, signature: int = 0) -> str: ...
def assubr(rout: _ROut) -> tuple[dict[str, str], str]: ...