コード生成でのcategoricalからcharへの変換について
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Tomoki Monden
il 6 Giu 2020
Commentato: Tomoki Monden
il 8 Giu 2020
Classify Static Image Using Deep Learning on Raspberry Pi を参考にRaspberry Pi上で機械学習を行っています。
その際
[label,score] = net.classify(imgSizeAdjusted);
の識別結果をechoに用いてファイルに書き込みたく
echoText = 'echo ' + char(label) + ' >> result.txt';
というコードを記述したところ「コード生成では、categorical に対して char メソッドがサポートされていません。」というエラーが表示されました。
コード生成でcategoricalをchar型に変換する方法があれば教えていただきたいです。
0 Commenti
Risposta accettata
Ryuhei Funada
il 8 Giu 2020
Modificato: Ryuhei Funada
il 8 Giu 2020
label = cellstr(label);
label{1}でchar型で抜き出す。
でいかがでしょうか?
下記の
web(fullfile(docroot, 'vision/examples/code-generation-for-object-detection-using-yolo-v2.html'))
%convert categorical labels to cell array of charactor vectors for MATLAB
の部分をご参照ください。
Più risposte (0)
Vedere anche
Categorie
Scopri di più su イメージを使用した深層学習 in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!