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

Implements a variety of helper functions. More...

Functions

def strtobool (val)
 

Detailed Description

Implements a variety of helper functions.

Function Documentation

◆ strtobool()

def ivapy.helper.strtobool (   val)
Convert a string representation of truth to true (1) or false (0).
True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values
are 'n', 'no', 'f', 'false', 'off', and '0'.  Raises ValueError if
'val' is anything else.