• 大小: 415KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-11
  • 语言: 其他
  • 标签: K-Means  Matlab  

资源简介

基于K-Means的图像分割与融合,应用了 K-Means 分割方法,进行对“前景图像”中的目标对象进行分割,将另一幅图像(即“背景图像”)和 目标对象融合,得到新的融合图像

资源截图

代码片段和文件信息

% 主程序 
% 1、应用了 K-Means 分割方法,进行对“前景图像”中的目标对象进行分割,即 进行二分类将目标对象进行提取
% 2、将另一幅图像(即“背景图像”)和 目标对象 进行rgb 转 hsi,然后将目标对象中的hsi嵌入到(代替)“背景图像”
%    中的hsi,得到合成的hsi
% 3、将合成的hsi进行逆变化成rgb空间中,并显示新的融合图像
clear close all
%% 读取图像
% 读入包含目标对象的“前景图像”
% foreground_from_image = ‘zebra.jpg‘;    % 数据1
% foreground_from_image = ‘dog.jpg‘;    % 数据2
foreground_from_image = ‘fish.jpg‘;   % 数据3
% 读入“背景图像”
% background_image = ‘zebra_background.jpg‘;
% background_image = ‘dog_background.jpg‘;
background_image = ‘fish_background.jpg‘;

main = cd(‘images‘);                    % 指定当前工作目录给main 
sImg = imread(foreground_from_image);   % 读入“前景图像”
tImg = imread(background_image);        % 读入“背景图像”
cd(main);                               % 切换当前工作目录到demos
%% 分割
%分割“前景图像”,计算目标对象在“前景图像”中的坐标索引(index)
weight = 5;  

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2501  2018-05-26 20:17  Image_Segmentation\image_segmentation\demo.m

     文件       1930  2018-05-26 13:53  Image_Segmentation\image_segmentation\hsi2rgb.m

     文件      33590  2014-10-27 15:20  Image_Segmentation\image_segmentation\images\dog.jpg

     文件      86442  2014-10-27 15:20  Image_Segmentation\image_segmentation\images\dog_background.jpg

     文件      23595  2018-05-26 17:39  Image_Segmentation\image_segmentation\images\fish.jpg

     文件      24566  2018-05-26 14:46  Image_Segmentation\image_segmentation\images\fish_background.jpg

     文件      72839  2014-10-27 15:20  Image_Segmentation\image_segmentation\images\zebra.jpg

     文件     190572  2018-05-26 16:05  Image_Segmentation\image_segmentation\images\zebra_background.jpg

     文件       3136  2014-10-27 15:20  Image_Segmentation\image_segmentation\KMeansClustering.m

     文件       1930  2014-10-27 15:20  Image_Segmentation\image_segmentation\makeLMfilters.m

     文件       1528  2018-05-26 13:53  Image_Segmentation\image_segmentation\rgb2hsi.m

     文件       2441  2014-10-27 15:20  Image_Segmentation\image_segmentation\segmentImg.m

     文件       2881  2018-05-26 17:19  Image_Segmentation\image_segmentation\segmentImgExtra.m

     文件       2902  2018-05-26 20:02  Image_Segmentation\image_segmentation\transferImg.m

     文件          0  2014-10-27 15:20  Image_Segmentation\README.md

     目录          0  2018-05-27 21:17  Image_Segmentation\image_segmentation\images

     目录          0  2018-05-27 21:18  Image_Segmentation\image_segmentation

     目录          0  2018-05-27 21:17  Image_Segmentation

----------- ---------  ---------- -----  ----

               450853                    18


评论

共有 条评论