Takes one image and four values: A, R, G, B as input. Then, it will use the 4 values as a key, search for similar color and tell whether the color exist in the image. The class will report how many times the similar color exist in the image. In this assignment, similar color means that the difference between the A, R, G, B values shouldn’t be larger than 15. For example: (255,6 ,6 , 34) is considered as similar color with (255,21 ,21 , 49), while (255,6 ,6 , 34) is NOT similar color with (255,206 ,6 , 34). And Time Taken is faster than the following result.
result-1.png
result-2.png
result-3.png