上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 94 下一页
摘要: atan2 四象限反正切 全页折叠 语法 P = atan2(Y,X) >> atan2(4,-3) ans = 2.2143 >> >> atan2(-5,-5)*180.0/3.1415926 ans = -135.0000 >> ####################### 阅读全文
posted @ 2022-05-15 00:26 西北逍遥 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 检测日志 (array('d', [385.0, 248.0, 40.0, 182.0, 385.0]), array('d', [171.0, 109.0, 172.0, 244.0, 171.0])) 385 171 248 109 248 109 40 172 40 172 182 244 1 阅读全文
posted @ 2022-05-14 22:56 西北逍遥 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 基于BIM与点云数据的塔吊仿真系统 ########################### 阅读全文
posted @ 2022-05-13 20:30 西北逍遥 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 给输出框编号 rect_id = 1 for *xyxy, conf, cls in reversed(det): label = f'{names[int(cls)]} {rect_id}' plot_one_box(xyxy, im0, label=label, color=colors[int 阅读全文
posted @ 2022-05-13 17:04 西北逍遥 阅读(53) 评论(0) 推荐(0) 编辑
摘要: java遍历目录下的目录和文件 public static void findStrFromManyFiles(String dirName) throws IOException{ File dir = new File(dirName); File[] files = dir.listFiles 阅读全文
posted @ 2022-05-12 00:25 西北逍遥 阅读(243) 评论(0) 推荐(0) 编辑
摘要: java读取文本内容 public static String readHtmlContent(String htmlPath) throws IOException { String htmlContentStr = ""; File htmlFile = new File(htmlPath); 阅读全文
posted @ 2022-05-12 00:11 西北逍遥 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 判断字符串中是否有数字 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 西北逍遥 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 加载ifc地形数据,计算山体体积 ################ 阅读全文
posted @ 2022-05-10 19:21 西北逍遥 阅读(55) 评论(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 西北逍遥 阅读(1647) 评论(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 西北逍遥 阅读(594) 评论(0) 推荐(0) 编辑
摘要: qt布局测试 //dockWidget_log scrollAreaLogDock = new QScrollArea(dockWidget_log); scrollAreaLogDock->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSiz 阅读全文
posted @ 2022-05-08 12:49 西北逍遥 阅读(32) 评论(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 西北逍遥 阅读(317) 评论(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 西北逍遥 阅读(39) 评论(0) 推荐(0) 编辑
摘要: Pset_ColumnCommon 所有引用和类型对象定义的公共属性。 NameTypeDescription Reference P_SINGLEVALUE / IfcIdentifier Bauteiltyp Bezeichnung zur Zusammenfassung gleichartig 阅读全文
posted @ 2022-05-06 05:59 西北逍遥 阅读(30) 评论(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 西北逍遥 阅读(3036) 评论(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 西北逍遥 阅读(697) 评论(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 西北逍遥 阅读(1091) 评论(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 西北逍遥 阅读(315) 评论(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 西北逍遥 阅读(122) 评论(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 西北逍遥 阅读(128) 评论(0) 推荐(0) 编辑
摘要: Pset_CoveringCeiling 将预定义类型设置为“天花板”的覆盖的所有引用和类型对象定义的公共特性。 NameTypeDescription Permeability P_SINGLEVALUE / IfcNormalisedRatioMeasure Durchlässigkeit Du 阅读全文
posted @ 2022-05-01 07:28 西北逍遥 阅读(26) 评论(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 西北逍遥 阅读(183) 评论(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 西北逍遥 阅读(256) 评论(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 西北逍遥 阅读(2762) 评论(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 西北逍遥 阅读(1003) 评论(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 西北逍遥 阅读(182) 评论(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 西北逍遥 阅读(367) 评论(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 西北逍遥 阅读(286) 评论(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 西北逍遥 阅读(141) 评论(0) 推荐(0) 编辑
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 94 下一页