IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
Distance-based puzzle piece matching. More...
Public Member Functions | |
def | __init__ (self, theParams=CfgDistance()) |
Constructor for the puzzle piece histogram class. More... | |
def | extractFeature (self, piece) |
![]() | |
def | compare (self, piece_A, piece_B) |
Compare two puzzle pieces. More... | |
![]() | |
def | score (self, piece_A, piece_B) |
Compute the score between two passed puzzle piece data. More... | |
def | solveMatchedPuzzle (self, puzzle, sol) |
Static Public Member Functions | |
def | buildFromConfig (matchConfig) |
Additional Inherited Members | |
![]() | |
params | |
Distance-based puzzle piece matching.
def __init__ | ( | self, | |
theParams = CfgDistance() |
|||
) |
Constructor for the puzzle piece histogram class.
[in] | tau | Threshold param to determine difference. |
Reimplemented from MatchDifferent.
|
static |
def extractFeature | ( | self, | |
piece | |||
) |
@brief Get the puzzle centroid value. @param[in] piece Puzzle piece to use. @param[out] Centroid "feature" vector.
Reimplemented from Matcher.