加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
helpers_test.go 326 Bytes
一键复制 编辑 原始数据 按行查看 历史
package gocv
import "math"
var eps = 0.00000001
func floatEquals(a, b float64) bool {
if math.Abs(a-b) < eps {
return true
}
return false
}
// round helper from https://stackoverflow.com/questions/39544571/golang-round-to-nearest-0-05
func round(x, unit float64) float64 {
return float64(int64(x/unit+0.5)) * unit
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化