Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eesunmoon/image_processing
[Fall 2021] Image Processing
https://github.com/eesunmoon/image_processing
c image image-processing
Last synced: about 2 months ago
JSON representation
[Fall 2021] Image Processing
- Host: GitHub
- URL: https://github.com/eesunmoon/image_processing
- Owner: EesunMoon
- Created: 2021-11-06T03:46:42.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-14T01:46:02.000Z (3 months ago)
- Last Synced: 2024-10-17T21:01:11.952Z (3 months ago)
- Topics: c, image, image-processing
- Language: Yacc
- Homepage:
- Size: 66.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Image Processing
## Practical Exercises
| No. | Practice Link | Practice Topic |
|:---:|:-------------:|:--------------:|
| 1 | [Point Transformation](https://github.com/MoonEeSun/Image_Processing/tree/main/1_Point_Transformation) | Point-Based Image Transformation |
| 2 | [Geometric Transformation](https://github.com/MoonEeSun/Image_Processing/tree/main/2_Geometric_Transformation) | Geometric-Based Image Transformation |
| 3 | [Spatial-Domain Filtering](https://github.com/MoonEeSun/Image_Processing/tree/main/3_Spatial-Domain_Filtering) | Image Filtering in the Spatial Domain |
| 4 | [Frequency-Domain Processing](https://github.com/MoonEeSun/Image_Processing/tree/main/4_Frequency-Domain_Processing) | Image Processing in the Frequency Domain |
| 5 | Compression: [Encoder](https://github.com/MoonEeSun/Image_Processing/tree/main/Hw5_Encoder) / [Decoder](https://github.com/MoonEeSun/Image_Processing/tree/main/Hw5_Decoder) | Image Compression Techniques |### 1. Point Transformation
- **Point Transformation**: Image processing technique where only the pixel values are changed (the pixel position remains unchanged). This method handles only the pixel's value itself.
- **Mapping**: Two types - forward mapping and inverse mapping.### 2. Geometric Transformation
- **Geometric Transformation**: An image processing technique where the pixel positions are changed, not the pixel values.
- **Interpolation**: Used to estimate pixel values during geometric transformations.### 3. Spatial-Domain Filtering
- **Spatial-Domain Filtering**: A technique that changes both the pixel values and their positions using the values of neighboring pixels.### 4. Frequency-Domain Processing
- **Frequency-Domain Processing**: Image processing performed in the frequency domain, often allowing for more efficient manipulation of certain image properties.### 5. Compression
- **Image Compression Techniques**: Methods used to reduce image data size to optimize storage and transmission, particularly useful in high-traffic environments.
- **Encoder**: Processes to reduce the image data size.
- **Decoder**: Reconstructs the compressed image data back to its original form.