IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
Public Member Functions | Static Public Member Functions | List of all members
Moments Class Reference
Inheritance diagram for Moments:
Inheritance graph
[legend]
Collaboration diagram for Moments:
Collaboration graph
[legend]

Public Member Functions

def __init__ (self, tau=5)
 
def process (self, piece)
 
def score (self, piece_A, piece_B)
 

Static Public Member Functions

def shapeFeaExtract (piece)
 

Constructor & Destructor Documentation

◆ __init__()

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

Args:
    tau: The threshold param to determine difference.

Member Function Documentation

◆ process()

def process (   self,
  piece 
)
@brief Process the puzzle piece.

Returns:
    The processed feature.

◆ score()

def score (   self,
  piece_A,
  piece_B 
)
@brief Compute the score between two passed puzzle piece data.

Args:
    piece_A: A template instance saving a piece's info.
    piece_B: A template instance saving a piece's info.

Returns:
    distance: Distance.

◆ shapeFeaExtract()

def shapeFeaExtract (   piece)
static
@brief  Compute moments from the raw puzzle data.
See https://learnopencv.com/shape-matching-using-hu-moments-c-python/

Args:
    piece: A template instance saving a piece's info.

Returns:
    huMoments: A list of huMoments value.

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