上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 96 下一页
摘要: matlab chol() [S]=chol(Ppr2)'; np.linalg.cholesky print(" "*20) Ppr2=np.array([[0.0119,-0.0832,-0.0287,-0.0072,0.0011],[-0.0832,5.2764,1.8354,0.7185,- 阅读全文
posted @ 2021-07-09 20:58 西北逍遥 阅读(243) 评论(0) 推荐(0)
摘要: numpy.random.randn() import numpy as np print(np.random.rand(5,5)) 随机生成的结果 [[0.30819634 0.56391944 0.00456188 0.34257512 0.92346913] [0.19165846 0.807 阅读全文
posted @ 2021-07-08 16:37 西北逍遥 阅读(40) 评论(0) 推荐(0)
摘要: IfcStructuralLoadTemperature 修改记录 ItemSPFXMLChangeDescription IFC2x3 to IFC4 IfcStructuralLoadTemperature DeltaTConstant X MODIFIED Name changed from  阅读全文
posted @ 2021-07-07 18:25 西北逍遥 阅读(50) 评论(0) 推荐(0)
摘要: IfcSurfaceReinforcementArea 描述构件所需的钢筋面积。 注:IfcStructuralLoadResource中未指定构件设计参数,如混凝土保护层、有效深度、网格或钢筋的方向(两个方向,可选三个方向)等。它们应在结构构件层面上进行规定。 IFC4中增加的新实体。 Forma 阅读全文
posted @ 2021-07-06 13:12 西北逍遥 阅读(59) 评论(0) 推荐(0)
摘要: RULE IfcRepresentationContextSameWCS FOR ( IfcGeometricRepresentationContext ); LOCAL IsDifferent : LOGICAL := FALSE; END_LOCAL; IF (SIZEOF(IfcGeometr 阅读全文
posted @ 2021-07-05 20:09 西北逍遥 阅读(61) 评论(0) 推荐(0)
摘要: IfcModulusOfTranslationalSubgradeReactionSelect 表示每个区域的结构面项目层理的层理度量。TRUE表示无限刚度(刚度)。FALSE表示没有刚度(释放)。数值表示有限的线弹性刚度。 IFC4中增加的新类型 Enumeration definition Co 阅读全文
posted @ 2021-07-04 13:55 西北逍遥 阅读(46) 评论(0) 推荐(0)
摘要: morphologyEx void Demo_1(int, void*) { cvtColor(img1, img_gray1, COLOR_BGR2GRAY); //二值化 threshold(img_gray1, img2, 0, 255, THRESH_BINARY | THRESH_OTSU 阅读全文
posted @ 2021-07-03 20:38 西北逍遥 阅读(60) 评论(0) 推荐(0)
摘要: IfcRotationalStiffnessSelect 转动刚度的量度。TRUE表示无限刚度(刚度)。FALSE表示没有刚度(释放)。数值表示有限的线弹性刚度。 IFC4中增加的的新类型。 Enumeration definition ConstantDescription IfcBoolean 阅读全文
posted @ 2021-07-02 17:51 西北逍遥 阅读(52) 评论(0) 推荐(0)
摘要: IfcTranslationalStiffnessSelect 线性刚度的量度。TRUE表示无限刚度(刚度)。FALSE表示没有刚度(释放)。数值表示有限的线性弹性刚度。 IFC4中增加的新类型。 Enumeration definition ConstantDescription IfcBoole 阅读全文
posted @ 2021-07-01 19:58 西北逍遥 阅读(60) 评论(0) 推荐(0)
摘要: IfcWarpingStiffnessSelect 刚度的量度。TRUE表示无限刚度(刚度)。FALSE表示没有刚度(释放)。数值表示有限的线弹性刚度。 IFC4中的增加的新类型。 Enumeration definition ConstantDescription IfcBoolean IfcWa 阅读全文
posted @ 2021-06-30 20:10 西北逍遥 阅读(49) 评论(0) 推荐(0)
摘要: C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.2\binC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.2\libnvvpC:\Program Files\NVIDIA GP 阅读全文
posted @ 2021-06-29 12:48 西北逍遥 阅读(813) 评论(0) 推荐(0)
摘要: yolov5单图片检测 import argparse import time from pathlib import Path import cv2 import torch import torch.backends.cudnn as cudnn from numpy import random 阅读全文
posted @ 2021-06-28 10:11 西北逍遥 阅读(843) 评论(1) 推荐(0)
摘要: PSET_TYPEDRIVENOVERRIDE / IfcMaterial NameTypeDescription MolecularWeight P_SINGLEVALUE / IfcMolecularWeightMeasure Molecular Weight Molecular weight 阅读全文
posted @ 2021-06-27 20:13 西北逍遥 阅读(52) 评论(0) 推荐(0)
摘要: 什么是ifc,ifc是什么 IFC或industry Foundation Classes是一种开源的BIM数据交换的标准。 IFC通常被称为交换格式。这并不完全正确。首先,IFC是一种标准,而不是一种格式。 我们在一个软件中建模,导出ifc,将导出的IFC导入到另一个应用程序并继续编辑。此过程将I 阅读全文
posted @ 2021-06-26 15:59 西北逍遥 阅读(4751) 评论(0) 推荐(0)
摘要: QTime /**************************************************************************** ** ** Copyright (C) 2017 The Qt Company Ltd. ** Copyright (C) 2016 阅读全文
posted @ 2021-06-25 15:28 西北逍遥 阅读(277) 评论(0) 推荐(0)
摘要: FFmpeg从视频中提取音频 #include <iostream> extern "C" { #include <libavutil/log.h> #include <libavformat/avformat.h> } enum class AUDIO_OP_ERRORS { NO_ERROR, 阅读全文
posted @ 2021-06-24 21:25 西北逍遥 阅读(799) 评论(0) 推荐(0)
摘要: 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 西北逍遥 阅读(707) 评论(0) 推荐(0)
摘要: QCryptographicHash Header: #include <QCryptographicHash>qmake: QT += coreSince: Qt 4.3 注意:在5.9之前的Qt版本中,当被要求生成SHA3时,qcryptographicshash实际上计算了Keccak。如果您 阅读全文
posted @ 2021-06-24 10:22 西北逍遥 阅读(509) 评论(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 西北逍遥 阅读(4004) 评论(0) 推荐(0)
摘要: QVideoWidget类提供了一个小部件,它显示由媒体对象生成的视频。 将QVideoWidget附加到qmediao对象允许它显示该媒体对象的视频或图像输出。QVideoWidget通过在其构造函数中传递指向qmediao对象的指针来连接到媒体对象,并通过销毁QVideoWidget来分离。 p 阅读全文
posted @ 2021-06-23 20:55 西北逍遥 阅读(927) 评论(0) 推荐(0)
摘要: PSET_TYPEDRIVENOVERRIDE / IfcMaterial / Concrete NameTypeDescription CompressiveStrength P_SINGLEVALUE / IfcPressureMeasure 抗压强度混凝土的抗压强度。 MaxAggregate 阅读全文
posted @ 2021-06-22 15:27 西北逍遥 阅读(77) 评论(0) 推荐(0)
摘要: IfcCartesianPoint通过正交右手笛卡尔坐标系中的坐标定义点。本规范仅使用二维和三维笛卡尔点。 注:定义符合ISO/CD 10303-42:1992 笛卡尔点是由直角笛卡尔坐标系或参数空间中的坐标定义的点。实体在一个、两个或三维空间中定义,这些空间由列表中的坐标数决定。根据使用点的几何表 阅读全文
posted @ 2021-06-21 21:45 西北逍遥 阅读(252) 评论(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 西北逍遥 阅读(146) 评论(0) 推荐(0)
摘要: 基于BIM ifc的施工模拟扩展测试日志 IfcPropertySet1.getName(); if (indexStr1=="体积"){ P7_Value = indexStr2;} "LoadBearing" "true" "IsExternal" "false" "Slope" "0" "Re 阅读全文
posted @ 2021-06-19 16:04 西北逍遥 阅读(86) 评论(0) 推荐(0)
摘要: unity3d给某个对象添加材质 public void SetMaterial() { GameObject indexGameObject=list_topIfcSlabs[5]; Renderer[] renders = indexGameObject.GetComponentsInChild 阅读全文
posted @ 2021-06-18 16:06 西北逍遥 阅读(547) 评论(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 西北逍遥 阅读(891) 评论(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 西北逍遥 阅读(632) 评论(0) 推荐(0)
摘要: 首先要安装好:NuGet, 然后: 【工具】->【库程序包管理器】->【管理解决方案的NuGet程序包】,在其中搜索OpenCVSharp,选择合适的点击【安装】,等待完成。 正在尝试收集与目标为“.NETFramework,Version=v4.5.2”的项目“WindowsFormsApplic 阅读全文
posted @ 2021-06-15 14:55 西北逍遥 阅读(753) 评论(0) 推荐(0)
摘要: Qt图片采集软件 QDateTime current_File_time = QDateTime::currentDateTime(); QString currentTimeStr = current_File_time.toString("yyyyMMddhhmmsszzz"); QString 阅读全文
posted @ 2021-06-15 12:25 西北逍遥 阅读(89) 评论(0) 推荐(0)
上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 96 下一页