Skip to content

Instantly share code, notes, and snippets.

View Omkar-Jawalkar's full-sized avatar
🏠
Working from home

Omkar-Jawalkar

🏠
Working from home
View GitHub Profile
function image_out = processSkinImage(filename)
Step 1...
% Read the image
original = imread(filename);
...
Step 2...
% Resize the image to 50x50
image_resized = imresize(original, scale);
[M N Z] = size(image_resized);