- A collection of image processing projects across different applications
- Well-documented code with explanations and references
- Jupyter notebooks for easy understanding and experimentation
- Pre-trained models and datasets
- Detailed instructions for setting up and running the projects
-
Basic Image Manipulation
- Image Resizing
- Image Cropping
- Image Rotation
- Color Space Conversion
-
Image Filtering
- Gaussian Filtering
- Median Filtering
- Edge Detection (Sobel, Canny)
-
Image Enhancement
- Histogram Equalization
- Contrast Limited Adaptive Histogram Equalization (CLAHE)
- Image Denoising
-
Morphological Operations
- Erosion and Dilation
- Opening and Closing
- Morphological Gradient
-
Advanced Techniques
- Image Segmentation
- Image Inpainting
- Super Resolution
- Languages: Python
- Libraries: OpenCV, Pillow, Scikit-Image, NumPy
- Tools: Jupyter, Docker
- Cloud Platforms: AWS, Azure
- Version Control: Git, GitHub
To get started with the projects in this repository, follow the instructions below:
- Clone the repository:
git clone https://github.com/mahdi-noori-ai/image-processing-projects.git
- Navigate to the project directory:
cd image-processing-projects
- Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
- Install the required dependencies:
pip install -r requirements.txt
Each project has its own directory with specific instructions on how to run it. Refer to the README file within each project directory for detailed usage instructions.
Example for running a project:
- Navigate to the project directory:
cd basic-image-manipulation/image-resizing
- Run the Jupyter notebook or Python script:
jupyter notebook image_resizing.ipynb
image-processing-projects/
βββ basic-image-manipulation/
β βββ image-resizing/
β β βββ image_resizing.ipynb
β β βββ README.md
β βββ image-cropping/
β β βββ image_cropping.ipynb
β β βββ README.md
β βββ image-rotation/
β β βββ image_rotation.ipynb
β β βββ README.md
β βββ color-space-conversion/
β βββ color_space_conversion.ipynb
β βββ README.md
βββ image-filtering/
β βββ gaussian-filtering/
β β βββ gaussian_filtering.ipynb
β β βββ README.md
β βββ median-filtering/
β β βββ median_filtering.ipynb
β β βββ README.md
β βββ edge-detection/
β βββ edge_detection.ipynb
β βββ README.md
βββ image-enhancement/
β βββ histogram-equalization/
β β βββ histogram_equalization.ipynb
β β βββ README.md
β βββ clahe/
β β βββ clahe.ipynb
β β βββ README.md
β βββ image-denoising/
β βββ image_denoising.ipynb
β βββ README.md
βββ morphological-operations/
β βββ erosion-dilation/
β β βββ erosion_dilation.ipynb
β β βββ README.md
β βββ opening-closing/
β β βββ opening_closing.ipynb
β β βββ README.md
β βββ morphological-gradient/
β βββ morphological_gradient.ipynb
β βββ README.md
βββ advanced-techniques/
βββ image-segmentation/
β βββ image_segmentation.ipynb
β βββ README.md
βββ image-inpainting/
β βββ image_inpainting.ipynb
β βββ README.md
βββ super-resolution/
βββ super_resolution.ipynb
βββ README.md
Contributions are welcome! If you have any ideas, improvements, or bug fixes, feel free to open an issue or submit a pull request. Please ensure your contributions adhere to the repository's code of conduct.
This repository is licensed under the MIT License. See the LICENSE file for more details.