Tagged Questions

2
votes
1answer
848 views

polaroid filter from UIImage

I am trying to implement some image filters, like polaroid, in iphone. I searched on how to filter an existing UIImage to convert it into a polaroid style and come across this stackoverflow link. ...
2
votes
1answer
4k views

Convert RGB value to HSV

I've found a method on the Internet to convert RGB values to HSV values. Unfortunately, when the values are R=G=B, I'm getting a NaN, because of the 0/0 operation. Do you know if there is an ...
2
votes
1answer
2k views

RGB to HSV in PHP

In PHP, what is the most straightforward way to convert a RGB triplet to HSV values?
0
votes
1answer
156 views

Video Processing OpenCV?

I am trying to pass in a HSV frame from a video to the function, but the function does not seem to do anything to it. What am I doing wrong? The function is supposed to go through each pixel, and ...
0
votes
3answers
2k views

Converting an rgb image to hsv

I'm trying to convert an rgb image to the equivalent hsv one in C#. I found several algorithms to do the conversion but couldn't find how to save these values of an image after calculating it. For ...