Live data from Hacker News

Show HN: My first native iOS app – Cone, a real time color picker

coneapp.io

41–50 of 164 posts

Re: Show HN: My first native iOS app – Cone, a real time color picker

#42
post #25

Hi, HN! Really excited to share my little project here. Being a colorblind designer, it was often hard for me to figure the color names and decide which colors to use. Hence, I decided to make this app. Cone lets you pick colors in real time using the phone's camera. It lets you build color palettes while on the run, capturing and recording color for later comment/discussion, sending the colors to someone else quickl…

I'm color bind too. I'm actually jealous I didn't think of this. I have been working in Krita lately, and I'm guessing on colors. Krita will give hexadecimal # of a particuliar color, but not a worded description of the color.

This has so many potential uses--fashion websites for one. I can't go by the color on websites for the clothing; I need to look at the details for the written color. I usually just buy black, and people call me Jonny Cash. A therapist once asked me why I always wear black. Just too dissalusioned on so many levels to tell why. That was my last session.

I imagine sites like The Gap would pay for a custom app incorporated into their site?

Will I pay for this app? Maybe? It will be my first bought app. All these years, and I never gave Apple my CC, on principle. They might get it today though.

Re: Show HN: My first native iOS app – Cone, a real time color picker

#49
post #20

Earlier quoted context omitted.

Why RNN? I would probably settle for a nearest neighbour in Lab color space.

Because I'm no data scientist but I somewhat understand that a RNN can extrapolate a training set. Nearest neighbors are cool too!

You've got like 3 features, and a list of names with values for each one of those features. You could literally do

    _, result = min([(sqrt((i.R - c.R)^2 + (i.G - c.R)^2 + (i.B - c.B)^2), c) for c in colors]) 
and you're done.

Why would you want a computer to come up with color names anyway? They're identifiers, so you want them to be consistent. What if it comes up with names like Piss or Ennui? Why go through that trouble?

Re: Show HN: My first native iOS app – Cone, a real time color picker

#50

Cool indeed! I had a similar need and created https://github.com/Zalastax/colornamer . Finding a good source of names was the hardest part so you might want to complement your list of colors with those in my list.

I've made almost the same thing :) https://colorna.me/
Post reply on HN