Detection-of-Breast-Cancer-using-Neural-Networks icon indicating copy to clipboard operation
Detection-of-Breast-Cancer-using-Neural-Networks copied to clipboard

incorrect SR9 calculation

Open Walter-Roberson opened this issue 5 years ago • 3 comments

adaptivemedianfilter.m contains the line

SR9 = NoisyImage((i+1)),((j+1));

Notice the bracketing. This is equivalent to

SR9 = NoisyImage((i+1)) ((j+1));

which is a single index into NoisyImage, display of SR9, and computation and discarding of j+1 . The correct code should be

SR9 = NoisyImage((i+1),(j+1));

Walter-Roberson avatar Jan 25 '19 00:01 Walter-Roberson