How to calculate spray cone angle?

15 次查看(过去 30 天)
RPR
RPR 2024-2-15
编辑: Matt J 2024-2-15
Hi everyone,
I am doing experiments and capturing the spray pattern using high speed camera. I need to measure spray angle, diameter distribution and velocity of the spray. I have attached one of the images from 1000 images of spray pattern. For calculating spray angle, I have used the matlab code mentioned in this link https://in.mathworks.com/matlabcentral/answers/2003472-how-to-calculate-spray-cone-angle . But I could not get the correct spray angle. Could anyone provide the code to measure spray angle. I have attached the results which I have obtained.
And also, with the images is it possible to obtain diameter distribution of the particles and the velocity of the sprayed particles. If it is possible, please provide code for the same.
  3 个评论
Matt J
Matt J 2024-2-15
编辑:Matt J 2024-2-15
Please give additional examples of spray images where the code fails, so we can get a sense of the general task and its difficulties.

请先登录,再进行评论。

回答(2 个)

Image Analyst
Image Analyst 2024-2-15
First of all, before doing any image processing, you need to get better pictures. There is not enough contrast between your spray and your background. I suggest trying using a black velvet backdrop for your background. Then use focused/colimated lighting from both sides to illuminate the spray, or use non-colimated light but have baffles in place so as to not illuminate the background. Once you have good images, it should be fairly straightforward.

Matt J
Matt J 2024-2-15
编辑:Matt J 2024-2-15
load Image
BW = imfill( bwareafilt(imclose(entropyfilt(im2gray(Image))>4.5,strel('disk',5)),1),'holes');
BW=bwareafilt(~imclose(~BW,ones(1,35)),1);
imshow(labeloverlay(Image,BW,'Colormap','hot','Transp',0.7));
BW=BW(1:floor(height(BW)/2),:);
BW=BW(any(BW,2),:); N=height(BW);
[~,J1]=max(BW,[],2);
[~,J2]=min(cummax(BW,2,'reverse'),[],2);
p1=polyfit(1:N,J1,1);
p2=polyfit(1:N,J2,1);
angle=abs(atand(p1(1))) + abs(atand(p2(1)))
angle = 74.8004
  2 个评论
RPR
RPR 2024-2-15
移动:Matt J 2024-2-15
Sir, I am getting same answer (74.8004) for spray angle for all operating conditions. could you please help me.
Matt J
Matt J 2024-2-15
编辑:Matt J 2024-2-15
All your images look the same to me, so it comes as no surprise that the angles are all the same.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Image Segmentation and Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by