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

2 ビュー (過去 30 日間)
chang hoon oh
chang hoon oh 2021 年 8 月 23 日
コメント済み: chang hoon oh 2021 年 8 月 24 日
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?

採用された回答

Wan Ji
Wan Ji 2021 年 8 月 23 日
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)
  1 件のコメント
chang hoon oh
chang hoon oh 2021 年 8 月 24 日
oh really appreciate it !!!!!! you are my hero~!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by