Fix small typo: mutlithreading -> mutlithreading

This commit is contained in:
Tim Gates 2019-11-11 07:47:40 +11:00
parent d2b8761eb3
commit cc9faec76e
No known key found for this signature in database
GPG key ID: AE3BE0D53823CF05

View file

@ -280,7 +280,7 @@ Notice of course since the matching itself is single threaded, the matching time
if we disregard the miniscule constant term.
The overhead of peak finding is the bottleneck - I experimented with mutlithreading and realtime matching, and alas, it wasn't meant to be in Python. An equivalent Java or C/C++ implementation would most likely have little trouble keeping up, applying FFT and peakfinding in realtime.
The overhead of peak finding is the bottleneck - I experimented with multithreading and realtime matching, and alas, it wasn't meant to be in Python. An equivalent Java or C/C++ implementation would most likely have little trouble keeping up, applying FFT and peakfinding in realtime.
An important caveat is of course, the round trip time (RTT) for making matches. Since my MySQL instance was local, I didn't have to deal with the latency penalty of transfering fingerprint matches over the air. This would add RTT to the constant term in the overall calculation, but would not effect the matching process.