IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
Public Member Functions | Static Public Member Functions | Public Attributes | List of all members
Color Class Reference

OpenCV based camera interface. More...

Inheritance diagram for Color:
Inheritance graph
[legend]
Collaboration diagram for Color:
Collaboration graph
[legend]

Public Member Functions

None __init__ (self, configs=CfgColor(), K=None)
 Constructor for OpenCV2 camera interface. More...
 
def capture (self)
 Get the next frame. More...
 
def captureRGB (self)
 Snag the next set of RGB. More...
 
def display (self, image, ratio=0.5, window_name="Color")
 
def get (self, key)
 
def start (self)
 Start capturing the stream. More...
 
def stop (self)
 Stop capturing the stream. More...
 

Static Public Member Functions

def buildFromFile (configFile)
 

Public Attributes

 color_sensor
 
 gCW
 
 ready
 

Detailed Description

OpenCV based camera interface.

This class API serves as a simpler wrapper for the cv2 python camera capture interface, which itself is a wrapper for the C++ implementation.

Constructor & Destructor Documentation

◆ __init__()

None __init__ (   self,
  configs = CfgColor(),
  K = None 
)

Constructor for OpenCV2 camera interface.

Parameters
[in]configsSettings to apply.

Member Function Documentation

◆ buildFromFile()

def buildFromFile (   configFile)
static

◆ capture()

def capture (   self)

Get the next frame.

Parameters
[out]color_imageThe color image
[out]succ_flagSuccess flag of fetching next frame.

◆ captureRGB()

def captureRGB (   self)

Snag the next set of RGB.

Captures the color and depth pair as an RGBD image instance. The depth map should be returned in standard units (meters).

Parameters
[out]dataRGBD image data as an ImageRGBD element.
[out]flSuccessSuccess flag. True = both frames fetched.

◆ display()

def display (   self,
  image,
  ratio = 0.5,
  window_name = "Color" 
)

◆ get()

def get (   self,
  key 
)
Get attributes specified by the key

Args:
    key (str):      Choices: [exposure, gain, W_rgb, H_rgb, W_dep, H_dep, depth_scale, K]
Returns:
    value

◆ start()

def start (   self)

Start capturing the stream.

Note
Right now the construction does this, which is poor design.
Todo:
Should implement start/stop functionality and capture boolean.

◆ stop()

def stop (   self)

Stop capturing the stream.

Note
Right now not implemented.
Todo:
Should implement start/stop functionality and capture boolean.

Member Data Documentation

◆ color_sensor

color_sensor

◆ gCW

gCW

◆ ready

ready

The documentation for this class was generated from the following file: