Загрузка страницы

Practice Problem on Texture Segmentation Using Texture Filters

Prerequsite:
Texture Based Image Segmentation using Entropy | Digital Image Processing | MATLAB
https://youtu.be/cEkNxjVZkBo
Textural Segmentation using Morphological Operation | MATLAB
https://youtu.be/bP81OykIff8

Image:
--------
https://github.com/SatadruMukherjee/Dataset/blob/main/findtune.PNG

Code:
-------
clc
clear all
close all
warning off
figure;
I=rgb2gray(imread('findtune.PNG'));
imshow(I);
title('Original Image');
E=rescale(entropyfilt(I));
binary_image=imbinarize(E,0.7);
area_opened=bwareaopen(binary_image,1000);
st=strel('square',10);
area_opened=imclose(area_opened,st);
hole_filling=imfill(area_opened,'holes');
figure;
subplot(1,2,1);
lower_part=I.*uint8(hole_filling);
imshow(lower_part);title('Right Part')
subplot(1,2,2);
upper_part=I.*uint8(~hole_filling);
imshow(upper_part);title('Left Part');
figure;
peri=imdilate(bwperim(hole_filling),strel('disk',2));
imshow(labeloverlay(I,peri,"Colormap",[1 1 0]));
title('Boundary Between Textures')

Learn Complete Machine Learning & Data Science using MATLAB:
https://www.youtube.com/playlist?list=PLjfRmoYoxpNoaZmR2OTVrh-72YzLZBlJ2

Learn Digital Signal Processing using MATLAB:
https://www.youtube.com/playlist?list=PLjfRmoYoxpNr3w6baU91ZM6QL0obULPig

Learn Complete Image Processing & Computer Vision using MATLAB:
https://www.youtube.com/playlist?list=PLjfRmoYoxpNostbIaNSpzJr06mDb6qAJ0

🙏🙏🙏🙏🙏🙏🙏🙏
YOU JUST NEED TO DO
3 THINGS to support my channel
LIKE
SHARE
&
SUBSCRIBE
TO MY YOUTUBE CHANNEL
#DigitalImageProcessing #MATLAB #ComputerVision

Видео Practice Problem on Texture Segmentation Using Texture Filters канала Knowledge Amplifier
Показать
Комментарии отсутствуют
Введите заголовок:

Введите адрес ссылки:

Введите адрес видео с YouTube:

Зарегистрируйтесь или войдите с
Информация о видео
4 июля 2021 г. 13:16:46
00:13:15
Яндекс.Метрика