摘要: 这是一面墙的IFC数据内容 文档内容 ISO-10303-21;HEADER; /******************************************************************************************* STEP Physical Fil 阅读全文
posted @ 2018-07-04 08:51 西北逍遥 阅读(995) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <opencv2/opencv.hpp>#include <math.h> using namespace std;using namespace cv; //拉普拉斯 边缘计算void TLaplacian() { Mat img1, img 阅读全文
posted @ 2018-06-28 15:38 西北逍遥 阅读(4632) 评论(0) 推荐(0) 编辑
摘要: 一个球体与三个圆柱体形成一个组合体,在该组合体中,球体的透明度属性是由全透明到不透明之间变换,而且包括:旋转、平移等变换。 package com.vfsd.test0621; import java.applet.Applet;import java.awt.BorderLayout;import 阅读全文
posted @ 2018-06-22 10:00 西北逍遥 阅读(673) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-06-21 07:51 西北逍遥 阅读(1038) 评论(5) 推荐(0) 编辑
摘要: #include <opencv2/opencv.hpp>#include <iostream> using namespace std;using namespace cv; void ChangeImgBG();Mat HandleImgData(Mat &img);/*图片背景替换知识点:分水 阅读全文
posted @ 2018-06-20 19:42 西北逍遥 阅读(2662) 评论(0) 推荐(0) 编辑
摘要: 即系IFC数据并存储到关系型数据库中,目前解析的IFC文件是两亿多行,构件数量120万 参考论文:http://cpfd.cnki.com.cn/Article/CPFDTOTAL-JGCB201811001064.htm 阅读全文
posted @ 2018-06-16 19:26 西北逍遥 阅读(2219) 评论(0) 推荐(0) 编辑
摘要: #include <opencv2/opencv.hpp>#include <iostream> using namespace cv;using namespace std; //加载图片并显示灰度图void loadGrayImg(){ Mat src = imread("D:\\images\ 阅读全文
posted @ 2018-06-12 19:52 西北逍遥 阅读(9594) 评论(0) 推荐(0) 编辑
摘要: #include <opencv2/opencv.hpp>#include <iostream> using namespace cv;using namespace std; int main() { Mat src = imread("D:\\images\\1.jpg"); if (src.e 阅读全文
posted @ 2018-06-12 19:26 西北逍遥 阅读(202) 评论(0) 推荐(0) 编辑
摘要: rand()函数在(0,1)上创建均匀分布的随机数的数组 >> rand(3,5) ans = 0.8147 0.9134 0.2785 0.9649 0.9572 0.9058 0.6324 0.5469 0.1576 0.4854 0.1270 0.0975 0.9575 0.9706 0.80 阅读全文
posted @ 2018-06-04 07:44 西北逍遥 阅读(801) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-06-01 12:20 西北逍遥 阅读(737) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-05-19 12:52 西北逍遥 阅读(754) 评论(0) 推荐(1) 编辑
摘要: 链接:https://pan.baidu.com/s/1qgptzWprnZ1_fOpjVP3aFQ 密码:mqgu 阅读全文
posted @ 2018-05-15 12:31 西北逍遥 阅读(372) 评论(0) 推荐(0) 编辑
摘要: RRT(快速探索随机树) 是一种通用的方法,不管什么机器人类型、不管自由度是多少、不管约束有多复杂都能用。而且它的原理很简单,这是它在机器人领域流行的主要原因之一。不过它的缺点也很明显,它得到的路径一般质量都不是很好,例如可能包含棱角,不够光滑,通常也远离最优路径。 RRT 能在众多的规划方法中脱颖 阅读全文
posted @ 2018-05-14 07:48 西北逍遥 阅读(1801) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-05-13 16:28 西北逍遥 阅读(261) 评论(0) 推荐(0) 编辑
摘要: Non-convex MeshCollider with non-kinematic Rigidbody is no longer supported in Unity 5.If you want to use a non-convex mesh either make the Rigidbody 阅读全文
posted @ 2018-05-06 10:45 西北逍遥 阅读(1101) 评论(0) 推荐(0) 编辑
摘要: 有好多教程里面没有资源包,现在加密分享给大家 unity4.* 链接: https://pan.baidu.com/s/1XMo2zVpV3ZhkNZKOb6H0yw 密码: tqnt unity5.* 链接: https://pan.baidu.com/s/1Vr9HExcElnr9AYSBesR 阅读全文
posted @ 2018-05-06 10:08 西北逍遥 阅读(560) 评论(0) 推荐(0) 编辑
摘要: 由于市面上的一些教程时间比较早,入门学习时跟随教程安装容易出现各种错误,这些错误基本都是版本不同导致的 所以,我们安装过程中一定要指出包的版本,如果你已经遇到no module named six.moves这样的错误了,不要担心,只需要重复下面的命令即可成功安装 注:这里是python2.7 su 阅读全文
posted @ 2018-04-27 16:28 西北逍遥 阅读(4177) 评论(0) 推荐(0) 编辑
摘要: 打开unity3d软件,Edit - Preference - GI Cache选中 Custom Cache Location,切换到别的盘,然后点击 Clean Cache清空一次,再查看C盘,存储空间大增。 阅读全文
posted @ 2018-04-21 16:33 西北逍遥 阅读(6726) 评论(0) 推荐(0) 编辑
摘要: https://pan.baidu.com/s/1oJFkKq_mNVyk361PnhCKBA 阅读全文
posted @ 2018-04-11 13:46 西北逍遥 阅读(682) 评论(0) 推荐(0) 编辑
摘要: 光源绕一个物体旋转,按下鼠标左键时,光源位置旋转。 #include <GL/glut.h> static int spin = 0;static GLdouble x_1 = 0.0;static GLdouble y_1 = 0.0;static GLdouble z_1 = 0.0;void 阅读全文
posted @ 2018-03-10 20:27 西北逍遥 阅读(410) 评论(0) 推荐(0) 编辑
摘要: /*******************************************************robot.cpp*基于opengl的机械手臂示例代码*s:机械臂逆时针旋转*S:机械臂顺时针旋转*e:腕部逆时针旋转*E:腕部顺时针旋转************************* 阅读全文
posted @ 2018-03-08 18:08 西北逍遥 阅读(1083) 评论(0) 推荐(0) 编辑
摘要: 链接:https://pan.baidu.com/s/1dGQkk4T 密码:wu44 Visual Studio 2017配置OpenGL https://blog.csdn.net/qiangbizhi3622/article/details/79467994 https://www.cnblo 阅读全文
posted @ 2018-03-01 09:36 西北逍遥 阅读(2649) 评论(0) 推荐(0) 编辑
摘要: #include <GL\glut.h> float fEarth = 2.0f;//地球绕太阳的旋转角度float fMoon = 24.0f;//月球绕地球的旋转角度 void Init(){ glEnable(GL_DEPTH_TEST);//启用深度测试 glClearColor(0.0f, 阅读全文
posted @ 2018-01-28 19:14 西北逍遥 阅读(1249) 评论(0) 推荐(0) 编辑
摘要: //#include <gl\glut.h>#include <GL\glut.h>#include <iostream> using namespace std; float rtri;float rquad; GLfloat points0[5][3] = { {0,1,0},{-1,-1,1} 阅读全文
posted @ 2018-01-28 16:48 西北逍遥 阅读(3377) 评论(0) 推荐(0) 编辑
摘要: 1、安装Anaconda 下载 官方下载地址:https://www.continuum.io/downloads 所有安装包地址:https://repo.continuum.io/archive/ 这里使用 Python 3.5 版本的 “Anaconda3-4.2.0-Linux-x86_64 阅读全文
posted @ 2018-01-22 19:45 西北逍遥 阅读(1699) 评论(0) 推荐(0) 编辑
摘要: 有时候,我们无法找到Visual Studio Command Prompt,需要手动配置 打开 Visual studio2015,选择 "工具"—>"外部工具",点击 "添加" 这里有四个参数需要填写 初始目录可以自定义,我这里是: C:\Users\luo\AppData\Local\Prog 阅读全文
posted @ 2018-01-13 19:51 西北逍遥 阅读(2584) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-12-20 13:30 西北逍遥 阅读(4390) 评论(3) 推荐(0) 编辑
摘要: 1、下载OpenNi https://structure.io/openni 解压,点击运行 选择安装目录,默认即可 安装过程中有弹框,选择 安装 点击 完成 在相应的安装目录下即可找到 阅读全文
posted @ 2017-12-04 09:03 西北逍遥 阅读(651) 评论(0) 推荐(0) 编辑
摘要: #include <opencv2/opencv.hpp>#include<vector>#include <fstream> using namespace std;using namespace cv; int main(int argc, char* argv[]){ const char* 阅读全文
posted @ 2017-12-03 13:40 西北逍遥 阅读(3931) 评论(0) 推荐(0) 编辑
摘要: { "com.bim.ifc.ifc2x3.ifc2x3tc1.IfcBuilding (#104)-": [{ "objKey": "GlobalId", "objValue": "3ZkI21fNDEIxkybM8jtY4W" }, { "objKey": "Coordinates", "obj 阅读全文
posted @ 2017-11-20 13:15 西北逍遥 阅读(4632) 评论(1) 推荐(0) 编辑