上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 94 下一页
摘要: Qt 整合SDL2报错 1>qtmaind.lib(qtmain_win.obj) : error LNK2019: 无法解析的外部符号 main,该符号在函数 WinMain 中被引用1>ifctest1.exe : fatal error LNK1120: 1 个无法解析的外部命令 解决方法一: 阅读全文
posted @ 2021-06-24 16:55 西北逍遥 阅读(585) 评论(0) 推荐(0) 编辑
摘要: QCryptographicHash Header: #include <QCryptographicHash>qmake: QT += coreSince: Qt 4.3 注意:在5.9之前的Qt版本中,当被要求生成SHA3时,qcryptographicshash实际上计算了Keccak。如果您 阅读全文
posted @ 2021-06-24 10:22 西北逍遥 阅读(445) 评论(6) 推荐(0) 编辑
摘要: Qt double float保留两位小数 double p9_d = P9_Value.toDouble(); float p9_f = P9_Value.toFloat(); QString p9_str2 = QString::number(p9_f, 'f', 2); P9_Value = 阅读全文
posted @ 2021-06-23 21:29 西北逍遥 阅读(3832) 评论(0) 推荐(0) 编辑
摘要: QVideoWidget类提供了一个小部件,它显示由媒体对象生成的视频。 将QVideoWidget附加到qmediao对象允许它显示该媒体对象的视频或图像输出。QVideoWidget通过在其构造函数中传递指向qmediao对象的指针来连接到媒体对象,并通过销毁QVideoWidget来分离。 p 阅读全文
posted @ 2021-06-23 20:55 西北逍遥 阅读(830) 评论(0) 推荐(0) 编辑
摘要: PSET_TYPEDRIVENOVERRIDE / IfcMaterial / Concrete NameTypeDescription CompressiveStrength P_SINGLEVALUE / IfcPressureMeasure 抗压强度混凝土的抗压强度。 MaxAggregate 阅读全文
posted @ 2021-06-22 15:27 西北逍遥 阅读(69) 评论(0) 推荐(0) 编辑
摘要: IfcCartesianPoint通过正交右手笛卡尔坐标系中的坐标定义点。本规范仅使用二维和三维笛卡尔点。 注:定义符合ISO/CD 10303-42:1992 笛卡尔点是由直角笛卡尔坐标系或参数空间中的坐标定义的点。实体在一个、两个或三维空间中定义,这些空间由列表中的坐标数决定。根据使用点的几何表 阅读全文
posted @ 2021-06-21 21:45 西北逍遥 阅读(224) 评论(1) 推荐(0) 编辑
摘要: 基于BIM ifc标准的施工过程模拟软件测试日志 id: 15935 name: "楼板:JG-b-200-0现浇:394165" class: IfcSlab global id: "254QierqvEmhhaZvvbSfsB" "楼板:JG-b-200-0现浇:394165" "LoadBea 阅读全文
posted @ 2021-06-20 21:19 西北逍遥 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 基于BIM ifc的施工模拟扩展测试日志 IfcPropertySet1.getName(); if (indexStr1=="体积"){ P7_Value = indexStr2;} "LoadBearing" "true" "IsExternal" "false" "Slope" "0" "Re 阅读全文
posted @ 2021-06-19 16:04 西北逍遥 阅读(74) 评论(0) 推荐(0) 编辑
摘要: unity3d给某个对象添加材质 public void SetMaterial() { GameObject indexGameObject=list_topIfcSlabs[5]; Renderer[] renders = indexGameObject.GetComponentsInChild 阅读全文
posted @ 2021-06-18 16:06 西北逍遥 阅读(524) 评论(0) 推荐(0) 编辑
摘要: 依次加载每一个ifc构件 #region /// <summary> /// Loads the buildingStorey components. /// </summary> /// 依次加载每一个构件 /// <returns>The building components2.</retur 阅读全文
posted @ 2021-06-17 17:20 西北逍遥 阅读(57) 评论(0) 推荐(0) 编辑
摘要: C# opencv Form显示图片 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System. 阅读全文
posted @ 2021-06-16 19:50 西北逍遥 阅读(768) 评论(0) 推荐(0) 编辑
摘要: C# opencv 加载图片 using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; using Open 阅读全文
posted @ 2021-06-15 15:04 西北逍遥 阅读(612) 评论(0) 推荐(0) 编辑
摘要: 首先要安装好:NuGet, 然后: 【工具】->【库程序包管理器】->【管理解决方案的NuGet程序包】,在其中搜索OpenCVSharp,选择合适的点击【安装】,等待完成。 正在尝试收集与目标为“.NETFramework,Version=v4.5.2”的项目“WindowsFormsApplic 阅读全文
posted @ 2021-06-15 14:55 西北逍遥 阅读(650) 评论(0) 推荐(0) 编辑
摘要: Qt图片采集软件 QDateTime current_File_time = QDateTime::currentDateTime(); QString currentTimeStr = current_File_time.toString("yyyyMMddhhmmsszzz"); QString 阅读全文
posted @ 2021-06-15 12:25 西北逍遥 阅读(79) 评论(0) 推荐(0) 编辑
摘要: private Queue<int> speedFBList = new Queue<int>(200); private void UpdateQueue2Value(int nowValue) { if (speedFBList.Count > 200) { speedFBList.Dequeu 阅读全文
posted @ 2021-06-14 21:36 西北逍遥 阅读(67) 评论(0) 推荐(0) 编辑
摘要: matlab 卡尔曼滤波 clear; close all; clc; n = 100; %观测值 Z=(1:n); %方差为1的高斯噪声、 noise = randn(1,n); Z = Z+noise; %Z=[1532 1487 1507 1527 1514 1455 1317 1255 17 阅读全文
posted @ 2021-06-13 21:49 西北逍遥 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 安装 pymysql (wind_2021) F:\PythonProject\ckf> (wind_2021) F:\PythonProject\ckf> (wind_2021) F:\PythonProject\ckf>pip install PyMysql Collecting PyMysql 阅读全文
posted @ 2021-06-12 21:03 西北逍遥 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 运行日志 [array([[ 0.66868017, -0.06951887]]), array([[0.93838978, 0.17386793]]), array([[0.79790524, 0.09173084]]), array([[ 0.88916698, -0.01456519]]), 阅读全文
posted @ 2021-06-11 15:26 西北逍遥 阅读(57) 评论(0) 推荐(0) 编辑
摘要: IfcShapeModel表示表示表示上下文中产品形状或产品组件形状的特定几何和/或拓扑表示的概念。此表示上下文必须是几何表示上下文(除了没有关联几何体的拓扑表示外)。这两个子类型是ifcshaperepression,用于覆盖表示形状的几何模型,以及ifctopology表示,以涵盖产品或产品组件 阅读全文
posted @ 2021-06-10 15:46 西北逍遥 阅读(93) 评论(0) 推荐(0) 编辑
摘要: Qt mysql查询结果处理 #include <QtSql/QSqlQuery> #include <QtSql/QSqlRecord> QSqlQuery query_sql = vcManageDatabaseObj->searchObjBySchoolNameAndNamePY(inputN 阅读全文
posted @ 2021-06-09 17:34 西北逍遥 阅读(733) 评论(0) 推荐(0) 编辑
摘要: python numpy 矩阵 from numpy import *; import numpy as np; randomMat1=np.matrix([0.26358242,0.35134772,0.43263799,2.87872261]); mul1 = np.matrix([100,15 阅读全文
posted @ 2021-06-08 20:17 西北逍遥 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 忙,好多天没打开了 %% clear; clc; close all load geoid % Create a figure with an Eckert projection. figure axesm eckert4; framem; gridm; axis off % Display the 阅读全文
posted @ 2021-06-07 19:47 西北逍遥 阅读(80) 评论(0) 推荐(0) 编辑
摘要: Header: #include <QDrag>qmake: QT += gui Public Functions QDrag(QObject *dragSource)virtual ~QDrag()Qt::DropAction defaultAction() constQPixmap dragCu 阅读全文
posted @ 2021-06-06 20:40 西北逍遥 阅读(335) 评论(0) 推荐(0) 编辑
摘要: python加载txt数据 矩阵 def loadDataKVSet(fileName): dataMat = [] fr = open(fileName,'r', encoding='utf-8') for line in fr.readlines(): curLine = line.strip( 阅读全文
posted @ 2021-06-05 21:31 西北逍遥 阅读(150) 评论(0) 推荐(0) 编辑
摘要: select 流程代码 from 地上 where 结构形式='框架结构' and 悬挑看台桁架=悬挑看台桁架类型 and 预制构件=是否预制 and 屋顶结构=屋顶类型 and 楼层=类层类型; 这一个大任务终于处理完了 ###################################### 阅读全文
posted @ 2021-06-04 14:58 西北逍遥 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 提取ifc对象数据 if(elementType==1) { BuildingStorey buildingStoreyObj = new BuildingStorey(); buildingStoreyObj.setName(ifcObjName); buildingStoreyObj.setGl 阅读全文
posted @ 2021-06-03 12:54 西北逍遥 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 真实:[1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 2. 3. 1. 阅读全文
posted @ 2021-06-02 21:24 西北逍遥 阅读(57) 评论(0) 推荐(0) 编辑
摘要: libpng warning: iCCP: known incorrect sRGB profilelibpng warning: iCCP: known incorrect sRGB profilelibpng warning: iCCP: known incorrect sRGB profile 阅读全文
posted @ 2021-06-01 22:09 西北逍遥 阅读(116) 评论(0) 推荐(0) 编辑
摘要: bug一个接一个 if (changeElementValueButton==nullptr) { changeElementValueButton = new QPushButton; changeElementValueButton->setMaximumWidth(22); changeEle 阅读全文
posted @ 2021-05-31 21:52 西北逍遥 阅读(76) 评论(0) 推荐(0) 编辑
摘要: if (this->qObjVector.size()==0) { ESMessageBox msgBox; msgBox.AutoSetSize(320, 180); msgBox.setText(tr(u8"图元未连接,请用箭头连接图元后保存!")); msgBox.exec(); return 阅读全文
posted @ 2021-05-30 22:00 西北逍遥 阅读(157) 评论(0) 推荐(0) 编辑
上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 94 下一页