IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
Uses sift features to establish similarity. More...
Public Member Functions | |
def | __init__ (self, theParams=CfgSIFTCV()) |
Constructor for the puzzle piece sift class. More... | |
def | compare (self, piece_A, piece_B, tauMatch=None) |
Compare between two passed puzzle piece data. More... | |
def | extractFeature (self, piece) |
Compute SIFT features from the raw puzzle data. More... | |
def | score (self, piece_A, piece_B) |
Compute the score between two passed puzzle piece data. More... | |
def | solveMatchedPuzzle (self, puzzle, sol) |
![]() | |
def | compare (self, piece_A, piece_B) |
Additional Inherited Members | |
![]() | |
params | |
Uses sift features to establish similarity.
def __init__ | ( | self, | |
theParams = CfgSIFTCV() |
|||
) |
Constructor for the puzzle piece sift class.
Reimplemented from MatchSimilar.
def compare | ( | self, | |
piece_A, | |||
piece_B, | |||
tauMatch = None |
|||
) |
Compare between two passed puzzle piece data.
Note that this code has additional calculations that estimate the transformation that will register or align the puzzle pieces.
See references for idea behind this comparison:
https://opencv24-python-tutorials.readthedocs.io/en/latest/py_tutorials/py_feature2d/py_matcher/py_matcher.html and https://scikit-image.org/docs/dev/auto_examples/transform/plot_matching.html
Establish whether the registration code should be here or elsewhere. The reason for being here is that it takes advantage of matching computations made to prevent additional computations.
Yet, these are done whether it is a match or not. Better to not bother if not even a match. Going to go with that by rearranging the code [2023/11/03]. Delete note if acceptable.
[in] | piece_A | Template instance saving a piece's info. |
[in] | piece_B | Template instance saving a piece's info. |
[out] | Comparison | result & rotation angle(degree) & other params. |
def extractFeature | ( | self, | |
piece | |||
) |
Compute SIFT features from the raw puzzle data.
This function just extracts the SIFT features from the piece information. The calling scope needs to deal with the feature storage and matching part.
[in] | piece | Puzzle piece to use. |
Reimplemented from Matcher.
def score | ( | self, | |
piece_A, | |||
piece_B | |||
) |
Compute the score between two passed puzzle piece data.
[in] | piece_A | Template instance saving a piece's info. |
[in] | piece_B | Template instance saving a piece's info. |
[out] | Distance | of the feature vectors. (Overload if not proper). |
Reimplemented from Matcher.
def solveMatchedPuzzle | ( | self, | |
puzzle, | |||
sol | |||
) |
Reimplemented from Matcher.