How can i know my first image is master image and second image my current image how can i find the noise raito between this two images.

1 view (last 30 days)
  3 Comments
Walter Roberson
Walter Roberson on 4 Oct 2023
Note that it would be easier for people to experiment if you were to post those as separate images instead of as one pair.

Sign in to comment.

Answers (1)

Drishti
Drishti on 30 Sep 2024
Hi Shri.s,
To distinguish between the master image and the current image, you can perform statistical analysis, including histogram analysis.
Introducing noise to an image will typically result in a distinct change in the histogram, differentiating it from the original, noise-free version.
You can refer to the MATLAB Documentation of ‘imhist’ function for producing histogram of image data.
Furthermore, the noise ratio can be calculated by utilizing the difference of standard deviation between the images.
Refer to the implemented work around for better understanding:
% Calculate the difference image
difference_image = abs(double(master_image) - double(current_image1));
% Calculate noise level (standard deviation of the difference image)
noise_level = std(difference_image(:));
% Calculate signal level (mean of the master image)
signal_level = mean(double(master_image(:)));
% Calculate noise ratio
noise_ratio = noise_level / signal_level;
Refer to the MATLAB Documentation of ‘std’ function and ‘mean’ function:
I hope this provides a helpful starting point for developing a solution.

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!