Closed Bug 867249 Opened 12 years ago Closed 12 years ago

Improve BitmapUtils.getDominantColor to avoid returning gray-ish colors

Categories

(Firefox for Android Graveyard :: Toolbar, defect)

ARM
Android
defect
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED
Firefox 23

People

(Reporter: Margaret, Assigned: Margaret)

References

Details

Attachments

(1 file, 3 obsolete files)

We are already trying to do this, but still failing in some cases. A few testcases that return a shade of gray instead of a color: http://www.cnn.com/favicon.ico http://boingboing.net/favicon.ico http://www.amazon.com/favicon.ico The first two are very red, so I wonder if we're doing something wrong with red hues. The third one is more about ignoring gray tones to return the dominant non-gray color. There's some JS code in toolkit that looks a lot more complicated than what we're currently doing, maybe we can steal some ideas: http://mxr.mozilla.org/mozilla-central/source/toolkit/components/places/ColorAnalyzer_worker.js See also bug 634139.
Bug 826780 also has some improvements we should take.
Assignee: nobody → margaret.leibovic
Attached patch Clean up getDominantColor logic (obsolete) — Splinter Review
So the problem with the red favicons is actually a bug with red. If maxH is 0 (red), we never end up updating maxS and maxV to return the correct color. Looking through this code, I noticed that we don't actually do anything with sat or val, and we only keep track of maxS and maxV to put a color back together, so I decided to streamline the logic. We may want to actually compute S and V values for the dominant color in the future, but this just clarifies our current behavior. I also found that the logic to skip black and white values was slightly off. We should be using an || instead of an &&. Fixing this returns yellow for the amazon.com logo.
Attachment #743868 - Flags: review?(wjohnston)
Attached patch Clean up getDominantColor logic (obsolete) — Splinter Review
Oops, most recent changes didn't make it in here.
Attachment #743868 - Attachment is obsolete: true
Attachment #743868 - Flags: review?(wjohnston)
Attachment #743869 - Flags: review?(wjohnston)
Comment on attachment 743869 [details] [diff] [review] Clean up getDominantColor logic Review of attachment 743869 [details] [diff] [review]: ----------------------------------------------------------------- This makes me nervous (but I know the old algorythm was prone to problems). Can you test a few webapps and see how we do (this should fix some bugs there too!)
Attachment #743869 - Flags: review?(wjohnston) → review+
Attached patch Improved patch (obsolete) — Splinter Review
This patch does what the patch in bug 826780 was trying to do, keeping track of the average hue/saturation/value per bin, then using that to compute the dominant color that we return. This patch also still fixes the bugs I mentioned in previous comments.
Attachment #743869 - Attachment is obsolete: true
Attachment #744284 - Flags: review?(bnicholson)
Attachment #744284 - Attachment is obsolete: true
Attachment #744284 - Flags: review?(bnicholson)
Attachment #744306 - Flags: review?(bnicholson)
Comment on attachment 744306 [details] [diff] [review] Even more improved patch Review of attachment 744306 [details] [diff] [review]: ----------------------------------------------------------------- Nice fixes.
Attachment #744306 - Flags: review?(bnicholson) → review+
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 23
Product: Firefox for Android → Firefox for Android Graveyard
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: