imwrite を使用してデータをファイルに書き込もうとするとエラーが発生するのはなぜですか?
15 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 8 Août 2024
Réponse apportée : MathWorks Support Team
le 8 Août 2024
imwrite 関数を使用してデータをファイルに書き込もうとしています。その際、その時点で存在しないフォルダー内のファイルへのパスを作成し、保存しようとしています:
Z = peaks; surf(Z)
axis tight
set(gca,'nextplot','replacechildren');
surf(sin(2*pi/20)*Z,Z);
F = getframe;
imwrite(F.cdata,'newFolder/testfile.jpeg','jpg')
実行すると次のエラーが発生します:
次を使用中のエラー:ファイル "newFolder/testfile.jpeg" を開いて書き込むことができません。書き込み権限がない可能性があります。
Réponse acceptée
MathWorks Support Team
le 8 Août 2024
imwrite では存在しないフォルダ内のファイルへの書き込みはできません。事前にディレクトリを作成するには mkdir コマンドを使用します。
mkdir('newFolder')
imwrite(F.cdata,'newFolder/testfile.jpeg','jpg')
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur イメージ dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!