Easy Color Picker : This package provides a nice color picker and eyedropper tool. Features: - No extra dependency - Provide eyedropper tool - Support 4 color spaces: RGB, HSV, Lab, CMYK - Support alpha channel - Provide convenient classes for color conversions, including: RGBHSV, RGBLab, RGBHex, assetstore.unity.com/pack…
πŸ‘︎ 10
πŸ’¬︎
πŸ“…︎ Apr 28 2020
🚨︎ report
[Question] HSV color space

Why when the V (value) is set to 0 I still see the color blue?

https://preview.redd.it/ywawahj96iy31.png?width=1920&format=png&auto=webp&s=6fa9c6bb7e2666cc2b0bc64d736a5f7184733ed0

Even though the value is the intensity of the color. So if the value is 0, it should be black!

This is the code:

https://pastebin.com/KX0kJVrd

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/ShlomiRex
πŸ“…︎ Nov 13 2019
🚨︎ report
How to define vaporwave colors in HSV color space?

I'd like to draw something in vaporwave style but I need to understand how to create this kind of color using the HSV bars

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Auroxen
πŸ“…︎ Jul 12 2019
🚨︎ report
DEFINE_GRADIENT_PALETTE() with HSV colors?

Hi guys, how to create a gradient palette using HSV values?

Meaning, I want the granular benefits of DEFINE_GRADIENT_PALETTE() where I can state which 0-255 index has what color, but I do not want to use non-intuitive RGB values.

Note: I tried using hsv2rgb_rainbow() conversion, but it quickly got complicated because DEFINE_GRADIENT_PALETTE() didnt compile unless it was placed outside a void function, yet hsv2rgb_rainbow() had to be placed inside one. And in the end the colors where not the right ones, so I'm thinking there must be a better way than what I tried?

πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/lit_amin
πŸ“…︎ Oct 29 2020
🚨︎ report
HSV Color Model

The HSV color model is a model that resembles how humans perceive color.

To gain insight on what exactly is this model and how it differs from the conventional RGB model, check out the new video where I go through the basics of HSV model and its relationship with the RGB model !

Feedback, if any is highly appreciated

https://youtu.be/fLFx6bnf1oA

πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/htripathi6
πŸ“…︎ Aug 05 2020
🚨︎ report
i gave random RGBA color to many objects. how to make them all now more grayish, (e.g. by decreasing S and V values in HSV color format?)

i want them to keep their random color that they have now, but to grayish them a bit, make them a bit more dead looking/gray/dull/plain/lifeless

right now theyre too strong colors and hurting in the eye

theyre set in RGBA color but i believe i can access HSV somehow, ideal would be decreasing the S and V values for them so its a bit more grayish and darkish/plainish

OF COURSE I MEAN IN CODE

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/IncrementalWin
πŸ“…︎ Aug 14 2020
🚨︎ report
This is a space for HSV positive people ONLY.

Any posts asking β€œis this herpes,” β€œdo I have herpes,” β€œwhat are my chances of getting herpes” etc. will be removed. If you continue to post threads asking these questions, you will be banned.

Please read the sidebar before posting.

Thanks!

πŸ‘︎ 68
πŸ’¬︎
πŸ“…︎ Feb 07 2020
🚨︎ report
[C++] opencv::cvtcolor(scr,dst,color_bgr2hsv), the target hsv mat got 101-255 value for s and v channel ?

Hi,

everyone,

I use the

cvtcolor(scr,dst,color_bgr2hsv);

to get the hsv color space from the original image;

I assume that s channel and v channel values should not be larger than 100;

however, I got a bunch of number range with 101-255.

I mean s and v should be the percentage number which should be in 0-100 right?

here is how I print them out:

unsigned char *input = (unsigned char*)(dst.data);
for(int i = 0;i < dst.cols;i++){
    for(int j = 0;j < dst.rows;j++){
        std::cout<<(int) input[dst.cols * j + i+ ]<<(int)input[dst.cols * j + i+1 ] << (int)input[dst.cols * j + i+2 ]<<endl;
    }
}

could not figure out where it goes wrong!

a little help here please!

thanks a ton

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/boydbuilding
πŸ“…︎ Jul 01 2020
🚨︎ report
iro.js - Featured by Codrops, an HSV color picker widget for JavaScript with zero dependencies and a modern SVG-based UI iro.js.org/
πŸ‘︎ 226
πŸ’¬︎
πŸ‘€︎ u/sudofox
πŸ“…︎ Mar 11 2019
🚨︎ report
Anyone else got this bug? It only happens when using Copy color and HSV settings v.redd.it/cmnvn2vkqku41
πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/RaptunoCyborg
πŸ“…︎ Apr 23 2020
🚨︎ report
I can't find a good "brown" color HSV range

I am trying to implement color detection with colors of m&m candies, I wanted to follow the route where I hardcode upper and lower HSV bounds. All the other colors (red,green,blue,orange,yellow) are okay since their hue values are different, but I can't choose suitable bounds of "brown" even though I played around with the color charts. When I show a brown object it either doesn't get recognized or gets treated as a darker orange.

Please help me find good HSV values for brown. I've been trying for a long time now. Thank you. Here are my other values for reference:

low_orange = np.array([10, 100, 100]) 
high_orange = np.array([18, 255, 255])  
low_yellow = np.array([25, 100, 100]) 
high_yellow = np.array([33, 255, 255])  
low_blue = np.array([93, 100, 100]) 
high_blue = np.array([126, 255, 255])  
low_green = np.array([39, 100, 100]) 
high_green = np.array([102, 255, 255])  
low_red = np.array([161, 100, 100]) 
high_red = np.array([179, 255, 255])
πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/Loodyeyes
πŸ“…︎ Dec 26 2019
🚨︎ report
How would you add color to and upgrade this basement kitchen space on a budget? reddit.com/gallery/o1q5bl
πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/ritorec
πŸ“…︎ Jun 17 2021
🚨︎ report
TIP an HSV Color Picker in typescript

(ok not "today" but recently)

It's your standard HSV color picker. This one is written in typescript.

https://github.com/mrkite/colorpicker

I'm particularly happy with how the hue ring turned out since it's drawn pixel-by-pixel and anti-aliased.

The hue ring is drawn to an offscreen ImageData buffer at creation, and then as you adjust the hue, it simply overwrites the live canvas with the offscreen buffer and then draws the updated Hue/Value block and the little selection handles on top.

It was originally part of a larger project but seemed useful enough to spin into its own standalone project.

πŸ‘︎ 25
πŸ’¬︎
πŸ‘€︎ u/mrkite77
πŸ“…︎ Sep 23 2019
🚨︎ report
β˜€οΈSaturday errands OOTD - F&F 23" Nulux 3 Color Space Dye Coal/ Asphalt Grey/ Rhino Grey (4), Swiftly RB Race Length Pink Mist (4), Like a Cloud Grey Sage (6) reddit.com/gallery/niknmv
πŸ‘︎ 60
πŸ’¬︎
πŸ“…︎ May 22 2021
🚨︎ report
Create color from HSV values

So, I was trying to make some fireworks of random colors for a game using particles, but they were often getting too dark using RGB. I remembered that I could use a random hue and keep saturation and value at maximum to get the effect I wanted, but Godot doesn't have a way to create a color from HSV values (even though it says so on the docs). I did a little digging on the internet and managed to adapt an algorithm I found for another language and it worked wonders, so I thought I'd share it here in case anyone else needs it.

func hsv_to_rgb(h, s, v, a = 1):
    #based on code at
    #http://stackoverflow.com/questions/51203917/math-behind-hsv-to-rgb-conversion-of-colors
    var r
    var g
    var b

    var i = floor(h * 6)
    var f = h * 6 - i
    var p = v * (1 - s)
    var q = v * (1 - f * s)
    var t = v * (1 - (1 - f) * s)

    match (int(i) % 6):
        0:
            r = v
            g = t
            b = p
        1:
            r = q
            g = v
            b = p
        2:
            r = p
            g = v
            b = t
        3:
            r = p
            g = q
            b = v
        4:
            r = t
            g = p
            b = v
        5:
            r = v
            g = p
            b = q
    return Color(r, g, b, a)

I don't know exactly how it works, but I can assure it does haha

πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/NeccoZeinith
πŸ“…︎ Jan 25 2019
🚨︎ report
My Sky Blue Ear Cushions arrived! I am loving the Space Gray and Sky Blue color combo.
πŸ‘︎ 608
πŸ’¬︎
πŸ“…︎ Apr 02 2021
🚨︎ report
Contemporary artists interest in space and expressive color

I am an art teacher and I'm currently putting together a lesson about spaces and expressive uses of color. I have plenty of examples of art from the modern period, but I'm struggling to find contemporary examples. I'm curious if anybody knows of artists I could look into, especially if they are artists of color.

Just to give some examples of what I mean:

Bedroom in Arles by van Gogh

Red room - Matisse

The Green Bridge by Lyonel Feninger

Lake George Reflection - Georgia o'keefe

Doesn't need to be a painting either. I've already considered James Turrell, just looking for a few more options.

πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/MicMit
πŸ“…︎ May 16 2021
🚨︎ report
Paint Tool Sai, color selection options (HSV v. V-HSV)

(V-HSV on the left, HSV on the right)

https://preview.redd.it/evj0hs3konp31.png?width=525&format=png&auto=webp&s=be7153bb5991636ef3ca42f709817fefcd7bde73

I noticed an option under Window>HSV/HSL Mode for 3 options, including HSV and HSL, as well as an already selected option of V-HSV. I wondered what the difference was between HSV and V-HSV, and it seems that HSV has a more stable gradation of saturation. Thought I'd post about this, sense I never thought about it until I stumbled on this setting, and I'm honestly liking the alternative mode over the one preselected.

Also, there seems to be this weird diagonal line on the V-HSV color wheel.

πŸ‘︎ 5
πŸ’¬︎
πŸ“…︎ Sep 30 2019
🚨︎ report
iro.js - Featured by Codrops, an HSV color picker widget for JavaScript with zero dependencies and a modern SVG-based UI iro.js.org/?1
πŸ‘︎ 27
πŸ’¬︎
πŸ‘€︎ u/sudofox
πŸ“…︎ Mar 11 2019
🚨︎ report
Info list on how to tell what resources are in the gen 2 space biome from the lootdrop color. From Phlinger Phoo’s latest video.
πŸ‘︎ 28
πŸ’¬︎
πŸ‘€︎ u/Dinoguy42
πŸ“…︎ Jun 06 2021
🚨︎ report
Space Lego Show is next weekend at the Downtown Hsv Library from 9-3. Check out space lego displays from the TN Valley Lego Club. Free and open to the public!
πŸ‘︎ 44
πŸ’¬︎
πŸ‘€︎ u/GeekOutHuntsville
πŸ“…︎ May 27 2019
🚨︎ report
Color Out of Space

So I just watched the 2019 film adaptation of Lovecraft's Color Out of Space and let me just say holy shit.

Nicolas Cage of course puts on his best performance but the story isn't lost in his overacting at all. The tone was overall creepy, which is really all I ask for from horror movies these days and the little easter eggs with the books like Necronomicon and the Willows were brilliant. Tommy Chong did very well in a true horror; I've wanted to see him in a different genre for a while and he did great. Last technical horror I've only seen him in was the Evil Bong movies (gotta give a shout-out to my buddy Brockton Mckinney for bringing us those films.) I give it a 9/10 on my grading scale. Others might not give it the same rating but, hey, it's opinion based.

πŸ‘︎ 16
πŸ’¬︎
πŸ‘€︎ u/thatguyruss
πŸ“…︎ Apr 27 2021
🚨︎ report
Me and son did another custom color - this one is on the new playmates space Godzilla reddit.com/gallery/mthsox
πŸ‘︎ 41
πŸ’¬︎
πŸ‘€︎ u/breakingd4d
πŸ“…︎ Apr 18 2021
🚨︎ report
Anyone know what's wrong with the HSV colors in the color picker?

Trying to recreation Volcano Orange, but H29 is green, not orange as it is everywhere else I look.

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/DragonUniverse227
πŸ“…︎ Sep 19 2018
🚨︎ report
Color Out of Space (2019)

Wow. If we can get more indie horror like this, I want it all. It’s like they took a note from Rob Bottin for the incredible effects and Panos Cosmatos for the Nic Cage insanity. I loved this movie, even if it was FUCKED. What’s everyone else’s feeling towards it?

πŸ‘︎ 91
πŸ’¬︎
πŸ‘€︎ u/spazatronik-rex
πŸ“…︎ Mar 07 2021
🚨︎ report
Hemmed my 10” align shorts to 7” and so pleased with the results! Colors: grey sage & wee are from space dark carbon ice grey. Also wearing free to be LL bra in jade grey. I’m 5’5” for reference 😊 reddit.com/gallery/mvsa0k
πŸ‘︎ 72
πŸ’¬︎
πŸ‘€︎ u/PharmD8834
πŸ“…︎ Apr 21 2021
🚨︎ report
Tried to used it. I thought... hey it’s a small space, and it speaks to trees and colors of the leaves, but no. White, white, and a touch of plain light blue is apparently as interesting as voters as voters are willing to go. Feeling like the game should be called NoDecor.
πŸ‘︎ 11
πŸ’¬︎
πŸ‘€︎ u/BHawkey95
πŸ“…︎ Apr 26 2021
🚨︎ report
This is a very minor thing, but I would love if color blind mode had an HSV slider so you could lock the ink colors to your favorite ones.

And that you could use any colors you'd want.

πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/IanMazgelis
πŸ“…︎ Mar 10 2018
🚨︎ report
Space love - the message, the title, colors, emotions, cute animals, unknown, well blended - I like it
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/hqnftarts
πŸ“…︎ Jun 03 2021
🚨︎ report
Testing some different color schemes for my space marines. CC appreciated !
πŸ‘︎ 31
πŸ’¬︎
πŸ‘€︎ u/Zattara89
πŸ“…︎ Apr 09 2021
🚨︎ report
I wrote a color selection library with gradients and HSV selection, here are some example uses for it! youtube.com/watch?v=vQUTc…
πŸ‘︎ 18
πŸ’¬︎
πŸ‘€︎ u/DeeDoubs
πŸ“…︎ Feb 29 2016
🚨︎ report
Space Bastards pencils to inks to colors (Darick Robertson, Pete Pantazis)

Co-created by Darick Robertson (the Boys, Transmetropolitan). Published monthly by Humanoids. Issue 4 in stores now. Issue 5 on sale 5/12!

Two huge 130 page Hardcover collections sold directly by the creators are available at www.spacebastards.com.

https://i.redd.it/j0tzw39m3ou61.gif

πŸ‘︎ 4
πŸ’¬︎
πŸ“…︎ Apr 22 2021
🚨︎ report
Michal playing space invaders on an esp32, with ps2 mouse, some mono sound displayed on an old VGA screen. all thanks to the great example on the fablg library. The library is well documented and the output, and this is only the 8 color mode, is impressive. got some ideas for using it :) v.redd.it/aqpbqh0n8zq61
πŸ‘︎ 90
πŸ’¬︎
πŸ‘€︎ u/talofer-99
πŸ“…︎ Apr 03 2021
🚨︎ report
I like to think there’s something cinematic about the everyday mundane. This week I’m highlighting the similarities of color across the spectrum of dwelling spaces. More images from my upcoming film photography book entitled SCARLET. reddit.com/gallery/ma7nud
πŸ‘︎ 93
πŸ’¬︎
πŸ‘€︎ u/zulu912000
πŸ“…︎ Mar 21 2021
🚨︎ report
flutter_colorpicker | A HSV color picker inspired by Chrome devtools and a material color picker for your Flutter app. pub.dartlang.org/packages…
πŸ‘︎ 11
πŸ’¬︎
πŸ‘€︎ u/Purple_Pizzazz
πŸ“…︎ Oct 10 2018
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.