How to create empty XYZ image matrix
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Simon Kirkman
el 3 de Ag. de 2020
Respondida: Constantino Carlos Reyes-Aldasoro
el 3 de Ag. de 2020
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?
Respuestas (1)
Constantino Carlos Reyes-Aldasoro
el 3 de Ag. de 2020
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.
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!