3 lines
89 B
Text
3 lines
89 B
Text
|
|
function [grayImage] = colortograyscale(inputImage)
|
||
|
|
grayImage = rgb2gray(inputImage);
|