1 2 3 4 5 ··· 96 下一页
摘要: 引言 工业基础类(Industry Foundation Classes, IFC)作为建筑信息模型(BIM)领域最具影响力的开放数据标准,不仅是工程实践中的技术基石,也长期受到学术界的广泛关注。自20世纪90年代提出以来,IFC标准经历了从概念构建、理论验证到多学科交叉研究的演进过程。本文系统梳理 阅读全文
posted @ 2026-02-28 09:13 西北逍遥 阅读(2) 评论(0) 推荐(0)
摘要: 在科技重塑各行各业的浪潮中,建筑行业曾一度被视为“保守的堡垒”。然而,随着建筑信息模型(BIM)技术的普及,这座堡垒的城墙正在被数据流穿透。在这一变革中,有一个名字虽然不常出现在大众视野,却是整个BIM生态系统得以运转的基石——IFC标准。它被誉为建筑行业的“普通话”,是实现设计、施工、运维全生命周 阅读全文
posted @ 2026-02-28 09:07 西北逍遥 阅读(1) 评论(0) 推荐(0)
摘要: IfcCrewResource 是 IFC(Industry Foundation Classes)标准中用于表示施工队资源的一种复合资源类型。它并非指单一的人员或设备,而是代表一个在施工过程中协同工作的资源集合,通常包含劳动力、施工设备以及其他必要的组件。 核心定义与用途- 基本概念:IfcCre 阅读全文
posted @ 2026-01-28 12:50 西北逍遥 阅读(3) 评论(0) 推荐(0)
摘要: 在 Qt 中,QPainter 的 Brush 设置是用于填充图形内部的。一旦你为 QPainter 设置了 Brush,它将被用于所有后续需要填充的绘图操作,直到后续改变这个 Brush 或者关闭填充(例如通过设置一个透明的或者纯色的 Brush)。重置 Brush:可以通过调用 QPainter 阅读全文
posted @ 2026-01-13 20:34 西北逍遥 阅读(11) 评论(0) 推荐(0)
摘要: # import mysql.connector from datetime import datetime, timezone from PyQt5.QtCore import pyqtSignal, QObject import time import threading class VC_DB 阅读全文
posted @ 2026-01-01 01:30 西北逍遥 阅读(4) 评论(0) 推荐(0)
摘要: pipeInputDict /* *- C++ -* *\ | | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2012 | | \\ / A nd | Website 阅读全文
posted @ 2025-12-31 22:43 西北逍遥 阅读(15) 评论(0) 推荐(0)
摘要: C++ Qt绘制图表,用鼠标点击图表的series的名称,实现图表中线条隐藏与显示 private slots: void onLegendMarkerClicked() { bool checked = false; qDebug() << "" << checked; QLegendMarker 阅读全文
posted @ 2025-12-19 23:21 西北逍遥 阅读(57) 评论(0) 推荐(0)
摘要: #include <QApplication> #include <QtCharts/QChartView> #include <QtCharts/QLineSeries> #include <QtCharts/QValueAxis> #include <QFont> #include <QTool 阅读全文
posted @ 2025-12-17 22:20 西北逍遥 阅读(43) 评论(0) 推荐(0)
摘要: #ifndef THERMAL_COLOR_MAP_H #define THERMAL_COLOR_MAP_H #include <QVector> #include <QColor> class ThermalColorMap { public: ThermalColorMap() { // 冷色 阅读全文
posted @ 2025-12-16 23:42 西北逍遥 阅读(41) 评论(0) 推荐(0)
摘要: #include "livox_mid70_sdk.h" #include "livox_mid70_def.h" #include <iostream> #include <thread> #include <chrono> #include <cstring> // 设备状态枚举 typedef 阅读全文
posted @ 2025-12-15 01:20 西北逍遥 阅读(64) 评论(0) 推荐(0)
摘要: import random def generate_random_colors(num_colors): """""" colors = [] for i in range(num_colors): # RGB color = [ random.randint(50, 255), random.r 阅读全文
posted @ 2025-11-28 09:36 西北逍遥 阅读(10) 评论(0) 推荐(0)
摘要: const int led_id =13; int led_state = LOW; long previous_millis = 0; long interval = 1000; void setup() { // put your setup code here, to run once: pi 阅读全文
posted @ 2025-11-21 22:16 西北逍遥 阅读(9) 评论(0) 推荐(0)
摘要: win10安装neo4j-community-3.5.7-windows 1、下载neo4j-community-3.5.7-windows 下载地址:https://we-yun.com/doc/neo4j/ 选择对应版本的文件,下载, 2、配置环境变量 NEO4J_HOME D:\neo4j-c 阅读全文
posted @ 2025-11-03 21:42 西北逍遥 阅读(48) 评论(0) 推荐(0)
摘要: win10安装MongoDB 3.0.15 Community 1、下载MongoDB 下载地址:https://www.mongodb.com/try/download/community-edition/releases/archive 安装步骤运行安装程序‌:双击下载好的.msi文件,启动安装 阅读全文
posted @ 2025-11-03 20:45 西北逍遥 阅读(59) 评论(0) 推荐(0)
摘要: from PIL import Image import os images = [Image.open(f) for f in sorted(os.listdir('J:\\PytorchProject\\jpg3\\')) if f.endswith('.jpg')] images[0].sav 阅读全文
posted @ 2025-10-01 00:02 西北逍遥 阅读(13) 评论(0) 推荐(0)
摘要: import torch # 1. 检查 PyTorch 版本 print("PyTorch 版本:", torch.__version__) # 应为 2.4.0 # 2. 检查 CUDA 是否可用 print("CUDA 可用:", torch.cuda.is_available()) # 应为 阅读全文
posted @ 2025-09-21 15:51 西北逍遥 阅读(38) 评论(0) 推荐(0)
摘要: start cmd /k "J: &&E:\Anaconda3\install\condabin\conda.bat activate wind_2021 && cd J:\PytorchProject\Tower_Control_20250903 && python vc_main.py" ### 阅读全文
posted @ 2025-09-11 11:34 西北逍遥 阅读(7) 评论(0) 推荐(0)
摘要: Djstra求解最短路径 import java.util.*; class ShortestPathToWork { private static class Node implements Comparable<Node> { final String name; final int dista 阅读全文
posted @ 2025-09-01 19:34 西北逍遥 阅读(12) 评论(0) 推荐(0)
摘要: Microsoft Windows [版本 10.0.19045.6093](c) Microsoft Corporation。保留所有权利。 C:\Users\BIM>chkdsk L: /f文件系统的类型是 NTFS。卷标是 新加卷。 阶段 1: 检查基本文件系统结构...删除损坏的文件记录段 阅读全文
posted @ 2025-08-06 10:31 西北逍遥 阅读(101) 评论(0) 推荐(0)
摘要: /** @brief This data structure holds the values of the robot's fingers. * \struct FingersPosition KinovaTypes.h "Definition" */ struct FingersPosition 阅读全文
posted @ 2025-07-31 22:43 西北逍遥 阅读(11) 评论(0) 推荐(0)
摘要: 安装psutil: pip install psutil import psutil def get_disk_space(drive_letter='D:'): """ 获取指定磁盘分区的空间使用情况 参数: drive_letter (str): 磁盘驱动器号,默认为'D:' 返回: tuple 阅读全文
posted @ 2025-07-08 16:17 西北逍遥 阅读(206) 评论(0) 推荐(0)
摘要: import sys import cv2 import numpy as np import requests from io import BytesIO from PyQt5.QtWidgets import QApplication, QLabel, QVBoxLayout, QWidget 阅读全文
posted @ 2025-06-16 17:55 西北逍遥 阅读(27) 评论(0) 推荐(0)
摘要: import sys import cv2 import numpy as np from PyQt5.QtCore import QThread, pyqtSignal, Qt from PyQt5.QtGui import QImage, QPixmap from PyQt5.QtWidgets 阅读全文
posted @ 2025-06-12 22:46 西北逍遥 阅读(15) 评论(0) 推荐(0)
摘要: import os import csv def process_files(folder_path, output_csv): # 准备数据列表 data = [] serial=1 # 遍历文件夹中的所有文件 for filename in os.listdir(folder_path): pr 阅读全文
posted @ 2025-05-15 23:37 西北逍遥 阅读(40) 评论(0) 推荐(0)
摘要: #include <QJsonDocument> #include <QJsonObject> #include <QJsonArray> #include <QJsonValue> #include <QFile> #include <QIODevice> #include <QDebug> // 阅读全文
posted @ 2025-05-13 17:09 西北逍遥 阅读(20) 评论(0) 推荐(0)
摘要: start cmd /k "H: && conda activate wind_2023 && cd H:\PytorchProject && python vc_main.py" start cmd /k "H: && call H:\Anaconda\install\Scripts\activa 阅读全文
posted @ 2025-04-13 08:36 西北逍遥 阅读(26) 评论(0) 推荐(0)
摘要: def putText_Img(self,img1): # now1 = datetime.now() self.now_date_str = now1.strftime("%Y-%m-%d %H:%M:%S") print(self.now_date_str) #self.cameraImg = 阅读全文
posted @ 2025-04-01 02:24 西北逍遥 阅读(51) 评论(0) 推荐(0)
摘要: 配置: tar zxvf jdk-8u65-linux-x64.gz -C /usr/lib/jvm vim /etc/profile export JAVA_HOME=/usr/lib/jvm/jdk1.8.0_65 export CLASSPATH=".:$JAVA_HOME/lib:$CLAS 阅读全文
posted @ 2025-03-21 18:40 西北逍遥 阅读(17) 评论(0) 推荐(0)
摘要: 安装: yum install gcc-c++ 下载redis源码: wget https://download.redis.io/releases/redis-6.2.6.tar.gz 解压: tar -zxvf redis-6.2.6.tar.gz 移动: mv redis-6.2.6 /usr 阅读全文
posted @ 2025-03-21 01:00 西北逍遥 阅读(34) 评论(0) 推荐(0)
摘要: import socket try: # 你的socket代码,例如创建一个连接 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect(('localhost', 8080)) except socket.timeout: p 阅读全文
posted @ 2025-03-03 15:56 西北逍遥 阅读(36) 评论(0) 推荐(0)
1 2 3 4 5 ··· 96 下一页