I am currently trying to develop a project for t-shirt color analysis for blind people. For this project, I should get the most frequently appearing colors or primary color tones in images to identify the color of t-shirt. I looked for the solution from the internet but I couldn’t find a proper solution yet. I am using Java for my project.
Share
Get a bitmap and go through each pixel. Remeber the color of each one. Then make some averages – make close colors into one( pink, deep orange and red can become only red). Then compare the counts you get for each of basic colors(colors of rainbows).