我有一个histShape.m
用函数调用的文件histShape
,还有一些其他函数。
代码的一般视图是:
%
function [outputImage] = histShape(srcimg, destimg)
PIXELS = 255 + 1;
....
....
end
%
function [outputImage] = normalizeAndAccumulate(inputImage)
PIXELS = 255 + 1;
....
....
end
%
function [pixels] = getNormalizedHistogram(histogram , inputImage)
PIXELS = 255 + 1;
....
....
end
我可以使用global x y z;
,但我正在寻找一种不同的方式。
我想将变量声明PIXELS
为全局变量,我该怎么做?
问候