Effacer les filtres
Effacer les filtres

Converting matrix to binary matrix and then saving the matrix to excel

1 vue (au cours des 30 derniers jours)
Hafeez
Hafeez le 9 Déc 2016
Commenté : Hafeez le 9 Déc 2016
Hi.I want to export image matrix in binary format to excel,I have used dec2bin to covert my image matrix into binary format.The problem i am facing is that the dec2bin coverts the image matrxi into binary vector, i want the results in matrix form and then stored in the excel as rows and coloums.code is attached.
A=imread('lena.tiff');
x=dec2bin(A,8)
xlswrite('bin.xlsx', cellstr(x))

Réponse acceptée

Guillaume
Guillaume le 9 Déc 2016
Modifié(e) : Guillaume le 9 Déc 2016
As pointed out by Walter in your previous identical question, dec2bin does not convert into a binary vector but into a char matrix.
It's not clear what your new question is asking. If you're asking how to reshape that cell array that is the result of cellstr into the same shape as your image, then simply use reshape
xlswrite('bin.xlsx', reshape(cellstr(x), size(A)))

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by