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
Histogram Class Reference
Inheritance diagram for Histogram:
Inheritance graph
[legend]
Collaboration diagram for Histogram:
Collaboration graph
[legend]

Public Member Functions

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

Static Public Member Functions

def colorFeaExtract (piece, color_mode="RGB")
 

Constructor & Destructor Documentation

◆ __init__()

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

Args:
    tau: The threshold param to determine difference.

Member Function Documentation

◆ colorFeaExtract()

def colorFeaExtract (   piece,
  color_mode = "RGB" 
)
static
@brief Compute histogram from the raw puzzle data.
       See https://opencv-tutorial.readthedocs.io/en/latest/histogram/histogram.html

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

Returns:
    hist: The histogram.

◆ 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.

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