天天看點

【圖像隐寫】基于matlab GUI DWT+SVD數字水印【含Matlab源碼 606期】

一、DWT+SVD數字水印簡介

理論知識參考文獻:​​基于DWT和SVD的彩色圖像數字水印算法研究​​

​​一種基于DWT-SVD的圖像數字水印算法​​\

二、部分源代碼

function varargout = main(varargin)
% MAIN M-file for main.fig
%      MAIN, by itself, creates a new MAIN or raises the existing
%      singleton*.
%
%      H = MAIN returns the handle to a new MAIN or the handle to
%      the existing singleton*.
%
%      MAIN('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in MAIN.M with the given input arguments.
%
%      MAIN('Property','Value',...) creates a new MAIN or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before main_OpeningFunction gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to main_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
%      instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help main

% Last Modified by GUIDE v2.5 25-May-2009 10:07:53

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @main_OpeningFcn, ...
                   'gui_OutputFcn',  @main_OutputFcn, ...
                   'gui_LayoutFcn',  [] , ...
                   'gui_Callback',   []);
if nargin & isstr(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
    gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before main is made visible.
function main_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to main (see VARARGIN)

% Choose default command line output for main
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes main wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = main_OutputFcn(hObject, eventdata, handles)
% varargout  cell array for returning output args (see VARARGOUT);
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;

% --- Executes on mouse press over axes background.
function axes1_ButtonDownFcn(hObject, eventdata, handles)
% hObject    handle to axes1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% --- Executes during object creation, after setting all properties.
function popupmenu1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to popupmenu1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc
    set(hObject,'BackgroundColor','white');
else
    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end

% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
%————————————————————顯示載體圖像————————————————————
f1=uigetfile('*.bmp','打開載體圖像');
guidata(hObject, handles);
global cover_object;
cover_object=imread(f1);
axes(handles.axes1);
imshow(cover_object);
title('載體圖像');
% --- Executes on button press in pushbutton3.
function pushbutton3_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

%————————————————————顯示水印圖像————————————————————
f2=uigetfile('*.jpg','打開原始水印圖像');
guidata(hObject, handles);
global watermark;
 
watermark=im2bw(watermark);  %對水印圖像進行二值化
axes(handles.axes4);
imshow(watermark);
title('水印圖像');

% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
%————————————————————加密水印圖像——————————————————————
global watermark;
global watermark_en;
%水印圖像矩陣的行數與列數
Mm=size(watermark,1);               
Nm=size(watermark,2); 
N=Mm*Nm;
key=0.2345;
m(1)=key;
%産生混沌序列
for i=1:N-1
    m(i+1)=4*m(i)-4*m(i)^2;
end
m=mod(1000*m,256);
m=uint8(m);
m=im2bw(m);

%置亂
n=1;
for i=1:Mm
    for j=1:Nm
        watermark_en(i,j)=bitxor(m(n),watermark(i,j));
        
    end
end

% %寫入加密水印圖像
% imwrite(watermark_en,'watermark_en.bmp','bmp'); 
 

axes(handles.axes6);
imshow(watermark_en);
title('加密水印');
global watermark_en;

% --- Executes on button press in pushbutton4.
function pushbutton4_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton4 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
%————————————————————将待隐藏水印嵌入載體圖像——————————————
global cover_object;
global watermark_en;
global CWI;
global Temp;
[mm,nn]=size(cover_object);  % 原圖像大小
[mm1,nn1]=size(watermark_en);
[LL HL LH HH]=dwt2(cover_object,'haar');
[U,S,V]=svd(LL);  %選LH子帶進行奇異值分解
af=0.03;  %嵌入強度
[lm,ln]=size(LL);
WW=zeros(lm,ln);%LL圖像大小 lm ln
 
    for j=1:nn1
            WW(i,j)=watermark_en(i,j);
    end
      

三、運作結果

【圖像隐寫】基于matlab GUI DWT+SVD數字水印【含Matlab源碼 606期】
【圖像隐寫】基于matlab GUI DWT+SVD數字水印【含Matlab源碼 606期】
【圖像隐寫】基于matlab GUI DWT+SVD數字水印【含Matlab源碼 606期】
【圖像隐寫】基于matlab GUI DWT+SVD數字水印【含Matlab源碼 606期】
【圖像隐寫】基于matlab GUI DWT+SVD數字水印【含Matlab源碼 606期】
【圖像隐寫】基于matlab GUI DWT+SVD數字水印【含Matlab源碼 606期】
【圖像隐寫】基于matlab GUI DWT+SVD數字水印【含Matlab源碼 606期】
【圖像隐寫】基于matlab GUI DWT+SVD數字水印【含Matlab源碼 606期】
【圖像隐寫】基于matlab GUI DWT+SVD數字水印【含Matlab源碼 606期】

四、matlab版本及參考文獻

1 matlab版本

2014a

2 參考文獻

[1] 蔡利梅.MATLAB圖像處理——理論、算法與執行個體分析[M].清華大學出版社,2020.

[2]楊丹,趙海濱,龍哲.MATLAB圖像處理執行個體詳解[M].清華大學出版社,2013.

[3]周品.MATLAB圖像處理與圖形使用者界面設計[M].清華大學出版社,2013.

[4]劉成龍.精通MATLAB圖像處理[M].清華大學出版社,2015.