⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 image_hist.m

📁 基于图象的数据隐写和提取matlab代码
💻 M
字号:
function B=image_hist(N,bins);%Please input a square matrix that has multiple of 8 dimensions%bins should range over at least -20:20%this takes a histogram of the DCT coefficeient values[x dnk]=size(N);x1=x/8;histogram=zeros(size(bins));tiled=zeros(8,8,x1,x1);%break up the matrix into 8x8 tiles and take histogram of DCTfor i=1:x1    for j=1:x1        DCT1=round(dct2(N(8*i-7:i*8,8*j-7:j*8)));        temp=hist(reshape(DCT1, 1,[]), bins);               histogram=histogram+temp;    endendB=histogram;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -