- Convert the text to numeric form, such as by using double(), and pad it out so that it has the same number of columns as the image you are concatenating it on to.
- Put the image and text as different entries in a cell array
how to concatenate image and text in matlab
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Error using cat
Dimensions of arrays being concatenated are not consistent.
Error in file2>embedding_radiobutton_Callback (line 198)
stegoimage=cat(3,imgrrev,imggrev,imgbrev);
Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in file2 (line 17)
gui_mainfcn(gui_State, varargin{:});
Error in
matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)file2('embedding_radiobutton_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating UIControl Callback.
0 Kommentare
Antworten (1)
Walter Roberson
am 18 Dez. 2019
There are two ways you can concatenate image and text in MATLAB:
Based upon your code, though, I think the real answer for you is rather different: You should be converting the text into a series of bits and embedding it into an image using techniques such as LSB embedding.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices 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!