How to show an image using the stored vector (matrix) as a variable in the report generator

2 次查看(过去 30 天)
Hello,
I'd like to show an image or picture using the image vactor (matrix) in a report. Lets assume that the image is already read by imread(picname) and stored in a variable. Now, having the variable, how can I display the sotred image? The code is similar to the following:
file1.m :
picname='picname.jpg';
myimage=imread(picname);
save('myimagefile','myimage');
Later on, I load the variable from file2.m which generates the report.
file2.m :
import mlreportgen.dom.*;
import mlreportgen.report.*;
load('myimagefile');
rep=Report('Myreport','pdf');
open(rep);
I know if I use Image() function deosn't work, because it reads the associated address to the variable, not the content of the varialbe.
The wrong code is:
imagetoshow=Image(myimage); %I know "myimage" should be an adderss not a variable
add(rep,imagetoshow);
close(rep);
Any help is appreciated.
Yasser

采纳的回答

Sean de Wolski
Sean de Wolski 2019-4-24
编辑:Sean de Wolski 2019-4-24
You could use:
imshow(loadedimage)
add(R, Figure())
In general I'd stick with Image even if though requires imwriting your image back to disk (perhaps to tempname from where it can be deleted)
  2 个评论
Yasser Soltanpour
Yasser Soltanpour 2019-4-24
Thanks Sean de Wolski,
The code you provided didn't produce a report, but only a plot. I really hoped that there was other way to embed an image in the reprot from a variable.
Thanks,
Yasser

请先登录,再进行评论。

更多回答(0 个)

产品


版本

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by