https://github.com/jserv/skin-deep
Generate faces with smoother skin
https://github.com/jserv/skin-deep
Last synced: about 1 year ago
JSON representation
Generate faces with smoother skin
- Host: GitHub
- URL: https://github.com/jserv/skin-deep
- Owner: jserv
- License: other
- Created: 2020-09-09T18:58:16.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-01-17T18:45:40.000Z (over 5 years ago)
- Last Synced: 2025-07-26T13:47:34.440Z (about 1 year ago)
- Language: C
- Homepage:
- Size: 79.1 KB
- Stars: 14
- Watchers: 2
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# skin-deep: Generate faces with smoother skin
This program takes effective steps to generate pixels with smooth skin:
1. Skin detection: detect image pixels and regions that contain skin-tone color.
2. Edge detection: obtain an edge map for applying noise reduction over skin.
## Build and Verify
Run `make` and you should see the generated `main` file. Its usage:
```
./main -i [-l denoise_level] [-o output_img_name]
```
The default output filename is `out.jpg`.
## License
`skin-deep`is released under the BSD 2 clause license. Use of this source code is governed by
a BSD-style license that can be found in the LICENSE file.
External source code:
* `stb_image.h` and `stb_image_write.h`: Taken from [stb](https://github.com/nothings/stb),
MIT License or public domain.