• 大小: 526B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-05-09
  • 语言: Matlab
  • 标签: 图像分割  

资源简介

运用各种算子,对图像进行分割,包括roberts算子,prewitt算子,sobel算子,canny算子,log算子等

资源截图

代码片段和文件信息

clear all;close all;clc
P = imread(‘1.jpg‘);
I = rgb2gray(P);
BW1 = edge(I‘roberts‘);
BW2 = edge(I‘prewitt‘);
BW3 = edge(I‘sobel‘);
BW4 = edge(I‘canny‘);
BW5 = edge(I‘log‘[]);
subplot(231)imshow(I)
title(‘the grayscale image‘)
subplot(232)imshow

评论

共有 条评论