CoolFace
Apppublic

ganeshkumar383/AI-Based-Image-Deblurring-App

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
__init__.py23 linesDownload Raw Back to modules
1"""
2Image Deblurring Modules
3
4This directory contains all the core modules for the AI-Based Image Deblurring system.
5
6Modules Overview:
7- input_module.py - Image upload and validation
8- blur_detection.py - Motion vs defocus blur detection  
9- cnn_deblurring.py - CNN inference for deblurring
10- sharpness_analysis.py - Sharpness score calculation
11- traditional_filters.py - Wiener & Richardson-Lucy filters
12- database_module.py - SQLite database interactions
13"""
14
15__version__ = "1.0.0"
16__all__ = [
17    "input_module",
18    "blur_detection", 
19    "cnn_deblurring",
20    "sharpness_analysis",
21    "traditional_filters",
22    "database_module"
23]