资源简介
复制粘贴(copy-move)图像篡改检测算法matlab实现
代码片段和文件信息
% Target Recongition
% This program detects a target in a given image and focuses on it
% Programmed By: Mina Ayman Makar
% On 2/2/2004
% Part(1) : Entering the image for MATLAB
fprintf(‘\n This program detects a target in an image‘)
fprintf(‘\n Entering the image for MATLAB...‘)
fprintf(‘\n Save the image or its copy in MATLAB working Directory‘)
imagname = input(‘\n Enter the name of the image file (filename.ext) : ‘‘s‘);
w = imread(imagname);
w = im2double(w);
sizw = size(w);
figure
imshow(w)
title(‘Input Image‘)
pause(3.5);
close;
fprintf(‘\n Entering the target image for MATLAB...‘)
fprintf(‘\n Save the target image or its copy in MATLAB working Directory‘)
tarname = input(‘\n Enter the name of the target image file (filename.ext) : ‘‘s‘);
t = imread(tarname);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2093 2012-02-14 10:39 target.m
相关资源
- gbvs 二维图像视觉显著性检测
- susancorners
- fusion_change_detection SAR图像变化检测代
- MotionDetection 静止背景下运动目标检测
- edge_detection 利用小波边缘检测算法实
- Matlab-ECG-Processing 非常实用的基于Mat
- hough-Matlab 利用Matlab编写的基于hough变
- VideoFaceDetect 使用matlab调用opencv做成的
- automsft 该程序初始时使用背景差分法
- recognize_face 利用灰度积分投影直接对
- SSDA SSDA序贯相似性检测方法对图像进
- SIGNAL_edge_dwt 利用小波变换模极大值方
- RANSAC-match 可以在harris角点检测和ncc粗
- Zernike 亚像素边缘检测的matlab代码
- canny 自己实现的canny边缘检测算子
- tuxiangfenge Matlab边缘检测和区域生长图
- PSS_detect
- 2 完成车辆计数功能
- Yale_5G Yale
- Cooperative-spectrum-sensing
- MutiTargetDetection 多目标检测与跟踪算法
- shadow-removal 该代码用于在视觉智能监
- CNN_Edge_extraction CNN图像边缘检测
- surface-quality-detection 用matlab实现的表面
- corner 角点检测的程序
- matlab 本文重点研究了面积法对车流量
- HOGadaboos 应用HOG和adbost进行人体检测试
- shadow-removal 非常全面介绍了阴影检测
- Khan2 数字图像copy-move篡改检测。特征
- ped_detector_RELEASE.tar 基于分层的HOG的行
评论
共有 条评论