Converting matrix to binary matrix and then saving the matrix to excel
1 次查看(过去 30 天)
显示 更早的评论
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))
0 个评论
采纳的回答
Guillaume
2016-12-9
编辑:Guillaume
2016-12-9
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)))
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!