IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
Puzzle type that is a set of interlocking puzzle pieces that get put together in a grid structure. All rows/columns have same number of pieces. More...
Public Member Functions | |
def | __init__ (self, theBoard=[], theParams=CfgGridded) |
Constructor for the puzzle.builder.adjacent class. More... | |
def | assert_gc (self, verbose=False) |
Assert the assigned grid coordinates are correct. More... | |
def | explodedPuzzle (self, dx=100, dy=50, bgColor=(0, 0, 0)) |
Create an exploded version of the puzzle. More... | |
def | getGc (self) |
Obtain the solution board pieces' grid coordinates. More... | |
def | retile (self, dx=150, dy=150, inOrder=True) |
Organize puzzle pieces according to gridding. More... | |
def | shuffle (self, numPieces=None, reorient=False, rotRange=[0, 30]) |
Randomly shuffle location of puzzle pieces of the puzzle. More... | |
![]() | |
def | processInterlocking (self) |
Process the solution board and determine what pieces are interlocking or adjacent. More... | |
![]() | |
def | processAdjacency (self) |
Process the solution board and determine what pieces are adjacent or "close enough." It will determine the adjacency matrix. More... | |
![]() | |
def | corrections (self, pLoc) |
Given an array of locations that correspond to the puzzle board (e.g., in the same order as puzzle board list), provide the correction vector that would move them to the calibrated locations. More... | |
def | distances (self, pLoc) |
Given an array of locations that correspond to the puzzle board (e.g., in same order as puzzle board list), provide the distances between the locations and the calibrated locations. More... | |
def | piecesInPlace (self, pLoc, tauDist=None) |
Return boolean array indicating whether the piece is correctly in place or not. More... | |
def | scoreBoard (self, theBoard) |
Given a puzzle board with in ordered correspondence with the calibrated puzzle board, in the same order as puzzle board list), provide a score for the distance between the puzzle piece locations and the calibrated locations. More... | |
def | scoreByLocation (self, pLoc) |
Given an array of locations that correspond to the puzzle board (e.g., in same order as puzzle board list), provide a score for the distance between the locations and the calibrated locations. More... | |
![]() | |
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... | |
Static Public Member Functions | |
def | buildFrom_ImageAndMask (theImage, theMask, theParams=CfgGridded(), show_grid=False) |
Given an image and an image mask, parse both to recover the puzzle calibration/solution. More... | |
def | buildFrom_ImageProcessing (theImage, theProcessor=None, theDetector=None, theParams=None) |
def | buildFrom_Sketch (theImage, theMask, theProcessor=None, theDetector=None, theParams=None) |
def | buildFromFile_ImageAndMask (fileName, theParams=None) |
Load a saved arrangement calibration/solution stored as an image and a mask. More... | |
def | buildFromFile_Puzzle (fileName, theParams=None) |
Load a saved arrangement calibration/solution puzzle board. More... | |
def | buildFromFiles_ImageAndMask (imFile, maskFile, theParams=None) |
Load a saved arrangement calibration/solution stored as separate image and mask files. More... | |
![]() | |
def | buildFrom_ImageAndMask (theImage, theMask, theParams=None) |
Given an image and an image mask, parse both to recover the puzzle calibration/solution. More... | |
Public Attributes | |
gc | |
ilMat | |
pshape | |
![]() | |
ilMat | |
![]() | |
adjMat | |
![]() | |
params | |
![]() | |
id_count | |
pieces | |
Puzzle type that is a set of interlocking puzzle pieces that get put together in a grid structure. All rows/columns have same number of pieces.
This class is an organized version of the interlocking class. Since the interlocking pieces lie on a regular grid, we can establish a relative ordering. If needed, it can be used for evaluating or interpreting a puzzle board and its correctness.
It also includes a scoring mechanism to indicate how "close" a current solution would be to the calibrated solution.
def __init__ | ( | self, | |
theBoard = [] , |
|||
theParams = CfgGridded |
|||
) |
Constructor for the puzzle.builder.adjacent class.
[in] | theBoard | Input board instance. |
[in] | theParams | Gridded puzzle configuration instance. |
Reimplemented from Interlocking.
def assert_gc | ( | self, | |
verbose = False |
|||
) |
Assert the assigned grid coordinates are correct.
Criteria for correctness of the gridding:
|
static |
Given an image and an image mask, parse both to recover the puzzle calibration/solution.
Instantiates a puzzle parser that gets applied to the submitted data to create a puzzle board instance. That instance is the calibration/solution.
[in] | theImage | Puzzle image data. |
[in] | theMask | Puzzle mask data. |
[in] | theParams | Gridded configuration instance. |
|
static |
@brief Given an image with regions clearly separated by some color or threshold, parse it to recover the puzzle calibration/solution. Can source alternative detector. Instantiates a puzzle parser that gets applied to the submitted data to create a puzzle board instance. That instance is the calibration/solution. @param[in] theImage: The puzzle image data. @param[in] theProcessor: The processing scheme. @param[in] theDetector: The detector scheme. @param[in] theParams Gridded configuration instance. @return thePuzzle Gridded puzzle board instance.
Reimplemented from Interlocking.
|
static |
@brief Given an image with regions clearly separated by some color or threshold, parse it to recover the puzzle calibration/solution. Can source alternative detector. Instantiates a puzzle parser that gets applied to the submitted data to create a puzzle board instance. That instance is the calibration/solution. @param[in] theImage: Puzzle image data. @param[in] theMask: Puzzle mask data. @param[in] theProcessor Processing scheme. @param[in] theDetector Detector scheme. @param[in] theParams Gridded configuration instance. @return thePuzzle Gridded puzzle board instance.
Reimplemented from Interlocking.
|
static |
Load a saved arrangement calibration/solution stored as an image and a mask.
The python file contains the puzzle board mask and image source data. It gets processed into an arrangement instance. If a threshold variable tauDist
is found, then it is applied to the arrangement instance.
[in] | fileName | Python file to load. |
[in] | theParams | Gridded configuration instance. |
Reimplemented from Interlocking.
|
static |
Load a saved arrangement calibration/solution puzzle board.
[in] | fileName | Python file to load. |
[in] | theParams | Gridded configuration instance. |
Reimplemented from Interlocking.
|
static |
Load a saved arrangement calibration/solution stored as separate image and mask files.
The source file contain the puzzle board image and mask data. It gets processed into an arrangement instance. If a threshold variable tauDist
is found, then it is applied to the arrangement instance.
[in] | imFile | Image file to load. |
[in] | maskFile | Mask file to load. |
[in] | theParams | Gridded configuration instance. |
Reimplemented from Interlocking.
def explodedPuzzle | ( | self, | |
dx = 100 , |
|||
dy = 50 , |
|||
bgColor = (0, 0, 0) |
|||
) |
Create an exploded version of the puzzle.
It is an image with no touching pieces.
The value for an exploded puzzle image is that it can be used to generate a simulated puzzle scenario that can be passed to a puzzle solver. It can also be used to define a quasi-puzzle problem, where the objective is to place the pieces in grid ordering like the exploded view (without needing to interlock). Doing see keeps puzzle piece well separated for simple puzzle interpretation algorithms to rapidly parse.
Currently, it is just explode but without changing the order. Otherwise, gc has to be updated too. Both the exploded puzzle image & the exploded puzzle board.
[in] | dx | Horizontal offset when exploding. |
[in] | dy | Vertical offset when exploding. |
[in] | bgColor | Background color to use in new regions. |
[out] | epImage | Image of exploded puzzle. |
[out] | epBoard | Board instance with exploded puzzle pieces. |
def getGc | ( | self | ) |
Obtain the solution board pieces' grid coordinates.
[out] | gc | Grid coordinates assigned to each pieces, (2, N_pieces). |
def retile | ( | self, | |
dx = 150 , |
|||
dy = 150 , |
|||
inOrder = True |
|||
) |
Organize puzzle pieces according to gridding.
Takes the puzzle pieces as ordered in the list and attaches them to a gridding respecting the puzzle shape. If there are not enough puzzle pieces, then it will stop at last one. If there are too many, then these will be dumped below the gridding with extra vertical offset.
[in] | dx | Horizontal step increment of grid. |
[in] | dy | Vertical step increment of grid. |
[in] | inOrder | Sort by puzzle piece ID. |
def shuffle | ( | self, | |
numPieces = None , |
|||
reorient = False , |
|||
rotRange = [0,30] |
|||
) |
Randomly shuffle location of puzzle pieces of the puzzle.
Basically takes random mapping of puzzle pieces to each other, then swaps locations and IDs. That should shuffle everything up.
[in] | numPieces | Number of pieces to shuffle (default: None = All pieces). |
[in] | reorient | Also apply random rotation (default: False). |
[in] | rotRange | Range of random rotation if reorienting. |
[out] | idMap | The ground truth shuffling as a dict [oldId -> newId] |
gc |
ilMat |
pshape |