IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
Classes | Functions
ivapy.display_cv Namespace Reference

Classes

class  plotfig
 

Functions

def bgr (bgr, ratio=None, window_name="Image")
 Display bgr image using the OpenCV. More...
 
def binary (bIm, ratio=None, window_name="Binary")
 Display binary image using OpenCV display routines. More...
 
def close (window_name)
 Close a given window by name. More...
 
def depth (depIm, depth_clip=0.08, ratio=None, window_name="OpenCV Display")
 Display depth image using OpenCV window. More...
 
def display_dep (depth, depth_clip=0.08, ratio=None, window_name="OpenCV Display")
 Display depth image using OpenCV window. More...
 
def display_rgb_dep (rgb, depth, depth_clip=0.08, ratio=None, window_name="OpenCV Display")
 
def getline_rgb (I, isClosed=False, window_name="Image")
 Quick and dirty equivalent implementation to Matlab's getline. More...
 
def getlinemask_rgb (I, window_name="Image")
 Quick and dirty polyline input to mask output. More...
 
def getpts_rgb (I, window_name="Image")
 Quick and dirty equivalent implementation to Matlab's getpts. More...
 
def gray (gim, ratio=None, window_name="Image")
 Display grayscale image using the OpenCV. More...
 
def images (list images, ratio=None, window_name="OpenCV Display")
 Display a set of images horizontally concatenated (side-by-side). More...
 
def markers_rgb (I, thePts, ptColor=(255, 255, 255), ptMarkType=cv2.MARKER_CROSS, ptSize=20, ptThickness=1, ptLineType=8, window_name="Marked Image")
 
def polyline_rgb (I, polyPts, isClosed=False, lineColor=(255, 255, 255), lineThickness=2, window_name="Poly+Image")
 Annotate image with sequential line segments from mouse input (open or closed path). More...
 
def rgb (rgb, ratio=None, window_name="Image")
 Display rgb image using the OpenCV. More...
 
def rgb_binary (cIm, bIm, ratio=None, window_name="Color+Binary")
 Display an RGB and binar image side-by-side using OpenCV API. More...
 
def rgb_depth (rgb, depth, depth_clip=0.08, ratio=None, window_name="OpenCV Display")
 Display rgb and depth images side-by-side using OpenCV. More...
 
def rgbd_wait_for_confirm (Callable rgb_dep_getter, color_type="rgb", window_name="display", instruction="Press \'c\' key to select the frames. Press \'q\' to return None", capture_click=False, ratio=None)
 Get imagery from callable, present to user, and process on user input. More...
 
def trackpoint (rgb, p, ratio=None, window_name="Image")
 Display rgb image with trackpoint overlay. More...
 
def trackpoint_binary (bIm, p, ratio=None, window_name="Image")
 Display binary image with trackpoint overlay. More...
 
def trackpoint_gray (gIm, p, ratio=None, window_name="Image")
 Display grayscale image with trackpoint overlay. More...
 
def trackpoints (rgb, p, ratio=None, window_name="Image")
 Display rgb image with multiple trackpoints overlaid. More...
 
def wait (dur=0)
 Wait specified duration (ms) for keypress. More...