- #1
member 428835
Hi PF!
At the bottom of a transparent cup full of water is a hole where water drains. The cup is sloshed, so the gas-water interface is not flat. Are there any techniques you're aware of that implement machine learning to track the interface?
My current technique not using ML is:
1) splice video into still frames
2) turn each frame into a binary image. There are image filters I use, which kinda of require some specific oversight from my end.
3) Increment the region of interest
4) run a for-loop from the left most pixel column to the right most, storing the first pixel with a "zero" value in each column
This technique works pretty well, but obviously fails if the interface is "double-valued" within any given row (so it wouldn't work for tracking, say, a bubble). Is there a way for machine learning to better track the interface? I should stipulate I'm only interested in a machine-learning approach.
Thanks for your time!
At the bottom of a transparent cup full of water is a hole where water drains. The cup is sloshed, so the gas-water interface is not flat. Are there any techniques you're aware of that implement machine learning to track the interface?
My current technique not using ML is:
1) splice video into still frames
2) turn each frame into a binary image. There are image filters I use, which kinda of require some specific oversight from my end.
3) Increment the region of interest
4) run a for-loop from the left most pixel column to the right most, storing the first pixel with a "zero" value in each column
This technique works pretty well, but obviously fails if the interface is "double-valued" within any given row (so it wouldn't work for tracking, say, a bubble). Is there a way for machine learning to better track the interface? I should stipulate I'm only interested in a machine-learning approach.
Thanks for your time!