Digital image Watermarking using Discrete Wavelet Transform

조회 수: 18 (최근 30일)
OLUFEMI SONEYE
OLUFEMI SONEYE 2019년 7월 7일
댓글: KALYAN ACHARJYA 2019년 7월 7일
Community,
Please, I need idea on how to give different names to series of images(outputs) produce by the below code (i.e. expt.m) and save . Currently,this is the code I have. I need correction on the code where it is neccessary.
Other useful and relevant files are also attached.
Thank you.

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 7월 7일
편집: KALYAN ACHARJYA 2019년 7월 7일
How to give different names to series of images(outputs) produce by the below code (i.e. expt.m) and save.
I assumed that you have already called the images, let say each result images durining iteration is result1
for j=1:length(list)
grayImage=imread(list(j).name);
% do finding
result1=.......
%Save Images
destination='C:\complete path to the destination folder\folder_name\im';
%........................................................................................^^^^^
imwrite(result1,[destination,num2str(j),'.png']);
end
The save image will named as im1, im2, im2, etc...
If you want to save the result images as same as original image names, see my answer here.
  댓글 수: 2
OLUFEMI SONEYE
OLUFEMI SONEYE 2019년 7월 7일
hello, please what does line 4 (i.e. result1=.......) means ? and which line in my code should I insert your code ? Thank you.
KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 7월 7일
result1=.......
Just representation of output image, resultant image which you want to save (result image from your algorithm)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by