x = imread('eight.tif'); xn = imnoise(x, 'salt & pepper', 0.05); %% % Add parallel code here to remove noise from the matrix "xn" above %% figure; subplot(121);imshow(xn);title('Noisy Image'); subplot(122);imshow(y);title('Median Filtered Image');