#What is the task? We are required to detect the bright area out of the picture provided
#Approach
- We read the image
- Apply gaussian blur on the image to reduce noise
- Defined upper an dlower bounds of the color to be detected
- Finally mask that area out and print the result
#Challenges Noise in the image was the main challenge
#Solution Fixed using applying Gaussian blur