how to convert a 2-dimensional image matrix to a one dimensional vector

6 visualizaciones (últimos 30 días)
pls give the process and the suitable function to implement the given task

Respuesta aceptada

Stephen23
Stephen23 el 16 de Feb. de 2015
Editada: Stephen23 el 16 de Feb. de 2015
If A is your image matrix, then try
B = A(:);
OR
B = reshape(A,1,[]);

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by