Skip to content

Commit

Permalink
Merge pull request #7 from DavidEsdrs/feat/blur
Browse files Browse the repository at this point in the history
feat/blur
  • Loading branch information
DavidEsdrs authored Jan 21, 2024
2 parents 6f59993 + f40989e commit e132901
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This project is intended to offer a set of basic features on image processing. I
- [ ] Bilinear interpolation
- [ ] Bicubic interpolation
- [X] Overlay
- [ ] Blur
- [X] Blur
- [ ] Sharpen
- [ ] Saturation
- [ ] Brightness
Expand Down Expand Up @@ -116,6 +116,16 @@ Representing xend and ysend.
iproc -i [input] -o [output] -gs
```

- Blur (Gaussian):

```sh
iproc -i [input] -o [output] -b 7 -s 3
```

**note**: the `b` flag indicates the size of the kernel that will be used for
process the image. While the `s` flag indicates the `sigma` for the gaussian blur
kernel computation, it's optional.

- Overlay (put image onto another):

```sh
Expand Down

0 comments on commit e132901

Please sign in to comment.