tippy.display_operations
index
/home/jlengrand/git/Tippy/tippy/display_operations.py

Contains all functions related to graphical display.
 
Created on Nov 19, 2011
 
@author: Julien Lengrand-Lambert
@email: julien@lengrand.fr

 
Modules
       
cv
sys

 
Functions
       
display_single_image(img, name='Image', x_pos=0, y_pos=0, delay=0)
Displays an image on screen.
Position can be chosen, and time on screen too.
Delay corresponds to the display time, in milliseconds.
If delay =0, the Image stays on screen until user interaction.
----
Ex:
img = cv.LoadImage("../data/tippy.jpg", cv.CV_LOAD_IMAGE_GRAYSCALE)
display_single_image(img, "My Tippy", 0, 0, 100)