Advertisement
purxiz

Untitled

Oct 22nd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.36 KB | None | 0 0
  1.     equalizedImage = double(equalize(:));
  2.     inputImage = double(image(:));
  3.     A = ['mean: ', num2str(mean(inputImage)), ' standard deviation: ', num2str(std(inputImage))];
  4.     B = ['mean: ', num2str(mean(equalizedImage)), ' standard deviation: ', num2str(std(equalizedImage))];
  5.     disp('orignal image:');
  6.     disp(A);
  7.     disp('new image:');
  8.     disp(B);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement