-
Notifications
You must be signed in to change notification settings - Fork 164
Image Processing Algorithms
Pranam Lashkari edited this page Jan 20, 2020
·
19 revisions
List of image processing algorithms:already implemented and offered by GIL and those not yet implemented but of interest of GIL users and developers.
Please, feel free to add your favourite algorithms to the wish list, including
- name of the algorithm
- authors of the algorithm
- title and link to paper describing the algorithm, any reference materials that may be useful to developers interested in implementing them
The list is open to all image processing algorithms, from basic and classic through to complex and modern, from old and sub-optimal through specialised, optimal or parallel-friendly.
- Binary Threshold
- Inverse Binary Threshold
- To Zero (new pixel value set to 0 if the old pixel value is less than the threshold)
- To Zero Inverse (new pixel value set to 0 if the old pixel value is greater than the threshold)
- Mean Adaptive Threshold
- Gaussian Adaptive Threshold
- Otsu's Threshold
- 2D convolution and 2D kernel
- Box-filter
- Blur filter
- Miral Shah
...