
i want to detecting bubble in the image and measuring the size
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    chang hoon oh
 el 23 de Ag. de 2021
  
    
    
    
    
    Comentada: chang hoon oh
 el 24 de Ag. de 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?
0 comentarios
Respuesta aceptada
  Wan Ji
      
 el 23 de Ag. de 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)

Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

