Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.25 KB | None | 0 0
  1. function out=custom_clahe(input_path, clip_limit, smth1, smth2, smth3)
  2.     img = imread(input_path)
  3.     out_path = "smth"
  4.    
  5.     out_img = adapthisteq(img,'clipLimit', smth1, smth2, smth3);
  6.    
  7.     imwrite(out_img, out_path)
  8.     out = out_path
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement