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;
が、別の方法を探しています。
変数を global として宣言したいのですがPIXELS
、どうすればできますか?
よろしく