Read Training Data.
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mir AbdulRehman
am 25 Nov. 2020
Kommentiert: Mir AbdulRehman
am 28 Nov. 2020

Can Some one help me with this... I just started to work on Matlab and I wanted to make my first image processing project but I can't make the program righe. I don't know what's wrong. I wrote a Loop to access 34 files of Alpha numeric Characters having images of those characters.... I'm working on a custome OCR Model to train Neural Networks.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 25 Nov. 2020
Change the
+ '_'
to
+ "_"
You are currently doing numeric addition of characters, not appending. Using + to append only works for string() objects, but you are working with character vectors rather than string() objects. Changing that '_' to "_" happens to be in the right place to convert everything necessary into string objects.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Convert Image Type finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!