图像信息隐藏
简单介绍 本篇介绍和解说怎样在图像中隐藏一些信息。 详细实现 基本流程 一共分为两部分:第一部分是生成隐藏的加密图像,还有一部分是对加密图像解密。显示出被隐藏的信息。 生成加密图像 详细代码 #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <math.h> #include <string.h> #include <opencv/cv.h> #include <stdio.h> using namespace cv; char normalpicName[20]; Mat mat1, mat2; int normalWidth, normalHeight; IplImage src1, src2; CvScalar s1, s2; void initPic(){ int i, j; mat1 = imread(normalpicName); src1 = mat1; mat2 = imread(normalpicName); src2 = mat2; normalWidth = mat1.rows; normalHeight = mat1.cols; for(i=0; i< normalWidth; i++){ for(j=0; j<normalHeight;