Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. How to avoid real work

How to avoid real work

Scheduled Pinned Locked Moved The Lounge
databasegraphicsiotalgorithmstutorial
9 Posts 6 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H Offline
    H Offline
    honey the codewitch
    wrote on last edited by
    #1

    I made a silly IoT thing that tells you the name of the color you're pointing at. ESP32 X11 Color Detector w/ GFX - YouTube[^] It's not even useful as a color picker, because nobody needs a color picker on IoT. But it has 140 named X11 colors to choose from. Some of the choices, like finding indian red among the pinks, are surprising, but not inaccurate by cartesian color distance methods. Anyway, it's not really worth making an article out of, because it's not useful by itself, but presented as a curiosity for any of you PCers that want to adapt the idea into your projects. It's very simple. Get an HSV color value, use that to do your color picky things, and drawing, and then make a palette of named x11 colors. Use a cartesian distance matching algorithm to find the closest matching color in the palette, and then use that palette index as an index into a string table containing the color names. Anyway, just a silly toy i made.

    To err is human. Fortune favors the monsters.

    S D J A 4 Replies Last reply
    0
    • H honey the codewitch

      I made a silly IoT thing that tells you the name of the color you're pointing at. ESP32 X11 Color Detector w/ GFX - YouTube[^] It's not even useful as a color picker, because nobody needs a color picker on IoT. But it has 140 named X11 colors to choose from. Some of the choices, like finding indian red among the pinks, are surprising, but not inaccurate by cartesian color distance methods. Anyway, it's not really worth making an article out of, because it's not useful by itself, but presented as a curiosity for any of you PCers that want to adapt the idea into your projects. It's very simple. Get an HSV color value, use that to do your color picky things, and drawing, and then make a palette of named x11 colors. Use a cartesian distance matching algorithm to find the closest matching color in the palette, and then use that palette index as an index into a string table containing the color names. Anyway, just a silly toy i made.

      To err is human. Fortune favors the monsters.

      S Offline
      S Offline
      Super Lloyd
      wrote on last edited by
      #2

      I need that now! :-D :laugh: Nice btw! Now the computer can communicate to human better than me! ;P

      A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!

      1 Reply Last reply
      0
      • H honey the codewitch

        I made a silly IoT thing that tells you the name of the color you're pointing at. ESP32 X11 Color Detector w/ GFX - YouTube[^] It's not even useful as a color picker, because nobody needs a color picker on IoT. But it has 140 named X11 colors to choose from. Some of the choices, like finding indian red among the pinks, are surprising, but not inaccurate by cartesian color distance methods. Anyway, it's not really worth making an article out of, because it's not useful by itself, but presented as a curiosity for any of you PCers that want to adapt the idea into your projects. It's very simple. Get an HSV color value, use that to do your color picky things, and drawing, and then make a palette of named x11 colors. Use a cartesian distance matching algorithm to find the closest matching color in the palette, and then use that palette index as an index into a string table containing the color names. Anyway, just a silly toy i made.

        To err is human. Fortune favors the monsters.

        D Offline
        D Offline
        deepok1
        wrote on last edited by
        #3

        well, it might help severe color blindness people...

        1 Reply Last reply
        0
        • H honey the codewitch

          I made a silly IoT thing that tells you the name of the color you're pointing at. ESP32 X11 Color Detector w/ GFX - YouTube[^] It's not even useful as a color picker, because nobody needs a color picker on IoT. But it has 140 named X11 colors to choose from. Some of the choices, like finding indian red among the pinks, are surprising, but not inaccurate by cartesian color distance methods. Anyway, it's not really worth making an article out of, because it's not useful by itself, but presented as a curiosity for any of you PCers that want to adapt the idea into your projects. It's very simple. Get an HSV color value, use that to do your color picky things, and drawing, and then make a palette of named x11 colors. Use a cartesian distance matching algorithm to find the closest matching color in the palette, and then use that palette index as an index into a string table containing the color names. Anyway, just a silly toy i made.

          To err is human. Fortune favors the monsters.

          J Offline
          J Offline
          Jorgen Andersson
          wrote on last edited by
          #4

          honey the codewitch wrote:

          Anyway, it's not really worth making an article out of, because it's not useful by itself, but presented as a curiosity for any of you PCers that want to adapt the idea into your projects.

          That's what we have tips'n'tricks for. :)

          Wrong is evil and must be defeated. - Jeff Ello

          H 1 Reply Last reply
          0
          • J Jorgen Andersson

            honey the codewitch wrote:

            Anyway, it's not really worth making an article out of, because it's not useful by itself, but presented as a curiosity for any of you PCers that want to adapt the idea into your projects.

            That's what we have tips'n'tricks for. :)

            Wrong is evil and must be defeated. - Jeff Ello

            H Offline
            H Offline
            honey the codewitch
            wrote on last edited by
            #5

            If it wasn't useless, sure.

            To err is human. Fortune favors the monsters.

            J G 2 Replies Last reply
            0
            • H honey the codewitch

              If it wasn't useless, sure.

              To err is human. Fortune favors the monsters.

              J Offline
              J Offline
              Jorgen Andersson
              wrote on last edited by
              #6

              Seeing how you solved a problem isn't useless even if the application might be.

              Wrong is evil and must be defeated. - Jeff Ello

              1 Reply Last reply
              0
              • H honey the codewitch

                I made a silly IoT thing that tells you the name of the color you're pointing at. ESP32 X11 Color Detector w/ GFX - YouTube[^] It's not even useful as a color picker, because nobody needs a color picker on IoT. But it has 140 named X11 colors to choose from. Some of the choices, like finding indian red among the pinks, are surprising, but not inaccurate by cartesian color distance methods. Anyway, it's not really worth making an article out of, because it's not useful by itself, but presented as a curiosity for any of you PCers that want to adapt the idea into your projects. It's very simple. Get an HSV color value, use that to do your color picky things, and drawing, and then make a palette of named x11 colors. Use a cartesian distance matching algorithm to find the closest matching color in the palette, and then use that palette index as an index into a string table containing the color names. Anyway, just a silly toy i made.

                To err is human. Fortune favors the monsters.

                A Offline
                A Offline
                Alister Morton
                wrote on last edited by
                #7

                I have a vague recollection that someone has made a similar instrument to classify Lee, Rosco, Gam etc theatre gels, by passing light through them and then comparing against a database.

                1 Reply Last reply
                0
                • H honey the codewitch

                  If it wasn't useless, sure.

                  To err is human. Fortune favors the monsters.

                  G Offline
                  G Offline
                  Gary R Wheeler
                  wrote on last edited by
                  #8

                  Not useless! Based on the video this looks like a nice tidy little tool for folks designing apps for your environment.

                  Software Zen: delete this;

                  H 1 Reply Last reply
                  0
                  • G Gary R Wheeler

                    Not useless! Based on the video this looks like a nice tidy little tool for folks designing apps for your environment.

                    Software Zen: delete this;

                    H Offline
                    H Offline
                    honey the codewitch
                    wrote on last edited by
                    #9

                    But it runs on the end machine. If I was making a tool like that to generate color values, it really should be on a PC, and then use those values on the device. However, I did find a use case for a particularly complicated application with a lot of user defined settings where you can change colors around. This is useful for that.

                    To err is human. Fortune favors the monsters.

                    1 Reply Last reply
                    0
                    Reply
                    • Reply as topic
                    Log in to reply
                    • Oldest to Newest
                    • Newest to Oldest
                    • Most Votes


                    • Login

                    • Don't have an account? Register

                    • Login or register to search.
                    • First post
                      Last post
                    0
                    • Categories
                    • Recent
                    • Tags
                    • Popular
                    • World
                    • Users
                    • Groups