Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 222545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T19:08:14+00:00 2026-05-11T19:08:14+00:00

Based on suggestions here @ SO, I have cataloged the average color for a

  • 0

Based on suggestions here @ SO, I have cataloged the average color for a set of stock images.
r,g,b = image.convert(“RGB”).resize((1,1), Image.ANTIALIAS).getpixel((0,0))

Now, I would like to present a color wheel to the user and run a search against my catalog to find images that are the closest match to the color selected.

I have read through several questions posted here that recommend “finding the distance between two colors”, and reference the Flickr Hacks book.

The Flickr Hack distance algorithm seems to be basically:


diffr = checkImage.r – search_r
diffg = checkImage.g – search_g
diffb = checkImage.b – search_b
distance = (diffr * diffr + diffg * diffg + diffb * diffb)
if distance < threshold then matched.


This method would require me to calculate the distance between my search color and every image’s color fingerprint. I was wondering if there is a way to somehow specify a “search area” based on the selected color (center point) and a pre-determined threshold (or search radius). Then construct a SQL like query to return all images that fall within this area.

Is this possible??

BTW, I’m implementing this in Python using PIL and related libraries.

Thanks for your help SO!

SR

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T19:08:14+00:00Added an answer on May 11, 2026 at 7:08 pm

    You can save significantly on computation by doing comparisons on each component instead of squaring to find the distance.

    if abs(check.r - search.r) < threshold and
       abs(check.g - search.g) < threshold and
       abs(check.b - search.b) < threshold 
    

    Combining this with cache tables will probably be enough for whatever you’re doing.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Based on the response to this question: Why does C++ have header files and
Based on my previous question here my new concern is how do I unit
Here is a brief summary of my aims. I have a list of data
I have a flash based game that has a high score system implemented with
Based on http://ant.apache.org/manual/Types/mapper.html Here's my target: <target name=ms.copy-example> <copy todir=${ms.custom}> <fileset dir=${ms.example}> <include name=build.xml
I have been looking at the WF Wizard examples on endpoint.tv and here: http://stevenalexander.posterous.com/integrating-a-persisted-wf40-workflow-with-mv
Just looking for some advice here on a small job I have to do.
My DAL is based on Entity Framework Code First. I have a post model
Here is the main problem. I have very large database (25,000 or so) of
I have a radio group where I need to do some math calculations based

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.