摘要: Teigha中实体旋转 代码: using (var trans = database.TransactionManager.StartTransaction()) { Entity ent = trans.GetObject(entityId, OpenMode.ForWrite) asEntit 阅读全文
posted @ 2020-01-17 14:55 C#爆破 阅读(3758) 评论(6) 推荐(1) 编辑
摘要: Polyline3d: 3D polyline的类型由PolyType属性存储, 它是由Poly3dType枚举定义的整数值。PolyType属性是一种绘制三维折线的近似方法 Polyline3d polyline = new Polyline3d(Poly3dType.SimplePoly, p3 阅读全文
posted @ 2019-12-20 17:13 C#爆破 阅读(1296) 评论(2) 推荐(0) 编辑
摘要: 便签记录Mysql,Sql server,Sqlite,Access四种数据库的简单连接方式 //using MySql.Data.MySqlClient; #region 执行简单SQL语句,使用MySQL查询 static string strConn = "server=.;database= 阅读全文
posted @ 2019-06-28 16:55 C#爆破 阅读(1054) 评论(0) 推荐(0) 编辑
摘要: 在经过一系列的波折后,还是觉得delphi读取并修改json文件来的方便; 在网络上找到一个delphi的三方库ISuperObject,添加到项目后直接引用就行; 下载地址 ISuperObject中几个常用的函数: function SO(const s: SOString = ‘{}’): I 阅读全文
posted @ 2019-05-08 11:19 C#爆破 阅读(2519) 评论(0) 推荐(0) 编辑
摘要: //结构体的声明 typedef struct Mwinddirectbaseline { char* p; int s; int i; }Mwinddirectbaseline; typedef struct F { char* p; int s; int i; }F; typedef struc 阅读全文
posted @ 2019-04-25 11:22 C#爆破 阅读(818) 评论(0) 推荐(1) 编辑
摘要: 引用头文件: 1 __declspec(dllexport) void __stdcall read_JSon(char* path) 2 { 3 ifstream t(path); 4 string str((istreambuf_iterator<char>(t)),istreambuf_ite 阅读全文
posted @ 2019-04-22 11:15 C#爆破 阅读(7838) 评论(0) 推荐(0) 编辑
摘要: 具体效果实现: 第一次由于设备问题所以只训练了是一些个简单的字; 第二选了23个字训练了3000在字迹清晰下能够识别: 类似于默,鼠,鼓,这类文字也能识别,由于训练数据的问题,在测试的时候应尽量写在正中间 中文手写数据集下载: 链接:https://pan.baidu.com/s/1DCDUGmSE 阅读全文
posted @ 2019-01-25 15:58 C#爆破 阅读(1315) 评论(2) 推荐(0) 编辑
摘要: 卷积操作 tf.nn.conv2d(input, filter, strides, padding, use_cudnn_on_gpu=None, name=None) 除去name参数用以指定该操作的name,与方法有关的一共五个参数: input: 指需要做卷积的输入图像,它要求是一个Tenso 阅读全文
posted @ 2019-01-14 11:53 C#爆破 阅读(3840) 评论(0) 推荐(0) 编辑
摘要: 收集的Emgucv的整理书籍资料和Emgucv动态调试器:下载地址 本文代码下载:下载 阅读全文
posted @ 2019-01-04 16:04 C#爆破 阅读(9315) 评论(0) 推荐(2) 编辑
摘要: 通过: 手写数字识别 卷积神经网络模型官方案例详解(基于Tensorflow,Python) 手写数字识别 Softmax回归模型官方案例详解(基于Tensorflow,Python) 运行程序后得的四个文件,再通过手写的图片判断识别概率 代码: import numpy as np import 阅读全文
posted @ 2018-12-28 15:46 C#爆破 阅读(2798) 评论(0) 推荐(0) 编辑