上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 96 下一页
摘要: 基于BIM ifc的施工模拟扩展测试日志 IfcPropertySet1.getName(); if (indexStr1=="体积"){ P7_Value = indexStr2;} "LoadBearing" "true" "IsExternal" "false" "Slope" "0" "Re 阅读全文
posted @ 2021-06-19 16:04 西北逍遥 阅读(91) 评论(0) 推荐(0)
摘要: unity3d给某个对象添加材质 public void SetMaterial() { GameObject indexGameObject=list_topIfcSlabs[5]; Renderer[] renders = indexGameObject.GetComponentsInChild 阅读全文
posted @ 2021-06-18 16:06 西北逍遥 阅读(552) 评论(0) 推荐(0)
摘要: 依次加载每一个ifc构件 #region /// <summary> /// Loads the buildingStorey components. /// </summary> /// 依次加载每一个构件 /// <returns>The building components2.</retur 阅读全文
posted @ 2021-06-17 17:20 西北逍遥 阅读(63) 评论(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 西北逍遥 阅读(902) 评论(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 西北逍遥 阅读(637) 评论(0) 推荐(0)
摘要: 首先要安装好:NuGet, 然后: 【工具】->【库程序包管理器】->【管理解决方案的NuGet程序包】,在其中搜索OpenCVSharp,选择合适的点击【安装】,等待完成。 正在尝试收集与目标为“.NETFramework,Version=v4.5.2”的项目“WindowsFormsApplic 阅读全文
posted @ 2021-06-15 14:55 西北逍遥 阅读(768) 评论(0) 推荐(0)
摘要: Qt图片采集软件 QDateTime current_File_time = QDateTime::currentDateTime(); QString currentTimeStr = current_File_time.toString("yyyyMMddhhmmsszzz"); QString 阅读全文
posted @ 2021-06-15 12:25 西北逍遥 阅读(93) 评论(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 西北逍遥 阅读(75) 评论(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 西北逍遥 阅读(528) 评论(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 西北逍遥 阅读(75) 评论(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 西北逍遥 阅读(70) 评论(0) 推荐(0)
摘要: IfcShapeModel表示表示表示上下文中产品形状或产品组件形状的特定几何和/或拓扑表示的概念。此表示上下文必须是几何表示上下文(除了没有关联几何体的拓扑表示外)。这两个子类型是ifcshaperepression,用于覆盖表示形状的几何模型,以及ifctopology表示,以涵盖产品或产品组件 阅读全文
posted @ 2021-06-10 15:46 西北逍遥 阅读(101) 评论(0) 推荐(0)
摘要: Qt mysql查询结果处理 #include <QtSql/QSqlQuery> #include <QtSql/QSqlRecord> QSqlQuery query_sql = vcManageDatabaseObj->searchObjBySchoolNameAndNamePY(inputN 阅读全文
posted @ 2021-06-09 17:34 西北逍遥 阅读(814) 评论(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 西北逍遥 阅读(74) 评论(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 西北逍遥 阅读(97) 评论(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 西北逍遥 阅读(369) 评论(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 西北逍遥 阅读(162) 评论(0) 推荐(0)
摘要: select 流程代码 from 地上 where 结构形式='框架结构' and 悬挑看台桁架=悬挑看台桁架类型 and 预制构件=是否预制 and 屋顶结构=屋顶类型 and 楼层=类层类型; 这一个大任务终于处理完了 ###################################### 阅读全文
posted @ 2021-06-04 14:58 西北逍遥 阅读(54) 评论(0) 推荐(0)
摘要: 提取ifc对象数据 if(elementType==1) { BuildingStorey buildingStoreyObj = new BuildingStorey(); buildingStoreyObj.setName(ifcObjName); buildingStoreyObj.setGl 阅读全文
posted @ 2021-06-03 12:54 西北逍遥 阅读(163) 评论(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 西北逍遥 阅读(65) 评论(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 西北逍遥 阅读(143) 评论(0) 推荐(0)
摘要: bug一个接一个 if (changeElementValueButton==nullptr) { changeElementValueButton = new QPushButton; changeElementValueButton->setMaximumWidth(22); changeEle 阅读全文
posted @ 2021-05-31 21:52 西北逍遥 阅读(98) 评论(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 西北逍遥 阅读(167) 评论(0) 推荐(0)
摘要: 这是我遇到的最可怕的异常,调试了两天,还是没有头绪! QPixmap pixmap = this->grab(QRect(aleft, atop, awidth, aheight)); 0x00007FFE9E5F0B1A (Qt5Widgetsd.dll)处(位于 xxx.exe 中)引发的异常: 阅读全文
posted @ 2021-05-30 21:01 西北逍遥 阅读(526) 评论(0) 推荐(0)
摘要: Qt渐变染色 ColorGradientTest1.pro # # # Project created by QtCreator 2021-05-29T19:30:05 # # QT += core gui greaterThan(QT_MAJOR_VERSION, 4): QT += widget 阅读全文
posted @ 2021-05-29 19:51 西北逍遥 阅读(307) 评论(0) 推荐(0)
摘要: 主板说明 阅读全文
posted @ 2021-05-29 19:02 西北逍遥 阅读(100) 评论(0) 推荐(0)
摘要: 相关系数矩阵计算,忙里抽闲,加班加点,把这部分进度赶一赶,美丽的夏天开始了,这是在实验室的第五个夏天,每天的时间感觉都不够用,加油,不辜负每一天! import numpy as np import math def getPearsonMatrix(S_mat,thresholdValue): r 阅读全文
posted @ 2021-05-28 19:58 西北逍遥 阅读(2821) 评论(0) 推荐(0)
摘要: mapVar0 = sorted(mapVar.items(), key=lambda x: x[1], reverse=True) ################### 阅读全文
posted @ 2021-05-27 19:42 西北逍遥 阅读(130) 评论(0) 推荐(0)
摘要: 显卡信息 ################ 阅读全文
posted @ 2021-05-26 15:11 西北逍遥 阅读(49) 评论(0) 推荐(0)
摘要: 处理json文件中的文件名 package com.vfsd.core; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream 阅读全文
posted @ 2021-05-25 16:50 西北逍遥 阅读(315) 评论(0) 推荐(0)
上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 96 下一页