数字图像处理实验(17):PROJECT 06-04,Color Image Segmentation
生活随笔
收集整理的這篇文章主要介紹了
数字图像处理实验(17):PROJECT 06-04,Color Image Segmentation
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
實(shí)驗(yàn)報告:
Objective:
Color image segmentation is a big issue in image processing. This students need to know the basics of this topic.
Main requirements:
Ability of programming with C, C++, or Matlab.
Instruction manual:
Download Fig. 6.28(b) and duplicate Example 6.15, but segment instead the darkest regions in the image.
本實(shí)驗(yàn)是彩色圖像分割,從彩色圖像中分割出特定顏色。這里我選了紅色,從下面圖片分割紅色出來,主要是草莓的部分有較多的紅色分量。
原圖像:
實(shí)驗(yàn)代碼:
% close all; clc; clear all;% img = imread('Fig6.30(01).jpg'); figure; subplot(2, 2, 1); imshow(img); title('original image');% img1 = im2double(img); R = img1(:, :, 1); G = img1(:, :, 2); B = img1(:, :, 3);subplot(2, 3, 4); imshow(R); title('Red'); subplot(2, 3, 5); imshow(G); title('Green'); subplot(2, 3, 6); imshow(B); title('Blue');% R1 = R(129:256, 86:170); R1_ave = mean(mean(R1(:))); [M, N] = size(R1); sd = 0.0; for i = 1:Mfor j = 1:Nsd = sd + (R1(i, j) - R1_ave) * (R1(i, j) - R1_ave);end end R1_d = sqrt(sd/(M*N));R2 = zeros(size(img, 1), size(img, 2)); index = find((R > R1_ave - 1.25*R1_d) & (R < R1_ave + 1.25*R1_d)); R2(index) = 1;subplot(2, 2, 2); imshow(R2); title('segment red');實(shí)驗(yàn)結(jié)果:
從顏色分割的結(jié)果來看,白色部分主要為草莓的那部分區(qū)域,也正好是我們所要區(qū)分的紅色的區(qū)域。
總結(jié)
以上是生活随笔為你收集整理的数字图像处理实验(17):PROJECT 06-04,Color Image Segmentation的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 数字图像处理实验(16):PROJECT
- 下一篇: 数字图像处理实验(总计23个)汇总