上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 96 下一页
摘要: python alphashape alphashape_opt = alphashape.optimizealpha(bottom_points)alphashape_obj = alphashape.alphashape(bottom_points, alphashape_opt)hull_re 阅读全文
posted @ 2022-05-04 20:43 西北逍遥 阅读(806) 评论(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 西北逍遥 阅读(1135) 评论(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 西北逍遥 阅读(603) 评论(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 西北逍遥 阅读(161) 评论(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 西北逍遥 阅读(182) 评论(0) 推荐(0)
摘要: Pset_CoveringCeiling 将预定义类型设置为“天花板”的覆盖的所有引用和类型对象定义的公共特性。 NameTypeDescription Permeability P_SINGLEVALUE / IfcNormalisedRatioMeasure Durchlässigkeit Du 阅读全文
posted @ 2022-05-01 07:28 西北逍遥 阅读(41) 评论(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 西北逍遥 阅读(190) 评论(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 西北逍遥 阅读(273) 评论(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 西北逍遥 阅读(2771) 评论(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 西北逍遥 阅读(1037) 评论(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 西北逍遥 阅读(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-26 16:03 西北逍遥 阅读(388) 评论(0) 推荐(0)
摘要: 八叉樹分割點雲數據 ##### 阅读全文
posted @ 2022-04-25 06:31 西北逍遥 阅读(39) 评论(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 西北逍遥 阅读(409) 评论(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 西北逍遥 阅读(230) 评论(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 西北逍遥 阅读(108) 评论(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 西北逍遥 阅读(225) 评论(0) 推荐(0)
摘要: 八叉树分割点云实验记录3 ######################## 阅读全文
posted @ 2022-04-20 19:42 西北逍遥 阅读(35) 评论(0) 推荐(0)
摘要: Qt把数据写入文件 QString splitFileName = pcdFiePath; splitFileName = splitFileName.replace(".pcd",".txt"); QFile splitDataFile(splitFileName); if (!splitData 阅读全文
posted @ 2022-04-20 19:09 西北逍遥 阅读(533) 评论(0) 推荐(0)
摘要: 八叉树分割点云实验记录 ####################### 阅读全文
posted @ 2022-04-19 15:54 西北逍遥 阅读(46) 评论(0) 推荐(0)
摘要: 八叉树分割点云实验记录 ########################## 阅读全文
posted @ 2022-04-18 16:05 西北逍遥 阅读(61) 评论(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 西北逍遥 阅读(230) 评论(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 西北逍遥 阅读(1224) 评论(1) 推荐(0)
摘要: C++绘制点云 osg::Geode* pcd_geode = new osg::Geode(); //几何体 osg::Geometry* pcd_geometry = new osg::Geometry(); for (int k = 0; k < list_dall_data.size(); 阅读全文
posted @ 2022-04-16 17:51 西北逍遥 阅读(117) 评论(0) 推荐(0)
摘要: labelme coco 好久没用了 #!/usr/bin/env python # coding: utf-8 # In[12]: import argparse import json import os import os.path as osp import warnings import 阅读全文
posted @ 2022-04-15 22:06 西北逍遥 阅读(44) 评论(0) 推荐(0)
摘要: 旧笔记本环境二次配置,为了运行dowhy (base) PS F:\PythonProject> (base) PS F:\PythonProject> (base) PS F:\PythonProject> pip install tensorflow Collecting tensorflow 阅读全文
posted @ 2022-04-14 08:40 西北逍遥 阅读(224) 评论(0) 推荐(0)
摘要: java 读取csv package com.vfsd; import java.io.IOException; import com.csvreader.CsvReader; public class ReadCSVData { public static void main(String[] a 阅读全文
posted @ 2022-04-13 15:49 西北逍遥 阅读(1270) 评论(0) 推荐(0)
摘要: 安装 dowhy pip install dowhy 安装日志 (wind_2021) F:\TensorflowProject\BayesianCausalInference-master> (wind_2021) F:\TensorflowProject\BayesianCausalInfere 阅读全文
posted @ 2022-04-12 09:08 西北逍遥 阅读(143) 评论(0) 推荐(0)
摘要: pcd中 毫米转为米 package com.vfsd.core; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileNotFoundExcept 阅读全文
posted @ 2022-04-11 17:16 西北逍遥 阅读(98) 评论(0) 推荐(0)
摘要: 给pcd添加头 package com.vfsd.core; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileNotFoundException 阅读全文
posted @ 2022-04-10 22:02 西北逍遥 阅读(65) 评论(0) 推荐(0)
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 96 下一页