In the following program, how many pixels in the image ‘pix’…
In the following program, how many pixels in the image ‘pix’ are colored black (). clc; clear;pix = zeros(5, 5, 3);pix(:,:,1)=300;for ii = 5:-1:1 for jj = 1:1:5-ii+1 pix(ii, jj, 1) = uint8(-99); pix(ii, jj, 2) = uint8(0.0); pix(ii, jj, 3) = uint8(0); endend