how to concatenate image and text in matlab

3 Ansichten (letzte 30 Tage)
Wubie Engdew
Wubie Engdew am 18 Dez. 2019
Beantwortet: Walter Roberson am 18 Dez. 2019
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.

Antworten (1)

Walter Roberson
Walter Roberson am 18 Dez. 2019
There are two ways you can concatenate image and text in MATLAB:
  1. 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.
  2. Put the image and text as different entries in a cell array
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.

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!

Translated by