上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 96 下一页
摘要: 判断字符串中是否有数字 public static boolean HasDigit(String content) { boolean flag = false; Pattern p = Pattern.compile(".*\\d+.*"); Matcher m = p.matcher(cont 阅读全文
posted @ 2022-05-11 15:31 西北逍遥 阅读(133) 评论(0) 推荐(0)
摘要: 加载ifc地形数据,计算山体体积 ################ 阅读全文
posted @ 2022-05-10 19:21 西北逍遥 阅读(66) 评论(0) 推荐(0)
摘要: QColor QColor() QColor(Qt::GlobalColor color) QColor(int r, int g, int b, int a = ...) QColor(QRgb color) QColor(QRgba64 rgba64) QColor(const QString 阅读全文
posted @ 2022-05-10 06:56 西北逍遥 阅读(1884) 评论(0) 推荐(0)
摘要: QBrush QBrush() QBrush(Qt::BrushStyle style) QBrush(const QColor &color, Qt::BrushStyle style = Qt::SolidPattern) QBrush(Qt::GlobalColor color, Qt::Br 阅读全文
posted @ 2022-05-09 02:11 西北逍遥 阅读(672) 评论(0) 推荐(0)
摘要: qt布局测试 //dockWidget_log scrollAreaLogDock = new QScrollArea(dockWidget_log); scrollAreaLogDock->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSiz 阅读全文
posted @ 2022-05-08 12:49 西北逍遥 阅读(50) 评论(0) 推荐(0)
摘要: QFile #include <QFile> QFile file("in.txt"); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) return; while (!file.atEnd()) { QByteArray line = 阅读全文
posted @ 2022-05-07 07:58 西北逍遥 阅读(337) 评论(0) 推荐(0)
摘要: 塔吊花车移动计算 void TowerPanel::slotMoveSlider(int sliderValue) { slider_length = sliderValue*1.0f; hook_position_x = center_x*(-0.0f) + slider_length*cos(a 阅读全文
posted @ 2022-05-06 20:40 西北逍遥 阅读(57) 评论(0) 推荐(0)
摘要: Pset_ColumnCommon 所有引用和类型对象定义的公共属性。 NameTypeDescription Reference P_SINGLEVALUE / IfcIdentifier Bauteiltyp Bezeichnung zur Zusammenfassung gleichartig 阅读全文
posted @ 2022-05-06 05:59 西北逍遥 阅读(41) 评论(0) 推荐(0)
摘要: echarts鼠标悬停显示对应数据 tooltip : { trigger: 'axis', position: function (point, params, dom, rect, size) { // size为当前窗口大小 if ((size.viewSize[0] / 2) >= poin 阅读全文
posted @ 2022-05-05 21:37 西北逍遥 阅读(3299) 评论(0) 推荐(0)
摘要: python alphashape alphashape_opt = alphashape.optimizealpha(bottom_points)alphashape_obj = alphashape.alphashape(bottom_points, alphashape_opt)hull_re 阅读全文
posted @ 2022-05-04 20:43 西北逍遥 阅读(820) 评论(0) 推荐(0)
摘要: python opencv提取图片中的矩形区域 s_x, s_y,e_x,e_y = int(xyxy[0]), int(xyxy[1]), int(xyxy[2]), int(xyxy[3]) index_rect_obj = im0[s_y:e_y,s_x:e_x] cv2.imshow(str 阅读全文
posted @ 2022-05-04 15:37 西北逍遥 阅读(1145) 评论(0) 推荐(0)
摘要: pip install econml Requirement already satisfied: econml in l:\anaconda_2021\install\lib\site-packages (0.13.0) Collecting dowhy<0.7 Using cached dowh 阅读全文
posted @ 2022-05-03 08:59 西北逍遥 阅读(625) 评论(0) 推荐(0)
摘要: yolov5训练安全帽检测模型 1、标注数据 2、整理数据 3、训练:修改:myvoc.yaml myvoc.yaml train: VOC_2022050201/train.txt val: VOC_2022050201/val.txt # number of classes nc: 1 # cl 阅读全文
posted @ 2022-05-02 21:53 西北逍遥 阅读(181) 评论(0) 推荐(0)
摘要: yolov5训练分割钢筋区域的模型 使用yolov5训练分割钢筋区域的模型,用于yolov5识别钢筋并计数(yolov5钢筋计数) 1、标注数据 2、整理数据 3、训练:修改:myvoc.yaml myvoc.yaml train: VOC_2022050101/train.txt val: VOC 阅读全文
posted @ 2022-05-02 10:00 西北逍遥 阅读(205) 评论(0) 推荐(0)
摘要: Pset_CoveringCeiling 将预定义类型设置为“天花板”的覆盖的所有引用和类型对象定义的公共特性。 NameTypeDescription Permeability P_SINGLEVALUE / IfcNormalisedRatioMeasure Durchlässigkeit Du 阅读全文
posted @ 2022-05-01 07:28 西北逍遥 阅读(47) 评论(0) 推荐(0)
摘要: 连接redis数据库日志 void Redis_Project2::slotOnConnectRedisButtonClick() { db_address_redis = this->lineEdit_address_redis->text(); db_port_redis = this->lin 阅读全文
posted @ 2022-04-30 21:09 西北逍遥 阅读(200) 评论(0) 推荐(0)
摘要: 合并两个csv package com.vfsd; import java.io.IOException; import java.nio.charset.Charset; import java.util.ArrayList; import java.util.HashMap; import ja 阅读全文
posted @ 2022-04-29 21:39 西北逍遥 阅读(284) 评论(0) 推荐(0)
摘要: redis查看某个key的类型 127.0.0.1:6379[1]> 127.0.0.1:6379[1]> type temp3 hash 127.0.0.1:6379[1]> 127.0.0.1:6379[1]> ################# 阅读全文
posted @ 2022-04-28 21:34 西北逍遥 阅读(2773) 评论(0) 推荐(1)
摘要: Redis操作日志 1、切换数据库 127.0.0.1:6379> 127.0.0.1:6379> select 1 OK 127.0.0.1:6379[1]> 127.0.0.1:6379[1]> 127.0.0.1:6379[1]> 2、查看数据库大小 127.0.0.1:6379[1]> 12 阅读全文
posted @ 2022-04-27 17:19 西北逍遥 阅读(1049) 评论(0) 推荐(0)
摘要: csv合并某几列 package com.vfsd; import java.io.IOException; import java.nio.charset.Charset; import java.util.ArrayList; import java.util.HashMap; import j 阅读全文
posted @ 2022-04-27 10:10 西北逍遥 阅读(215) 评论(0) 推荐(0)
摘要: csv增加一列 package com.vfsd; import java.io.IOException; import java.nio.charset.Charset; import java.util.ArrayList; import java.util.HashMap; import ja 阅读全文
posted @ 2022-04-26 16:03 西北逍遥 阅读(390) 评论(0) 推荐(0)
摘要: 八叉樹分割點雲數據 ##### 阅读全文
posted @ 2022-04-25 06:31 西北逍遥 阅读(43) 评论(0) 推荐(0)
摘要: 使用yolov5训练识别钢筋的模型,用于yolov5识别钢筋并计数(yolov5钢筋计数) 1、标注数据 2、整理数据 3、训练:修改:myvoc.yaml myvoc.yaml train: VOC_2022042401/train.txt val: VOC_2022042401/val.txt 阅读全文
posted @ 2022-04-24 21:24 西北逍遥 阅读(431) 评论(0) 推荐(0)
摘要: 训练yolov5识别小黄球模型 1、标注数据 2、整理数据 3、训练:修改:myvoc.yaml myvoc.yaml train: VOC_2022042301/train.txt val: VOC_2022042301/val.txt # number of classes nc: 1 # cl 阅读全文
posted @ 2022-04-23 15:38 西北逍遥 阅读(242) 评论(0) 推荐(0)
摘要: 八叉树分割点云并优化网格实验记录 //A1-E1 { //A1-E1 B2-F2 if (X1==X_1 && Y1==Y_2 &&Z1==Z_1 &&Z2==Z_2) { repeat_count1++; } //A1-E1 C2-G2 if (X1 == X_2 && Y1 == Y_2 &&Z 阅读全文
posted @ 2022-04-22 09:07 西北逍遥 阅读(118) 评论(0) 推荐(0)
摘要: 训练yolov5识别木块的模型 标注数据: 整理数据 训练:(使用官方程序,不需要做别的修改,唯一修改的是:myvoc.yaml) myvoc.yaml train: VOC_2022042101/train.txt val: VOC_2022042101/val.txt # number of c 阅读全文
posted @ 2022-04-21 16:13 西北逍遥 阅读(238) 评论(0) 推荐(0)
摘要: 八叉树分割点云实验记录3 ######################## 阅读全文
posted @ 2022-04-20 19:42 西北逍遥 阅读(38) 评论(0) 推荐(0)
摘要: Qt把数据写入文件 QString splitFileName = pcdFiePath; splitFileName = splitFileName.replace(".pcd",".txt"); QFile splitDataFile(splitFileName); if (!splitData 阅读全文
posted @ 2022-04-20 19:09 西北逍遥 阅读(542) 评论(0) 推荐(0)
摘要: 八叉树分割点云实验记录 ####################### 阅读全文
posted @ 2022-04-19 15:54 西北逍遥 阅读(75) 评论(0) 推荐(0)
摘要: 八叉树分割点云实验记录 ########################## 阅读全文
posted @ 2022-04-18 16:05 西北逍遥 阅读(63) 评论(0) 推荐(0)
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 96 下一页