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

Class description for a board, which is a locality sensitive bag. More...

Inheritance diagram for Board:
Inheritance graph
[legend]

Public Member Functions

def __init__ (self, *argv)
 Constructor for puzzle board. More...
 
def addPiece (self, piece, ORIGINAL_ID=False)
 Add puzzle piece instance to the board. More...
 
def addPieceFromImageAndMask (self, theImage, theMask, cLoc=None)
 Given a mask and an image of same base dimensions, use to instantiate a puzzle piece template. More...
 
def addPieces (self, pieces)
 Add puzzle piece to board. More...
 
def boundingBox (self)
 Iterate through pieces to get tight bounding box. More...
 
def clear (self)
 
def display_cv (self, theImage=None, fh=None, ID_DISPLAY=False, CONTOUR_DISPLAY=False, BOUNDING_BOX=False, window_name='Puzzle')
 Display the puzzle board as an image using matplot library. More...
 
def display_mp (self, theImage=None, ax=None, fh=None, ID_DISPLAY=False, CONTOUR_DISPLAY=False, BOUNDING_BOX=False)
 Display the puzzle board as an image using matplot library. More...
 
def extents (self)
 Iterate through puzzle pieces to get tight bounding box extents of the board. More...
 
def fromImageAndLabels (self, theImage, theLabels)
 
Template getPiece (self, id)
 Get puzzle piece instance based on id. More...
 
def markMissing (self, indSetMeasured)
 Given set of indices to measured pieces, mark remaining as unmeasured. More...
 
def offset (self, dr)
 Offset the location of the entire puzzle in the board. More...
 
def pieceLocations (self, isCenter=False)
 Returns list/array of puzzle piece locations. More...
 
def relabel (self, newLabels, idContinue)
 Relabel the puzzle piece IDs in the board using new label reassignments and adjust IDs for those without reassignment. More...
 
def rmPiece (self, id)
 
def size (self)
 Number of pieces on the board. More...
 
def testAdjacent (self, id_A, id_B, tauAdj)
 Check if two puzzle pieces are adjacent or not. More...
 
def toImage (self, theImage=None, ID_DISPLAY=False, COLOR=(0, 0, 0), ID_COLOR=(255, 255, 255), CONTOUR_DISPLAY=True, BOUNDING_BOX=True)
 Uses puzzle piece locations to create an image for visualizing them. More...
 

Public Attributes

 id_count
 
 pieces
 

Detailed Description

Class description for a board, which is a locality sensitive bag.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
argv 
)

Constructor for puzzle board.

Can pass contents at instantiation time or delay until later.

Args: *argv: The input params.

Member Function Documentation

◆ addPiece()

def addPiece (   self,
  piece,
  ORIGINAL_ID = False 
)

Add puzzle piece instance to the board.

Parameters
[in]piecePuzzle piece instance.
[in]ORIGINAL_IDFlag indicating where to keep piece ID or re-assign.

◆ addPieceFromImageAndMask()

def addPieceFromImageAndMask (   self,
  theImage,
  theMask,
  cLoc = None 
)

Given a mask and an image of same base dimensions, use to instantiate a puzzle piece template.


This implementation assumes that a whole image and an image-wide mask are provided for recovering a single piece. Then cLoc is not needed. rLoc can still be used.

Parameters
[in]theMaskMask of individual piece.
[in]theImageSource image with puzzle piece.
[in]cLocCorner location of puzzle piece [optional: None].

◆ addPieces()

def addPieces (   self,
  pieces 
)

Add puzzle piece to board.

◆ boundingBox()

def boundingBox (   self)

Iterate through pieces to get tight bounding box.

Parameters
[out]bboxBounding box coordinates: [[min x, min y], [max x, max y]]

◆ clear()

def clear (   self)
@brief Clear all the puzzle pieces from the board.

◆ display_cv()

def display_cv (   self,
  theImage = None,
  fh = None,
  ID_DISPLAY = False,
  CONTOUR_DISPLAY = False,
  BOUNDING_BOX = False,
  window_name = 'Puzzle' 
)

Display the puzzle board as an image using matplot library.

Parameters
[in]theImage
[in]fhFigure handle if available.
[in]ID_DISPLAYFlag indicating displaying ID or not.
[in]CONTOUR_DISPLAYFlag indicating drawing contour or not.
[out]fhFigure handle.

◆ display_mp()

def display_mp (   self,
  theImage = None,
  ax = None,
  fh = None,
  ID_DISPLAY = False,
  CONTOUR_DISPLAY = False,
  BOUNDING_BOX = False 
)

Display the puzzle board as an image using matplot library.

Parameters
[in]theImage
[in]fhFigure handle if available.
[in]ID_DISPLAYFlag indicating displaying ID or not.
[in]CONTOUR_DISPLAYFlag indicating drawing contour or not.
[in]axSubplot Axes if available
[out]fhFigure handle.

◆ extents()

def extents (   self)

Iterate through puzzle pieces to get tight bounding box extents of the board.

Parameters
[out]lengthsBounding box side lengths. [x,y]

◆ fromImageAndLabels()

def fromImageAndLabels (   self,
  theImage,
  theLabels 
)

◆ getPiece()

Template getPiece (   self,
  id 
)

Get puzzle piece instance based on id.

Parameters
[out]thePieceReturns the puzzle piece matcing the ID (if exists)

◆ markMissing()

def markMissing (   self,
  indSetMeasured 
)

Given set of indices to measured pieces, mark remaining as unmeasured.

Parameters
[in]indSetMeasuredIndex set indicating measured pieces.

◆ offset()

def offset (   self,
  dr 
)

Offset the location of the entire puzzle in the board.

Parameters
[in]drOffset in pixel units (dx, dy).

◆ pieceLocations()

def pieceLocations (   self,
  isCenter = False 
)

Returns list/array of puzzle piece locations.

Parameters
[in]isCenterFlag indicating whether the given location is for center. Otherwise, location returned is the upper left corner.
[out]pLocsA dict of puzzle piece id & location.

◆ relabel()

def relabel (   self,
  newLabels,
  idContinue 
)

Relabel the puzzle piece IDs in the board using new label reassignments and adjust IDs for those without reassignment.

The relabel operation is to preserve label consistency over time for a board.
That way, when plotting or displaying the board, the display is sensible amongst other reasons. The use of iContinue is to prevent an unassigned piece from displaying its original label that might duplicate a label reassignment or even be associated to a previously seen, but currently not seen, piece. Over the long term, we want the IDs to be unique, at least for the known pieces.

The current approach does not care to handle birth/death outcomes that result in a new piece being assigned an ID matching that of a previously new/birthed piece that then disappeared/died.

It is up to the calling context to ensure that the new ID labels are correct, and that the pieces missing labels should be given new IDs starting from idContinue.

Parameters
[in]newLabelsShould be board index to new ID tuple list.
[in]idContinueIndex to continue from for unmatched pieces.

◆ rmPiece()

def rmPiece (   self,
  id 
)
@brief Remove puzzle piece instance from board

@param[in]  id  ID label of piece to remove.

◆ size()

def size (   self)

Number of pieces on the board.

Parameters
[out]nPiecesNumber of pieces on the board.

◆ testAdjacent()

def testAdjacent (   self,
  id_A,
  id_B,
  tauAdj 
)

Check if two puzzle pieces are adjacent or not.

Parameters
[in]id_AId of puzzle piece A.
[in]id_BId of puzzle piece B.
[in]tauAdjDistance threshold for concluding adjacency.
[out]adjFlagFlag indicating adjacency of the two pieces.

◆ toImage()

def toImage (   self,
  theImage = None,
  ID_DISPLAY = False,
  COLOR = (0, 0, 0),
  ID_COLOR = (255, 255, 255),
  CONTOUR_DISPLAY = True,
  BOUNDING_BOX = True 
)

Uses puzzle piece locations to create an image for visualizing them.

If given an image, then will place in it. Recommended to provide theImage & BOUNDING_BOX option off. Currently, we have four cases:

  • Image provided & BOUNDING_BOX off -> An exact region is visible
  • Image provided & BOUNDING_BOX on -> The visible region will be adjusted. Should have the same size image output.
  • Image not provided & BOUNDING_BOX off -> May have some trouble if some region is out of the bounds (e.g., -2) then they will be shown on the other boundary.
  • Image not provided & BOUNDING_BOX on -> A bounding box region is visible.
Parameters
[in]theImageImage to insert pieces into.
[in]ID_DISPLAYFlag indicating displaying ID or not.
[in]COLORBackground color.
[in]ID_COLORID color.
[in]CONTOUR_DISPLAYFlag indicating drawing contour or not.
[in]BOUNDING_BOXFlag indicating outputting a bounding box area (with updated (0,0)) or not (with original (0,0)).
[out]theImageRendered image.

Member Data Documentation

◆ id_count

id_count

◆ pieces

pieces

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