IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
Public Member Functions | List of all members
Moments Class Reference

Uses shape moments to establish similarity. More...

Inheritance diagram for Moments:
Inheritance graph
[legend]
Collaboration diagram for Moments:
Collaboration graph
[legend]

Public Member Functions

def __init__ (self, theParams=CfgMoments())
 
def extractFeature (self, piece)
 
def score (self, piece_A, piece_B)
 Compute the score between two passed puzzle piece data. More...
 
- Public Member Functions inherited from MatchDifferent
def compare (self, piece_A, piece_B)
 Compare two puzzle pieces. More...
 
- Public Member Functions inherited from Matcher
def solveMatchedPuzzle (self, puzzle, sol)
 

Additional Inherited Members

- Public Attributes inherited from Matcher
 params
 

Detailed Description

Uses shape moments to establish similarity.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  theParams = CfgMoments() 
)
@brief  Constructor for the puzzle piece moments class.

@param[in]  tau     Threshold param to determine difference.

Reimplemented from MatchDifferent.

Member Function Documentation

◆ extractFeature()

def extractFeature (   self,
  piece 
)
@brief  Compute moments from the raw puzzle data.


See https://learnopencv.com/shape-matching-using-hu-moments-c-python/

@param[in]  piece   Puzzle piece to use.

@param[out]  huMoments: A list of huMoments value.

Reimplemented from Matcher.

◆ score()

def score (   self,
  piece_A,
  piece_B 
)

Compute the score between two passed puzzle piece data.

Parameters
[in]piece_ATemplate instance saving a piece's info.
[in]piece_BTemplate instance saving a piece's info.
[out]Distanceof the feature vectors. (Overload if not proper).

Reimplemented from Matcher.


The documentation for this class was generated from the following file: