Drop size distribution and surface coverage by MATLAB
이전 댓글 표시
Dear image analyst, I am doing drop condensation experiment on superhydrophobic surfaces. I would like to get plot total number of drops vs. drop diameter curve (an example of such plot is attached). Also, I would like to calculate surface coverage (i.e., ratio of area covered by drop to total area). Can anyone help me please to develope the code and complete the atatched m file. So far, I can not get a perfect binary image to detect circles. Is there any way to improve the binary image from this original image? I shall highly appreciate your cooperation.
답변 (1개)
Image Analyst
2023년 3월 11일
0 개 추천
That's a tough one. I'd try to see if you can get a better image. Try different lighting, different geometry, different background, etc. See if you can have different density so that the bubbles don't overlap. Maybe try polarizers. Maybe you can send the fluid through a small transparent tube so that there is just one bubble at a time passing through and then compute the volume between the menisci.
댓글 수: 2
JUBAIR AHMED SHAMIM
2023년 3월 11일
편집: JUBAIR AHMED SHAMIM
2023년 3월 11일
Image Analyst
2023년 3월 11일
Well of course. Once you have a binary image it's trivial:
props = regionprops(mask, 'EquivDiameter');
but the problem is getting the binary image. I don't see an easy solution but you can search the literature:
https://www.google.com/search?hl=En&as_sitesearch=www.visionbib.com%2F&bthG=Google%2BSearch&q=bubble
for published papers on bubble detection.
카테고리
도움말 센터 및 File Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!