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
Regular Class Reference

A puzzle has Regular pieces when they are all of a consistent sizing such that their edge structure can be compared in a standard North, South, East, West approach. More...

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

Public Member Functions

def __init__ (self, PuzzleTemplate y=None, r=(0, 0), id=None, theta=0, pieceStatus=PieceStatus.UNKNOWN)
 Constructor for the regular puzzle piece. More...
 
def printEdgeType (self)
 
def rotatePiece (self, theta)
 
def setEdgeType (self, direction, etype)
 Set up the type of the chosen edge. More...
 
- Public Member Functions inherited from Template
def deepcopy (self)
 
def displace (self, dr)
 Displace puzzle piece. More...
 
def display (self, fh=None)
 Display the puzzle piece contents in an image window. More...
 
def genFeature (self, theMatcher)
 
def getFeature (self, theMatcher=None)
 Get the feature vector of the puzzle piece. More...
 
def getMask (self, theMask, offset=[0, 0])
 Get an updated mask of the target. More...
 
def placeInImage (self, theImage, offset=[0, 0], CONTOUR_DISPLAY=False)
 Insert the puzzle piece into the image in the original location. More...
 
def placeInImageAt (self, theImage, rc, theta=None, isCenter=False, CONTOUR_DISPLAY=True)
 Insert the puzzle piece into the image at the given location. More...
 
def replaceSourceData (self, theImage, pOff=None)
 Replace a puzzle pieces source data by grabbing from an image. More...
 
def rotate (self, theta)
 Rotate piece appearance by given angle. More...
 
def setPlacement (self, r, isOffset=False, isCenter=False)
 Provide pixel placement location information. More...
 
def setStatus (self, theStatus)
 
def size (self)
 Return the dimensions of the puzzle piece image. More...
 
def toImage (self)
 Return the puzzle piece image (cropped). More...
 
def update (self, matchedPiece)
 Update template board puzzle piece based on association. More...
 

Static Public Member Functions

def buildFromMaskAndImage (theMask, theImage, cLoc, rLoc=None, pieceStatus=PieceStatus.MEASURED)
 Given a mask (individual) and an image of same base dimensions, use to instantiate a puzzle piece template. More...
 
def upgradeTemplate (thePiece)
 Given a Template instance, transfer to a Regular instance. More...
 
- Static Public Member Functions inherited from Template
def buildFromFullMaskAndImage (theMask, theImage, cLoc=None, rLoc=None, pieceStatus=PieceStatus.MEASURED)
 Given a mask and an image of same base dimensions, use to instantiate a puzzle piece template. More...
 
def buildSphere (radius, color, rLoc=[0, 0])
 Build a sphere piece. More...
 
def buildSquare (size, color, rLoc=[0, 0])
 Build a square piece. More...
 
def getEig (img)
 To find the major and minor axes of a blob and then return the aligned rotation. More...
 

Public Attributes

 class_image
 
 edge
 
 filtered_harris_pts
 
 rectangle_pts
 
 simple_harris_pts
 
 theta
 
- Public Attributes inherited from Template
 featVec
 
 id
 
 lifespan
 
 rLoc
 
 status
 
 theta
 
 y
 

Detailed Description

A puzzle has Regular pieces when they are all of a consistent sizing such that their edge structure can be compared in a standard North, South, East, West approach.

Usually Regular pieces are part of a Gridded puzzle.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
PuzzleTemplate  y = None,
  r = (0, 0),
  id = None,
  theta = 0,
  pieceStatus = PieceStatus.UNKNOWN 
)

Constructor for the regular puzzle piece.

Arguments are optional.

Parameters
[in]yPuzzle template instance.
[in]rLocation of the puzzle piece (top-left corner).
[in]thetaOrientation of the piece.
[in]pieceStatusMeasurement status.

Reimplemented from Template.

Member Function Documentation

◆ buildFromMaskAndImage()

def buildFromMaskAndImage (   theMask,
  theImage,
  cLoc,
  rLoc = None,
  pieceStatus = PieceStatus.MEASURED 
)
static

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

Parameters
[in]theMaskIndividual mask.
[in]theImageSource image.
[in]rLocPuzzle piece (corner) location in the whole image.
[in]theRegularPuzzle piece instance as a Regular piece.

Reimplemented from Template.

◆ printEdgeType()

def printEdgeType (   self)
@brief  Display the edge type of the piece.

◆ rotatePiece()

def rotatePiece (   self,
  theta 
)
@brief  Rotate the regular puzzle piece

Args:
    theta: The rotation angle.

Returns:
    theRegular: The rotated regular piece.

Reimplemented from Template.

◆ setEdgeType()

def setEdgeType (   self,
  direction,
  etype 
)

Set up the type of the chosen edge.

Parameters
[in]directionThe edge to be set up.
[in]etypeThe edge type.
Todo:
Shouldn't this be a private or protected member function?

◆ upgradeTemplate()

def upgradeTemplate (   thePiece)
static

Given a Template instance, transfer to a Regular instance.

Parameters
[in]thePiecePuzzle piece as a Template instance.
[out]Puzzlepiece as a Regular instance.

Member Data Documentation

◆ class_image

class_image

◆ edge

edge

◆ filtered_harris_pts

filtered_harris_pts

◆ rectangle_pts

rectangle_pts

◆ simple_harris_pts

simple_harris_pts

◆ theta

theta

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