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

  • Home
  • SEARCH
  • 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

Ask A Question

Stats

  • Questions 192k
  • Answers 192k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer First it effectively creates a lookup from the "inner" sequence,… May 12, 2026 at 6:26 pm
  • Editorial Team
    Editorial Team added an answer static void DoWork() { var myclass = typeof(MyClass); var pi… May 12, 2026 at 6:26 pm
  • Editorial Team
    Editorial Team added an answer The folder view isn't HTML document, so you can not… May 12, 2026 at 6:26 pm

Related Questions

(resolved: see bottom) I have the following code snippet: Protected Sub SqlDataSource1_Inserted(ByVal sender As
I'm doing a custom 404 page for a large website that's undergoing a redesign.
I am total noob with XSL and XSL-FO and I am looking for some
I'm using TPTP to profile some slow running Java code an I came across

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.