How to create empty XYZ image matrix

6 次查看(过去 30 天)
I am trying to do colour correction and I need an empty image in the XYZ colourspace to write values into. Is there a way to create a blank XYZ image to store the values?

回答(1 个)

Constantino Carlos Reyes-Aldasoro
In addition to the above, you can also consider zeros
emptyMatrix = zeros(x,y,z);
And then you can add values into that matrix, or create one matrix for every channel that you want to use:
x_channel = zeros(rows,columns);
y_channel = zeros(rows,columns);
z_channel = zeros(rows,columns);
And if needed you can concatenate the matrices afterwards.

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

产品


版本

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by