Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ps48/sip
Small Image Processing Scripts in native C, using libjpeg
https://github.com/ps48/sip
c convolutions image-processing libjpeg
Last synced: 4 days ago
JSON representation
Small Image Processing Scripts in native C, using libjpeg
- Host: GitHub
- URL: https://github.com/ps48/sip
- Owner: ps48
- Created: 2015-06-05T06:55:44.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-03-31T05:47:56.000Z (over 6 years ago)
- Last Synced: 2023-02-26T11:02:26.637Z (over 1 year ago)
- Topics: c, convolutions, image-processing, libjpeg
- Language: C
- Homepage:
- Size: 5.33 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
sip
===
## Small Image Processing Scripts in native C, using libjpeg
---------------------------------------------------------### Usage Instructions
#### **Install libjpeg:**
- [libjpeg](http://ijg.org/).
- [libjpeg git repo](https://github.com/LuaDist/libjpeg/).#### **Commands:**
$ gcc -o name_script file_name.c -ljpeg //to create an executable script
$ ./name_script input_image.jpg output_image.jpg //to execute the scripts
#### **Example JPG Files**Check out the example files converted using filters in the example_out folders.
### Contents
#### convolution_filters
- Edge Detection Filters
* Perwitt
* Robcross
* Sobel
* Laplace
* kirsch- Blur filters
* Mean Filter
* Motion Blur
* Gaussian- Other
* Sharpen
* Emboss#### gray_filters
- Average Method
- Weighted Method#### median_filters
- Normal median filter
- Median Fast Algo
* Pixel Sort
* Quick Sort
* Quick Select Sort
* Torben Method
* Wirth Method#### open
- Histogram Equalisation
- Image Compare
- Invert Images RGB TO GRAY