IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
A base representation for a puzzle board, which is basically a collection of pieces. Gets used in many different ways. More...
Classes | |
class | Board |
Class description for a board, which is a locality sensitive bag. More... | |
class | CfgCorrespondences |
Configuration setting specifier for Correspondences class. More... | |
class | CorrespondenceParms |
class | Correspondences |
Class that compares two boards and generates correspondences across them. More... | |
Variables | |
int | SCORE_DIFFERENCE = 0 |
int | SCORE_SIMILAR = 1 |
A base representation for a puzzle board, which is basically a collection of pieces. Gets used in many different ways.
A puzzle board consists of a collection of puzzle pieces and their locations. There is no assumption on where the pieces are located. A board just keeps track of a candidate jigsaw puzzle state, or possibly the state of a subset of a given jigsaw puzzle. Think of it as a bag class for puzzle pieces, just that they also have locality.
! NOTES: 4 space indent. 100 columns.
============================== puzzle.board =============================
int SCORE_DIFFERENCE = 0 |
int SCORE_SIMILAR = 1 |