Skip to content
Advertisement

Creating DataFrame of groups by pixel values in Python (number, size, etc.)

I have the following data (simple representation of black particles on a white filter):

JavaScript

And I have counted the number of particles (groups) and assigned them each a number using the following code:

JavaScript

With the Output:

JavaScript

I then have four (4) particles (groups) of different sizes.

I am looking to create a DataFrame representing each particle. Like this:

DataFrame of particles (groups)

Any help is much appreciated!

Advertisement

Answer

There should be a more elegant approach, but here is what I have come up with:

JavaScript

Output

particle # size
1 1 10
2 2 1
3 3 3
4 4 4
Advertisement