2017年3月20日

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Emgu.CV.Structure; using Emgu.CV.CvEnum; using Emgu.CV; using System.Drawing;... 阅读全文
posted @ 2017-03-20 21:38 codeDog123 阅读(807) 评论(0) 推荐(0) 编辑
摘要: 算数-整数 算数-分数 算数-小数 算数-实数 算数-幂和根 算数-结合 算数统计 算数-数学运算 代数,方程,不等式 几何-直线,垂线 几何-三角形 几何-多边形 几何-圆 几何-立体几何 几何-几何坐标 实际应用 阅读全文
posted @ 2017-03-20 21:33 codeDog123 阅读(786) 评论(0) 推荐(0) 编辑

2017年3月16日

摘要: Server文件夹下会有一个server.xml文件。 阅读全文
posted @ 2017-03-16 10:51 codeDog123 阅读(1799) 评论(0) 推荐(0) 编辑

2017年3月12日

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data; using System.Data.SQLite; namespace FaceAttendance { class D... 阅读全文
posted @ 2017-03-12 22:04 codeDog123 阅读(244) 评论(0) 推荐(0) 编辑

2017年3月5日

摘要: http://blog.csdn.net/chenchaoxing/article/details/21994601 阅读全文
posted @ 2017-03-05 20:33 codeDog123 阅读(126) 评论(0) 推荐(0) 编辑

2017年3月1日

摘要: (1)json文件中如果出现单个的反斜杠'\',浏览器会报jsonParse error,这是因为反斜杠在json中必须使用''\\'才能正确。 (2)使用string.replaceAll("\\","\")出错。 在regex中"\\"表示一个"\",在java中一个"\"也要用"\\"表示。这 阅读全文
posted @ 2017-03-01 20:15 codeDog123 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 后端JAVA程序报错: 错误原因有可能是以下几种原因: (1)后端的JAVA类声明的时候忘记extends HttpServlet (2)Web.xml配置文件发生错误,往往是路径没有配置好 阅读全文
posted @ 2017-03-01 20:05 codeDog123 阅读(112) 评论(0) 推荐(0) 编辑

2017年2月14日

摘要: <1>下载faster-rcnn(https://github.com/ShaoqingRen/faster_rcnn) <2>使用vs2013编译caffe得到matcaffe,并将得到的文件夹放置在faster-rcnn/external/文件夹下 然后按照链接:http://blog.csdn 阅读全文
posted @ 2017-02-14 15:17 codeDog123 阅读(476) 评论(0) 推荐(0) 编辑

2017年1月11日

摘要: randn:产生正态分布的随机数或矩阵的函数 randn:产生均值为0,方差σ^2 = 1,标准差σ = 1的正态分布的随机数或矩阵的函数。 用法: Y = randn(m,n) 或 Y = randn([m n]):返回一个m*n的随机项矩阵。 Y = randn(m,n,p,...) 或 Y = 阅读全文
posted @ 2017-01-11 15:03 codeDog123 阅读(536) 评论(0) 推荐(0) 编辑

2017年1月10日

摘要: 添加图像标题:title('标题') 添加横坐标提示: xlabel('横坐标提示') 添加纵坐标提示: ylabel('纵坐标提示') 在坐标位置添加提示:text(x,y,'提示') %x为横坐标,y为纵坐标 绘制网格 grid LineSpec用字符串来表示,例如'-.'代表点和实线,'-.* 阅读全文
posted @ 2017-01-10 15:50 codeDog123 阅读(296) 评论(0) 推荐(0) 编辑

导航