上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 94 下一页
摘要: gl-matrix.js /** * @fileoverview gl-matrix - High performance matrix and vector operations * @author Brandon Jones * @author Colin MacKenzie IV * @ver 阅读全文
posted @ 2021-05-04 17:10 西北逍遥 阅读(238) 评论(0) 推荐(0) 编辑
摘要: Qt 3d basicshapes-cpp.pro android|ios|tvos|winrt { warning( "This example is not supported for android, ios, tvos, or winrt." ) } !include( ../example 阅读全文
posted @ 2021-05-04 16:22 西北逍遥 阅读(319) 评论(0) 推荐(0) 编辑
摘要: yolov5 检测图片里面的对象 这是比较早的代码,偶尔碰见了打开看看,运行结果如下: import argparse import time from pathlib import Path import cv2 import torch import torch.backends.cudnn a 阅读全文
posted @ 2021-05-04 11:10 西北逍遥 阅读(1117) 评论(0) 推荐(0) 编辑
摘要: QTreeWidget双击事件 #include <QtWidgets/QWidget> public slots: void OnlineTreeViewDoubleClick(QTreeWidgetItem*,int); private: QTreeWidget* treeWidget_set; 阅读全文
posted @ 2021-05-03 16:45 西北逍遥 阅读(2209) 评论(0) 推荐(0) 编辑
摘要: Qt QPainter QBrush 填充区域 QBrush brush; brush.setColor(Qt::red);//设置颜色 brush.setStyle(Qt::SolidPattern); painter.setBrush(brush); painter.drawRect(rect3 阅读全文
posted @ 2021-05-02 20:41 西北逍遥 阅读(1566) 评论(0) 推荐(0) 编辑
摘要: Qt QWidget保存为图片 QPixmap pixmap = QPixmap::grabWidget(this); pixmap.save("D://1.jpg","JPG"); ################################### 阅读全文
posted @ 2021-05-01 21:48 西北逍遥 阅读(898) 评论(0) 推荐(0) 编辑
摘要: Qt绘图面板中的对象拖拽 qdrawwidget.h #ifndef QDRAWWIDGET_H #define QDRAWWIDGET_H #include <QObject> #include <QWidget> #include <QFrame> #include <QPainter> #in 阅读全文
posted @ 2021-05-01 21:22 西北逍遥 阅读(704) 评论(0) 推荐(0) 编辑
摘要: Qt绘制网格 mainwindow.h #ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> #include <QPainter> #include <QDebug> namespace Ui { class MainWi 阅读全文
posted @ 2021-05-01 15:47 西北逍遥 阅读(2010) 评论(0) 推荐(0) 编辑
摘要: ubuntu中编译好的Qt程序运行 luo@luo-ThinkPad-W540:QtProject$ luo@luo-ThinkPad-W540:QtProject$ cd build-HGD_ES-Desktop_Qt_5_12_0_GCC_64bit-Debug luo@luo-ThinkPad 阅读全文
posted @ 2021-04-30 16:05 西北逍遥 阅读(642) 评论(0) 推荐(0) 编辑
摘要: ubuntu qt5 编译libqsqlmysql.so 首先确保已经安装了mysql, 然后打开 /opt/Qt5.12.0/5.12.0/Src/qtbase/src/plugins/sqldrivers/mysql 目录查看是否存在 如果存在,进行libmysql.so文件的编译 root@l 阅读全文
posted @ 2021-04-29 15:29 西北逍遥 阅读(897) 评论(0) 推荐(0) 编辑
摘要: Qt mysql 确保mysql已经安装 luo@luo-ThinkPad-W540:~$ luo@luo-ThinkPad-W540:~$ whereis mysql.h mysql: /usr/bin/mysql /usr/lib/mysql /etc/mysql /usr/include/my 阅读全文
posted @ 2021-04-29 08:31 西北逍遥 阅读(174) 评论(0) 推荐(0) 编辑
摘要: win10 cuda11.1 paddlepaddle-gpu (base) F:\> (base) F:\> (base) F:\> (base) F:\>conda create -n wind_paddle python==3.7 Collecting package metadata (cu 阅读全文
posted @ 2021-04-28 11:25 西北逍遥 阅读(1231) 评论(0) 推荐(0) 编辑
摘要: 桩是一种细长的木材、混凝土或钢结构构件,打入、喷射或以其他方式嵌入地面,以支撑荷载。桩也被称为深基础,其中荷载被转移到更深的地下层。 注:根据ISO 6707-1的定义:细长结构构件,基本位于地下,用于将力传递到地面以下的承重地层中。 注:浅基础将荷载转移到靠近其表面的地面上,用IfcFooting 阅读全文
posted @ 2021-04-27 21:26 西北逍遥 阅读(117) 评论(0) 推荐(0) 编辑
摘要: java遍历文件 package com.vfsd.test; import java.io.File; import java.io.IOException; public class ListFileName { public static void main(String[] args) { 阅读全文
posted @ 2021-04-26 21:37 西北逍遥 阅读(233) 评论(0) 推荐(0) 编辑
摘要: torch.nn.modules.module.py from collections import OrderedDict, namedtuple import itertools import warnings import functools import torch from ..param 阅读全文
posted @ 2021-04-25 20:34 西北逍遥 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 计算mAP """ Mask R-CNN Configurations and data loading code for MS COCO. Copyright (c) 2017 Matterport, Inc. Licensed under the MIT License (see LICENSE 阅读全文
posted @ 2021-04-24 14:04 西北逍遥 阅读(80) 评论(0) 推荐(0) 编辑
摘要: mask_rcnn调用训练好的模型 # -*- coding: utf-8 -*- import os import sys import random import math import numpy as np import skimage.io import matplotlib import 阅读全文
posted @ 2021-04-24 11:09 西北逍遥 阅读(297) 评论(0) 推荐(0) 编辑
摘要: class list class_names = ['bg','worker_helmet','worker_nohelmet','rebar_working','rebar_material', 'steel','concrete_pouring','formwork_working','form 阅读全文
posted @ 2021-04-24 10:50 西北逍遥 阅读(232) 评论(1) 推荐(0) 编辑
摘要: dataset prepare """Mask R-CNNCommon utility functions and classes. Copyright (c) 2017 Matterport, Inc.Licensed under the MIT License (see LICENSE for 阅读全文
posted @ 2021-04-23 15:04 西北逍遥 阅读(93) 评论(0) 推荐(0) 编辑
摘要: zzt笔记本环境配置 done # # To activate this environment, use # # $ conda activate wind_2021 # # To deactivate an active environment, use # # $ conda deactiva 阅读全文
posted @ 2021-04-23 12:24 西北逍遥 阅读(172) 评论(0) 推荐(0) 编辑
摘要: Configurations: BACKBONE resnet101 BACKBONE_STRIDES [4, 8, 16, 32, 64] BATCH_SIZE 2 BBOX_STD_DEV [0.1 0.1 0.2 0.2] COMPUTE_BACKBONE_SHAPE None DETECTI 阅读全文
posted @ 2021-04-23 10:58 西北逍遥 阅读(426) 评论(0) 推荐(0) 编辑
摘要: Anaconda安装日志 Output folder: F:\Anaconda\install\Lib Extract: _nsis.py Extract: _system_path.py Output folder: F:\Anaconda\install\conda-meta Extract: 阅读全文
posted @ 2021-04-23 10:44 西北逍遥 阅读(626) 评论(0) 推荐(0) 编辑
摘要: TorchVisionV0.9中引入的ML模型 TorchVisionV0.9已经发布,它包含了许多新的机器学习模型和功能,速度改进和错误修复。在这篇博文中,我们简要介绍了新引入的ML模型,并讨论了它们的主要特性和特性。 分类 MobileNetV3 Large & Small:这种二分类模型针对移 阅读全文
posted @ 2021-04-22 14:32 西北逍遥 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 好久没画了,今天打开练习一下 模型obj数据 # Rhino g object_1 v -35.40777969360352 -17.70254516601563 0 v -35.40777969360352 -8.851271629333496 0 v -35.40777969360352 1.1 阅读全文
posted @ 2021-04-21 21:07 西北逍遥 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 模型的部分ifc #3216= IFCLOCALPLACEMENT(#470,#3215); #3217= IFCSHAPEREPRESENTATION(#12,'Body','SweptSolid',(#2964)); #3218= IFCPRODUCTDEFINITIONSHAPE($,$,(# 阅读全文
posted @ 2021-04-21 15:26 西北逍遥 阅读(87) 评论(0) 推荐(0) 编辑
摘要: Error 1> 已启动生成: 项目: HGD_Project_202101, 配置: Debug x64 1> Reading Qt configuration (E:/Qt/Qt5.12.2/5.12.2/msvc2017_64/bin/qmake) 1>HGD_Project_202101.v 阅读全文
posted @ 2021-04-20 20:02 西北逍遥 阅读(121) 评论(0) 推荐(0) 编辑
摘要: RuntimeError: CUDA out of memory. Tried to allocate 4.29 GiB (GPU 0; 16.00 GiB total capacity; 504.24 MiB already allocated; 13.20 GiB free; 758.00 Mi 阅读全文
posted @ 2021-04-19 20:51 西北逍遥 阅读(174) 评论(0) 推荐(0) 编辑
摘要: yolov5数据集制作 F:\PytorchProject\yolov5-master-20210402 python train_2021041901.py --data coco_zy.yaml --cfg models/yolov5s.yaml --weights '' --batch-siz 阅读全文
posted @ 2021-04-19 19:24 西北逍遥 阅读(175) 评论(0) 推荐(0) 编辑
摘要: E:\Anaconda3\install\envs\wind_202104\lib\site-packages\skimage\transform\_warps.py:830: FutureWarning: Input image dtype is bool. Interpolation is no 阅读全文
posted @ 2021-04-19 14:53 西北逍遥 阅读(2050) 评论(0) 推荐(0) 编辑
摘要: No module named 'skimage' ModuleNotFoundError: No module named 'skimage' (wind_202104) F:\TensorflowProject\maks_rcnn_2018> (wind_202104) F:\Tensorflo 阅读全文
posted @ 2021-04-18 20:55 西北逍遥 阅读(1939) 评论(0) 推荐(0) 编辑
上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 94 下一页