Top "Matching" questions

For questions related to pattern matching, using character sequences or tree structures.

Opencv matchTemplate not matching

I'm using OpenCV 3.0.0 to locate an image into another image. A priori the function matchTemplate is what i need to …

opencv matching matchtemplate
Most efficient way in Python to iterate over a large file (10GB+)

I'm working on a Python script to go through two files - one containing a list of UUIDs, the other …

python file design-patterns matching
Best way in php to find most similar strings?

Hell, PHP has a lot of string functions like levenshtein, similar_text and soundex that can compare strings for similarity. …

php matching levenshtein-distance
Python/Pandas: How to Match List of Strings with a DataFrame column

I want to compare two columnn -- Description and Employer. I want to see if any keywords in Employer are …

python regex string pandas matching
Similarity of trends in time series analysis

I am new in time series analysis. I am trying to find the trend of a short (1 day) temperature time …

time-series matching trend
How does the Hopcroft-Karp algorithm work?

I am currently working on a project to pictorially explain the Hopcroft-Karp algorithm. I am using the pseudo-code from the …

algorithm matching
Matching inexact company names in Java

I have a database of companies. My application receives data that references a company by name, but the name may …

java matching
Ocaml pattern matching multiple elements in a list at once

Lets say I have a list of type integer [1; 2; 3; 4; 5; 6; 7; 8] and I want to pattern match the first three elements at …

ocaml design-patterns elements matching
OpenCV - RobustMatcher using findHomography

I've implement a Robust matcher found on the internet based on differents tests : symmetry test, Ratio Test and RANSAC test. …

c++ opencv matching feature-descriptor
Find all subtrees in a tree matching a given subtree in Java

I am writing code in Java that uses an unordered, rooted tree where each node may have any number of …

java tree matching subtree isomorphism