Converting glcm 8*8 matrix to single row vector

how to convert 8*8 grey co matrix to to a single row vector??
A= image path;
glcm=graycomatrix(A);
this is the code that i"m using.

 채택된 답변

Stephen23
Stephen23 2019년 1월 31일
편집: Stephen23 2019년 1월 31일

1 개 추천

Depending on the order you want, probably one of these:
reshape(glcm,1,[])
reshape(glcm.',1,[])

추가 답변 (0개)

질문:

2019년 1월 31일

댓글:

2019년 1월 31일

Community Treasure Hunt

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

Start Hunting!

Translated by