Home
last modified time | relevance | path

Searched refs:_epsilon (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/doc/pattern_tools/
Dsvgfig.py22 _epsilon = 1e-5 variable
2647 eps = _epsilon * abs(self.high - self.low)
2696 eps = _epsilon * (self.high - self.low)
2804 eps = _epsilon * (self.high - self.low)
2848 eps = _epsilon * (self.high - self.low)
2901 if 1.*abs(t - self.low)/last_granularity < _epsilon:
2903 if 1.*abs(t - self.high)/last_granularity < _epsilon:
2908 if abs(lowN - round(lowN)) < _epsilon and not low_in_ticks:
2910 if abs(highN - round(highN)) < _epsilon and not high_in_ticks:
2950 if self.low > original_ticks[0] + _epsilon or self.high < original_ticks[-1] - _epsilon:
[all …]
/external/opencv3/modules/core/include/opencv2/core/
Dtypes.hpp2221 TermCriteria::TermCriteria(int _type, int _maxCount, double _epsilon) in TermCriteria() argument
2222 : type(_type), maxCount(_maxCount), epsilon(_epsilon) {} in TermCriteria()