- Count the number of Stars ✅
- Count the number of Meteors ✅
- If the Meteors are falling perpendicularly to the Ground (Water level), count how many will fall on the Water ✅
- (optional) Find the phrase that is hidden in the dots in the sky. ❌
| Questionns | Answers |
|---|---|
| Number of Stars | 315 |
| Number of Meteors | 328 |
| Meteors falling on the Water | 105 |
| (optional) Hidden Phrase | null |
I used the OpenCV library and invert the colors of the image to have a greater contrast between the pixels
I separated the color scales where the stars and meteors fit and I counted how many pixels were in that range of colors
To know how many meteors will fall into the water I created a mask over the desired pixel colors and generated an image.png for debugging
use the numpy library to find out which red pixel columns (meteors) meet with the blue pixel columns (water), generating an array with these values
