Using cell array for imwrite
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How can i use cell array inside the imwrite?
Please help
1 commentaire
Stephen23
le 7 Mar 2017
@Matt Kernan: you are storing image data in a cell array? Why? That would be quite inefficient.
Réponse acceptée
KSSV
le 7 Mar 2017
K = cell(3,1) ;
K{1} = rand(100) ;
K{2} = rand(200) ;
K{3} = rand(500) ;
for i = 1:length(K)
imwrite(K{1},strcat('image_K',num2str(i),'.jpg')) ;
end
2 commentaires
Jan
le 7 Mar 2017
@Matt: No, this is not possible. If you run KSSV's code, you cannot get this error. Please post the code you run, such that an improvement can be suggested.
Plus de réponses (1)
Jan
le 7 Mar 2017
You cannot use a cell as input for imwrite. I cannot imagine the intention of doing this. Writing images is only useful for images, and images are either [Col x Row] or [Col x Row x 3] numerical arrays. So perhaps you want to deliver the contents of a cell element to the imwrite command. Then see KSSV's answer, which answers this question, as far as I can see.
0 commentaires
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!