Skip to content

Instantly share code, notes, and snippets.

View mansoormemon's full-sized avatar
🏠
Working from home

Mansoor Ahmed Memon mansoormemon

🏠
Working from home
View GitHub Profile
path = 'coins.png';
image = imread(path);
figure, imshow(image), title('Original');
figure;
if size(image, 3) == 3
gray = rgb2gray(image);
else
gray = image;