i want to detecting bubble in the image and measuring the size

4 vues (au cours des 30 derniers jours)
chang hoon oh
chang hoon oh le 23 Août 2021
Commenté : chang hoon oh le 24 Août 2021
i used imbinarize,strel,wiener2,bwareafilt,medfilt2,filter2 and dipimage fuction
but i can't get a satisfied picture
and if i want to ftltering the range of dark (90~100) what fuction do i have to use?

Réponse acceptée

Wan Ji
Wan Ji le 23 Août 2021
Use DCT transformation and with a critical bw value
I=double(imread ('image.bmp'));
I = -(I-min(I(:)))/(min(I(:))-max(I(:)));
%DCT transformation
[m,n]=size(I);
Y=dct2(I);
I=zeros(m,n);
I(1:floor(m/10),1:floor(n/10))=1;
Ydct=Y.*I;
Y=(idct2(Ydct));
I = -(Y-min(Y(:)))/(min(Y(:))-max(Y(:)));
I (I>0.83) = 0;
I (I~=0) = 1;
imshow(I)

Plus de réponses (0)

Catégories

En savoir plus sur Images dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by