I'm using OpenCV for a computer vision project, however, I need to do a pixel by pixel operation on the image which means accessing every pixel in a 640x480 image and changing it's HSV values. The image is made up of a 3D array X, Y and HSV Values, so a pixel at 130, 230 may have a HSV value of [12, 26, 18] or represented in the image: (130, 230, (12, 26, 18))
I need to perform an operation which allows me to add an amount X into the V value (element index 2) of the HSV values: (130, 230, (12, 26, 18))
I can do this using two loops:
for x in range(image.width):
for y in range(image.height/2):
initcolor = cv.Get2D(image, y, x)
initcolor2 = [0, 0, 10, 0]
summed = [sum(pair) for pair in zip(initcolor, initcolor2)]
cv.Set2D(image, y, x, summed)
But this is awfully slow and for some reason takes around 20 seconds to complete the operation over the entire image.
Is there a simpler, more faster way of achieving this?
cvobject into a 3D numpy-array of dimensions y*x*3, where in the third dimensions the HSV values would be stored and then manipulate on this? Search for 'numpy' here: opencv.willowgarage.com/wiki/PythonInterface – eumiro Apr 18 '11 at 12:57summed = [sum(pair) for pair in zip(initcolor, initcolor2)]withinitcolor[2] = initcolor[2] + 10and thencv.Set2D(image, y, x, initcolor), how much of a speed increase do yo get? – Seth Johnson Apr 18 '11 at 13:14