approximate Questions
3
Solved
I'm using OpenCV for image processing.
I am looking for a human body, wich I want to isolate (segment).
Currently, I am able to find the contour of the body, and approximate the contour with a Pol...
Redintegration asked 4/5, 2012 at 11:14
2
Solved
I've read about and understand floating point round-off issues such as:
>>> sum([0.1] * 10) == 1.0
False
>>> 1.1 + 2.2 == 3.3
False
>>> sin(radians(45)) == sqrt(2) / 2
...
Dawna asked 12/6, 2022 at 22:54
1
Solved
Here is documentation for assert_in_delta:
assert_in_delta(exp, act, delta = 0.001, msg = nil) public
For comparing Floats. Fails unless exp and act are within delta of each other.
assert_in...
Consequent asked 28/9, 2016 at 9:33
4
Solved
I know this question have been asked a lot of time.
I want a suggestion on which algorithm is suitable for approximate string matching.
The application is specifically for company name matching on...
Soapbox asked 18/11, 2010 at 7:45
2
Solved
I seek a state of the art algorithms to approximate string matching.
Do you offer me references(article, thesis,...)?
thank you
Lazor asked 13/2, 2015 at 10:37
5
Solved
Seemingly similar questions: "Finding closest number in an array" (in Java) and "find nearest match to array of doubles" (actually a geography problem).
I have a (sorted) array of doubles. Given a...
Selfjustifying asked 16/11, 2010 at 11:39
2
I'm trying to check how many strings in column A approximately match a string in column B.
Example:
If I have the string "angry_birds_iph_app" in column B, and "angry_birds_iph_app" and "an...
Stirk asked 11/2, 2013 at 21:40
2
We have a database of movies and series, and as the data comes from many sources of varying reliability, we'd like to be able to do fuzzy string matching on the titles of episodes. We are using Sol...
Disinfest asked 20/8, 2009 at 21:56
1
© 2022 - 2024 — McMap. All rights reserved.