2016年12月16日 星期五 --出埃及记 Exodus 21:11 If he does not provide her with these three things, she is to go free, without any payment of money.若不向她行这三样,她就可以不用钱赎,白白地出去.…
2017年4月16日 一周AnswerOpenCV佳作赏析 1.HelloHow to smooth edge of text in binary image, based on threshold.Something like anti-aliasing by openCv?example 题目:图片去毛刺 优质解答: #; } ) radius; Mat mInput,mOutput; Mat mChannel[]; split(mInput_Bg…
2019年12月13日10:35:20 1.介绍 2019年10月31日15:09:03 2.基本语法 2.1 定义变量 2019年10月31日16:12:34 1.函数外必须使用var定义变量 var a=1 b:=5 声明变量的一般形式是使用 var 关键字: var name type 其中,var 是声明变量的关键字,name 是变量名,type 是变量的类型. 2.没有全局变量说法,只有包变量 3.集中定义变量 var ( a int c string d bool ) 4.使用var…
2019年10月04日16:56:23 7. 模块 7.1 暴露一个类,字段 var bar = require("./bar.js"); var msg = "你好"; var info = "呵呵"; function showInfo(){ console.log(info); } exports.msg = msg; exports.info = info; exports.showInfo = showInfo; function Pe…