This project usually filters different images (for now .bmp files) to apply a kind of effects includes :-
- grayscale
- blur
- reflection
- edge
This project is completely written in C (for Now).
If you like this repository, you can bookmark this repo by hitting Star button above. This helps github search algorithm to show this repo to others.
Get a fork/copy of this repository by clicking on Fork button.
Clone it into your local PC by using
git clone https://github.com/yourUserName/Image-Filter.git
where
YourUsername
is your GitHub username After cloning this repository, move into this repository by using
cd Image-Filter/
Add reference to this repository by using
git remote add src https://github.com/Blaze-Stars/Image-Filter.git
To see the changes, run the following command
git remote -v
Always make sure to update your local repository with this repository before making any changes.
git fetch --all
Switch to master
branch
git checkout master
Merge all the remote commits to your master
branch
git merge
Push changes to your forked Image-Filter
repository
git push origin master
Now you are ready to start contributing and sending pull requests. See contributing guide.