◆ __init__()
def __init__ |
( |
|
self, |
|
|
|
tau = 0.3 |
|
) |
| |
@brief Constructor for the puzzle piece histogram class.
Args:
tau: The threshold param to determine difference.
◆ 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:
- /home/pvela/python/puzzle_solver/puzzle/pieces/redone/histogram.py