Show HN: My first native iOS app – Cone, a real time color picker
41–50 of 164 posts
Re: Show HN: My first native iOS app – Cone, a real time color picker
#42Hi, 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…
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
#43Re: Show HN: My first native iOS app – Cone, a real time color picker
#44Re: Show HN: My first native iOS app – Cone, a real time color picker
#45Re: Show HN: My first native iOS app – Cone, a real time color picker
#46Nice idea! I just can't figure out why is the size of app almost 30MB?
Re: Show HN: My first native iOS app – Cone, a real time color picker
#47Re: Show HN: My first native iOS app – Cone, a real time color picker
#48Re: Show HN: My first native iOS app – Cone, a real time color picker
#49Earlier 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!
_, 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
#50Cool 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.