IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
Class that compares two boards and generates correspondences across them. More...
Public Member Functions | |
def | __init__ (self, theParams=CfgCorrespondences(), initBoard=None) |
Constructor for the board matcher class. More... | |
def | adapt (self) |
Perform adaptation based on correspondence as applicable. More... | |
def | correct (self) |
Perform correspondence correction if sensible. More... | |
def | correspond (self) |
Get correspondences based on the most recent measurement (contained). More... | |
def | greedyAssignment (self, scoreTable_shape, scoreTable_color, scoreTable_edge_color) |
Run the greedyAssignment for the score table. More... | |
def | HungarianAssignment (self, scoreTable, getInverse=False) |
Run Hungarian Assignment for the score table. More... | |
def | matchPieces (self) |
Match all the measured puzzle pieces with board prior in a pairwise manner to get meas to prior. More... | |
def | process (self, bMeas) |
Run correspondence pipeline to preserve identity of puzzle pieces. More... | |
Static Public Member Functions | |
def | buildMatcher (typeStr, matchConfig=None) |
Build out a Matcher instance for data association / puzzle correspondences. More... | |
Public Attributes | |
boardEstimate | |
boardMeasurement | |
matcher | |
params | |
pAssignments | |
pAssignments_rotation | |
scoreTable | |
scoreTable_shape | |
scoreType | |
skipList | |
Class that compares two boards and generates correspondences across them.
The comparison technique and properties are completely up to the programmer/engineer to establish. This class simply structures and faclitates the implementation. There is an implicit static assumption underlying the elements temporal evolution.
def __init__ | ( | self, | |
theParams = CfgCorrespondences() , |
|||
initBoard = None |
|||
) |
Constructor for the board matcher class.
[in] | solution | A solution/calibrated board instance. theParams: Any additional parameters in a structure. |
def adapt | ( | self | ) |
Perform adaptation based on correspondence as applicable.
If something special in the matching model depends on an underlying representation that is evolving over time and needs adaptation, then this is the place to implement. Adaptation differs from correction in that it may represent meta-parameters that support correspondence. These meta-parameters may need adjustment also.
|
static |
Build out a Matcher instance for data association / puzzle correspondences.
[in] | typeStr | Matching approach as string specification. |
[in] | matchConfig | Matching configuration (optional: uses default) |
def correct | ( | self | ) |
Perform correspondence correction if sensible.
If the correspondences rely on information that evolves in time and should be filtered or updated, this is where that gets implemented. Actions to occur here:
def correspond | ( | self | ) |
Get correspondences based on the most recent measurement (contained).
def greedyAssignment | ( | self, | |
scoreTable_shape, | |||
scoreTable_color, | |||
scoreTable_edge_color | |||
) |
Run the greedyAssignment for the score table.
Args: scoreTable_shape: The score table for the pairwise comparison (shape). scoreTable_color: The score table for the pairwise comparison (color). scoreTable_edge_color: The score table for the pairwise comparison (edge_color).
Returns: matched_id: The matched pair dict.
def HungarianAssignment | ( | self, | |
scoreTable, | |||
getInverse = False |
|||
) |
Run Hungarian Assignment for the score table.
Atempts to associate row elements with column elements to define an assignment mapping that gives column elements (ideally) the same ID as the row elements. Per scipy documentation for linear_sum_assignment:
Can also solve a generalization of the classic assignment problem where the cost matrix is rectangular. If it has more rows than columns, then not every row needs to be assigned to a column, and vice versa.
The score table shape will influence the operation of the Hungarian Assignment implementation. If the matrix is:
It is up to the outer scope to establish what is the best way to pass in the scoreTable and then to interpret the results. If the 1-1 association should operate in the opposite direction, then set getInverse to True.
Returning assignments as a dictionary to permit non-assignment.
[in] | scoreTAble | Score table for the pairwise comparison. |
[out] | matched_id | Matched pair dict. |
def matchPieces | ( | self | ) |
Match all the measured puzzle pieces with board prior in a pairwise manner to get meas to prior.
Only gets matches, does not act on them.
The matching outcome is internally stored in member variable (pAssignments).
def process | ( | self, | |
bMeas | |||
) |
Run correspondence pipeline to preserve identity of puzzle pieces.
[in] | bMeas | Measured board. |
boardEstimate |
boardMeasurement |
matcher |
params |
pAssignments |
pAssignments_rotation |
scoreTable |
scoreTable_shape |
scoreType |
skipList |