上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 94 下一页
摘要: 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 西北逍遥 阅读(1589) 评论(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 西北逍遥 阅读(581) 评论(0) 推荐(0) 编辑
摘要: qt布局测试 //dockWidget_log scrollAreaLogDock = new QScrollArea(dockWidget_log); scrollAreaLogDock->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSiz 阅读全文
posted @ 2022-05-08 12:49 西北逍遥 阅读(31) 评论(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 西北逍遥 阅读(312) 评论(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 西北逍遥 阅读(37) 评论(0) 推荐(0) 编辑
摘要: Pset_ColumnCommon 所有引用和类型对象定义的公共属性。 NameTypeDescription Reference P_SINGLEVALUE / IfcIdentifier Bauteiltyp Bezeichnung zur Zusammenfassung gleichartig 阅读全文
posted @ 2022-05-06 05:59 西北逍遥 阅读(28) 评论(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 西北逍遥 阅读(2954) 评论(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 西北逍遥 阅读(660) 评论(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 西北逍遥 阅读(1064) 评论(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 西北逍遥 阅读(282) 评论(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 西北逍遥 阅读(117) 评论(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 西北逍遥 阅读(126) 评论(0) 推荐(0) 编辑
摘要: Pset_CoveringCeiling 将预定义类型设置为“天花板”的覆盖的所有引用和类型对象定义的公共特性。 NameTypeDescription Permeability P_SINGLEVALUE / IfcNormalisedRatioMeasure Durchlässigkeit Du 阅读全文
posted @ 2022-05-01 07:28 西北逍遥 阅读(23) 评论(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 西北逍遥 阅读(180) 评论(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 西北逍遥 阅读(252) 评论(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 西北逍遥 阅读(2761) 评论(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 西北逍遥 阅读(986) 评论(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 西北逍遥 阅读(178) 评论(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 西北逍遥 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 八叉樹分割點雲數據 ##### 阅读全文
posted @ 2022-04-25 06:31 西北逍遥 阅读(33) 评论(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 西北逍遥 阅读(276) 评论(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 西北逍遥 阅读(136) 评论(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 西北逍遥 阅读(65) 评论(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 西北逍遥 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 八叉树分割点云实验记录3 ######################## 阅读全文
posted @ 2022-04-20 19:42 西北逍遥 阅读(27) 评论(0) 推荐(0) 编辑
摘要: Qt把数据写入文件 QString splitFileName = pcdFiePath; splitFileName = splitFileName.replace(".pcd",".txt"); QFile splitDataFile(splitFileName); if (!splitData 阅读全文
posted @ 2022-04-20 19:09 西北逍遥 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 八叉树分割点云实验记录 ####################### 阅读全文
posted @ 2022-04-19 15:54 西北逍遥 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 八叉树分割点云实验记录 ########################## 阅读全文
posted @ 2022-04-18 16:05 西北逍遥 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 点云最小包围盒 int w = indexPTSObj->getW(); int h = indexPTSObj->getH(); double x = indexPTSObj->getX(); double y = indexPTSObj->getY(); double z = indexPTSO 阅读全文
posted @ 2022-04-17 21:54 西北逍遥 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 无法解析的外部符号 "public: virtual struct QMetaObject const * __cdecl PTSData::metaObject(void)const " (?met class IfcData : public QObject { //Q_OBJECT } 解决办 阅读全文
posted @ 2022-04-16 17:55 西北逍遥 阅读(1008) 评论(0) 推荐(0) 编辑
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 94 下一页