- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
matlab图像处理(中)精选
Matlab 图像处理大作业(2014 中)
火彬TS
三.信息隐藏
1. 实现本章介绍的空域隐藏方法和提取方法。验证其抗JPEG 编码能力。
可以想见,空域隐藏法无法抗JPEG 编码。原因在于量化与反量化的过程中,
处于低位的信息被忽略和改变,无法解码得到正确结果。
需要隐藏的信息段如下:
It was the best of times, it was the worst of times, it was the age of wisdom, it was the age
of foolishness, it was the epoch of belief, it was the epoch of incredulity, it was the season
of Light, it was the season of Darkness, it was the spring of hope, it was the winter of
despair, we had everything before us, we had nothing before us, we were all going direct
to Heaven, we were all going direct the other way- in short, the period was so far like the
present period, that some of its noisiest authorities insisted on its being received, for good
or for evil, in the superlative degree of comparison only.
空域隐藏:对输入文段进行DC 编码,数据插入到灰度矩阵。代码如下:
(Blankc_info.m)
function [wid, key] = Blankc_info(A)
load hall.mat; load JpegCoeff.mat;
[row, col] = size(hall_gray);
codes =;
for c = 1: length(A) % DC code A
if (A(c)==0)
DC_row = 1;
else
DC_row = floor(log2(abs(A(c))))+2;
end
len = DCTAB(DC_row, 1);
for count = 1:len
codes = [codes, num2str(DCTAB(DC_row, count+1))];
end
codes = [codes, My_dec2bin(A(c))];
end
key = hall_gray;
wid = length(codes);
row_c = 1; col_c = 1;
for count = 1:wid
temp = My_dec2bin(hall_gray(row_c, col_c));
temp(length(temp)) = codes(count);
key(row_c, col_c) = 0;
if (temp(1)==0)
for nu = 1: length(temp)
if (temp(nu)==0)
key(r
您可能关注的文档
最近下载
- 自动化浇注生产线技术方案v.pdf VIP
- 工业生态学(东大)中国大学MOOC慕课 期末考试答案.pdf VIP
- 2025年法考客观题考试真题及答案.docx VIP
- 女性性功能障碍诊治中国专家共识(2023年版).docx VIP
- 弹性元件式一般压力表、压力真空表和真空表.pdf VIP
- GB-T 5223.3-2017 预应力混凝土用钢棒.pdf
- 我国的基本政治制度(课件+视频)-【中职名师课堂】高一思想政治《中国特色社会主义》同步备课示范课件(高教版2023·基础模块).pptx VIP
- 小型浇注生产线技术需求江河公司原始文件.pdf VIP
- 2024年秋季新教材七年级语文上册全册教案(教学设计).doc
- 环境保护、文明施工管理体系与措施.docx VIP
原创力文档


文档评论(0)