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