2019年9月6日
摘要: lt:less than 小于 le:less than or equal to 小于等于 eq:equal to 等于 ne:not equal to 不等于 ge:greater than or equal to 大于等于 gt:greater than 大于 阅读全文
posted @ 2019-09-06 10:00 JudeHey 阅读(78) 评论(0) 推荐(0)
摘要: cmake编译opencv 编译过程出现文件下载失败问题: face_landmark_model.dat文件下载地址:https://github.com/opencv/opencv_3rdparty/tree/contrib_face_alignment_20170818 修改opencv/op 阅读全文
posted @ 2019-09-06 09:57 JudeHey 阅读(580) 评论(0) 推荐(0)
  2019年8月27日
摘要: TypeError: float() argument must be a string or a number, not 'list' python You can't call float on a list directly. You can use map to call float on 阅读全文
posted @ 2019-08-27 15:17 JudeHey 阅读(209) 评论(0) 推荐(0)
摘要: python 除法保留两位小数点 a = 1 b = 3 print(a/b) 方法一: print(round(a/b,2)) 方法二: print(format(float(a)/float(b),'.2f')) 方法三: print ('%.2f' %(a/b)) python 命令行参数 h 阅读全文
posted @ 2019-08-27 15:13 JudeHey 阅读(220) 评论(0) 推荐(0)
  2019年8月23日
摘要: 当windows 装有python2时装python3: 将 ~\Python\Python35\python.exe 改为python3.exe, 否则使用py 3 / pt 2 切换 删除 ~\Python\Python35\Scripts\ 中pip.exe后,可使用pip3 为 ~\Pyth 阅读全文
posted @ 2019-08-23 14:41 JudeHey 阅读(260) 评论(0) 推荐(0)
  2019年7月31日
摘要: 学习率 net: "xxx.prototxt" test_iter: 测试图片总数/测试批次 test_interval: 2000 test_initialization: false base_lr: 0.01 lr_policy: "multistep" lr_policy: "fixed" 阅读全文
posted @ 2019-07-31 12:26 JudeHey 阅读(172) 评论(0) 推荐(0)