Application of Edge Detection in Image Segmentation
HTML-код
- Опубликовано: 7 фев 2025
- Image:
------
github.com/Sat...
Code:
-----
clc
clear all
close all
warning off
x=imread('flower.PNG');
figure;
imshow(x);
title('Original Image');
mask_image=bwareaopen(imopen(imfill(imclose(edge(rgb2gray(x),'canny'),strel('line',3,0)),'holes'),strel(ones(3,3))),1500);
figure;
imshow(mask_image);
title('Mask Image');
red_processed=x(:,:,1).*uint8(mask_image);
green_processed=x(:,:,2).*uint8(mask_image);
blue_processed=x(:,:,3).*uint8(mask_image);
op=cat(3,red_processed,green_processed,blue_processed);
figure;
imshow(op);
title('Output Image')
Prerequisite:
-------------
Morphological Closing:
• Image Closing in MATLAB
Morphological Opening:
• Object Decomposition u...
Region filling:
• Region filling In-Buil...
Learn Complete Machine Learning & Data Science using MATLAB:
• Data Science & Machine...
Learn Digital Signal Processing using MATLAB:
• Digital Signal Process...
Learn Complete Image Processing & Computer Vision using MATLAB:
• Digital Image Processi...
🙏🙏🙏🙏🙏🙏🙏🙏
YOU JUST NEED TO DO
3 THINGS to support my channel
LIKE
SHARE
&
SUBSCRIBE
TO MY RUclips CHANNEL
#ComputerVision #matlab #DigitalImageProcessing
Thanks sir , it was an awesome lecture ❤
Glad to hear you found it helpful!
Honestly speaking i found it to be most informative video for the segmentation..awesome sir..
Thank you Syphon Analytics for your inspiring comment ! Happy Learning :-)
@@KnowledgeAmplifier1 sir i need help plz reply sir
Best Binary Mask Tutorial out there. Thank you so much!
You are welcome Beefore Premium! Happy Learning
Very good session
Informative
Got some hints and ideas
Thanks sir
Glad to hear that K.SANKAR KANDASAMY! Wish you a very Happy New Year & Happy Learning
Hello sir the session was very informative. Thanks for uploading
Thank You Amar Murthy! Happy Learning :-)
Very informative. I have one question, If I want to remove the black area of finger images after doing this edge detection. Which technique I have to apply?
How to segment resistor from the image kindly help me to solve this issue in my project
Is this works for real time images....
Can we get the coordinates fro the image in MATLAB?
Can you specify exactly which coordinates you are trying to find out Amar?