Add missing lens_corr prototype

This commit is contained in:
iabdalkader 2016-09-24 01:57:57 +02:00
parent 14b6330b67
commit fedd1f2fe4

View File

@ -542,4 +542,7 @@ array_t *imlib_find_lines(image_t *src, rectangle_t *roi, int threshold);
// Edge detection
void imlib_edge_simple(image_t *src, rectangle_t *roi, int low_thresh, int high_thresh);
void imlib_edge_canny(image_t *src, rectangle_t *roi, int low_thresh, int high_thresh);
// Lens correction
void imlib_lens_corr(image_t *src, float strength);
#endif //__IMLIB_H__