How to load a yml file in python and work with it ?? <br><br>I used : import cv<br>            data = cv.Load("Z:/data/xyz_00000_<div id=":vr">300.yml")<br><br>But when I print data.. it just gives the detail of the image like number of rows and columns etc....<br>

I want read what is there in the pixel of the image.. <br><br>I tried to use the following code .. but it gives me only the pixel values not the information contained in pixel ??<br><br><pre>def AccessPixels(img):
    for y in range(0, img.height):
        for x in range(0, img.width):
            cv.Get2D(img, y, x) # Slow get pixel value.
            cv.Set2D(img, y, x, (0, 0, 0, 0)) # Slow set pixel value.<br><br><br></pre>can somebody help.. thanx in advance !!!</div>