An open API service indexing awesome lists of open source software.

https://github.com/jiamingmai/guided-image-filter

The implementation of Guided Image Filter with JavaCV
https://github.com/jiamingmai/guided-image-filter

Last synced: about 1 year ago
JSON representation

The implementation of Guided Image Filter with JavaCV

Awesome Lists containing this project

README

          

# Guided Image Filter implemented by JavaCV
This file GuidedImageFilter.java is an implementation of Guided Image Filter with JavaCV.

- JavaCV Download: http://sourceforge.net/projects/javacv/.

Guided image filtering is proposed in "Guided Image Filtering (ECCV 2010)" by Kaiming He, Jian Sun, and Xiaoou Tang. (http://research.microsoft.com/en-us/um/people/kahe/eccv10/index.html)

## Example:
```java
int radius = 60;
double sigma = 0.001;
q = GuidedImageFilter.guidedfilter_color(I, p, radius, sigma);
```
This file is written by Jiaming Mai on 26/11/2015