上一页 1 ··· 54 55 56 57 58 59 60 61 62 ··· 94 下一页
摘要: echarts饼图 option = { title: { //text: '某站点用户访问来源', //subtext: '纯属虚构', left: 'center' }, tooltip: { trigger: 'item', formatter: '{a} <br/>{b} : {c} ({d 阅读全文
posted @ 2020-09-26 14:26 西北逍遥 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 函数 var FS = US; function BS(e, t, r, a) { var o = e(["importCardDropzone"]).dispatcher, i = a((function() { return { dictDefaultMessage: r.getString(" 阅读全文
posted @ 2020-09-25 14:14 西北逍遥 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 飞浆测试日志 Configuration Arguments MASK_ON: 1 anchor_sizes: [32, 64, 128, 256, 512] aspect_ratios: [0.5, 1.0, 2.0] batch_size_per_im: 512 class_num: 81 da 阅读全文
posted @ 2020-09-24 09:02 西北逍遥 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 实体定义 如果将截面沿圆弧旋转,则定义为实心锥形。横截面可沿旋转扫描从起始横截面形状变为末端横截面形状。然后连接起始和结束横截面的相应顶点。有界曲面可能有孔,这些孔将扫入实体中的孔中。 旋转轴定义为: 起点:自我\IfcSweptAreaSolid.Position.位置 方向:自我\IfcrVol 阅读全文
posted @ 2020-09-23 18:54 西北逍遥 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 绘制函数图像 >> x1=-10:0.5:15; >> y1=x1.^2-5*x1+6; >> plot(x1,y1) 求方程的根 syms x f=x^2-5*x+6 result=solve(f==0,x) 输出结果为: result = 2 3 >> 阅读全文
posted @ 2020-09-22 08:37 西北逍遥 阅读(1762) 评论(0) 推荐(0) 编辑
摘要: 运行日志 result: 0x1ea9c7a0e80 "SELECT TB.TABLE_SCHEMA,TB.TABLE_NAME,TB.TABLE_COMMENT FROM INFORMATION_SCHEMA.TABLES TB Where TB.TABLE_SCHEMA = 'sf'" resu 阅读全文
posted @ 2020-09-21 22:02 西北逍遥 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 查询某个数据库中所有的表以及表的字段 SELECT TB.TABLE_SCHEMA, -- 模式 TB.TABLE_NAME, -- 表名 TB.TABLE_COMMENT, -- 表名注释 COL.COLUMN_NAME, -- 字段名 COL.COLUMN_TYPE, -- 字段类型 COL.C 阅读全文
posted @ 2020-09-21 19:32 西北逍遥 阅读(121) 评论(0) 推荐(0) 编辑
摘要: /home/star/Desktop/data/test_left_1_20200921/2019_07_14-08_08_14_left.jpgperson 100%person 55%person 86%person 91%person 93%<class 'detectron2.structu 阅读全文
posted @ 2020-09-21 15:28 西北逍遥 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 运行日志 visuallizer... person 100% <class 'detectron2.structures.instances.Instances'> [[306, 281, 1.216]] 识别时间:%s 0.19870567321777344 存储时间:%s 0.01341152 阅读全文
posted @ 2020-09-20 18:22 西北逍遥 阅读(397) 评论(0) 推荐(0) 编辑
摘要: Detectron2测试 # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved import argparse import glob import multiprocessing as mp import os 阅读全文
posted @ 2020-09-20 12:48 西北逍遥 阅读(1338) 评论(0) 推荐(0) 编辑
摘要: Anaconda Pytorch Detectron2 install (wind2) star@xmatrix:~/Detectron2$ cd detectron2-master (wind2) star@xmatrix:~/Detectron2/detectron2-master$ (wind 阅读全文
posted @ 2020-09-20 11:11 西北逍遥 阅读(1075) 评论(0) 推荐(0) 编辑
摘要: Detectron2运行日志 (wind2) star@xmatrix:~/Detectron2$ cd detectron2-master (wind2) star@xmatrix:~/Detectron2/detectron2-master$ (wind2) star@xmatrix:~/Det 阅读全文
posted @ 2020-09-20 10:37 西北逍遥 阅读(498) 评论(0) 推荐(0) 编辑
摘要: ubuntu Anaconda Pytorch 编译安装Detectron2 star@xmatrix:~/Detectron2$ git clone https://github.com/facebookresearch/detectron2.git star@xmatrix:~/Detectro 阅读全文
posted @ 2020-09-20 09:47 西北逍遥 阅读(642) 评论(0) 推荐(0) 编辑
摘要: test_engine.py # Copyright (c) 2017-present, Facebook, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this 阅读全文
posted @ 2020-09-19 21:49 西北逍遥 阅读(183) 评论(0) 推荐(0) 编辑
摘要: k1=1./(sqrt(2*pi)); >> x1=-10:0.2:10; >> k2=-1*(x1.^2)*0.5; >> y1=k1*exp(k2); >> plot(x1,y1) 阅读全文
posted @ 2020-09-19 21:21 西北逍遥 阅读(3857) 评论(0) 推荐(0) 编辑
摘要: matlab均匀分布图绘制 >> x4 = rand([100,1]); >> xi4 = linspace(-10,20,201); >> F = ksdensity(x4,xi4,'function','cdf'); >> plot(xi4,F); a5=1; b5=10; x5=0:0.5:1 阅读全文
posted @ 2020-09-19 20:04 西北逍遥 阅读(2137) 评论(0) 推荐(0) 编辑
摘要: matlab泊松分布 >> x=0:1:20; >> px=poisspdf(x,5); >> plot(x,px) >> x2=0:0.2:20; >> px2=poisspdf(x2,10);; >> plot(x2,px2) >> 阅读全文
posted @ 2020-09-19 19:11 西北逍遥 阅读(1771) 评论(0) 推荐(0) 编辑
摘要: 过年前运行过的程序,这半年没回实验室,今天回到实验室,发现还能运行,记录一下本次运行日志,以备以后参考。 (wind1) star@xmatrix:~/Mask_RCNN_realsense_2$ (wind1) star@xmatrix:~/Mask_RCNN_realsense_2$ (wind 阅读全文
posted @ 2020-09-19 17:09 西北逍遥 阅读(391) 评论(0) 推荐(0) 编辑
摘要: AB CD 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 阅读全文
posted @ 2020-09-18 21:57 西北逍遥 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Java关于日期的处理 TimeDateUtil package com.vfsd.util; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import 阅读全文
posted @ 2020-09-17 17:20 西北逍遥 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 此示例演示了两个标准的case梁,一个具有拉伸区域实体,另一个具有旋转区域实体。下图显示了结果形状。 ——具有直线和曲线路径的标准箱梁。 注:文件中没有颜色信息,显示的颜色已由目标应用程序设置为默认值。 阅读全文
posted @ 2020-09-16 14:22 西北逍遥 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 此示例基于参数化I形截面轮廓和相应的材质截面轮廓集使用定义,说明了具有旋转实体几何图形的标准箱梁。下图显示了结果形状。 ——具有旋转和参数化轮廓定义的梁。 注:文件中没有颜色信息,显示的颜色已由目标应用程序设置为默认值。 阅读全文
posted @ 2020-09-16 14:20 西北逍遥 阅读(190) 评论(0) 推荐(0) 编辑
摘要: ifcRevedAreaSolid是通过围绕轴旋转截面轮廓定义提供的横截面创建的实体。 生成的实体由IfcSweptAreaSolid.位置相对于对象坐标系。如果提供,则允许重新定位旋转实体。如果未提供,则默认为当前对象坐标系。在重新定位之前,轴线和横截面应在同一平面上。 注:轴和横截面都要求位于对 阅读全文
posted @ 2020-09-15 15:16 西北逍遥 阅读(349) 评论(0) 推荐(0) 编辑
摘要: echarts网格设置 grid3D: { show:true,//是否显示三维迪卡尔坐标 boxWidth: 100,//三维场景高度 boxHeight:50,//三维场景高度 boxDepth: 280,//三维笛卡尔坐标系组件在三维场景中的深度。 axisLine:{//坐标轴轴线(线)控制 阅读全文
posted @ 2020-09-14 14:55 西北逍遥 阅读(2475) 评论(0) 推荐(0) 编辑
摘要: 测试 byte[] bytes = new byte[2400]; dis.read(bytes); receiveStr = receiveStr+bytesToHexString(bytes); String zStr1=""; for(int k2=0;k2<receiveStr.length 阅读全文
posted @ 2020-09-13 19:44 西北逍遥 阅读(106) 评论(0) 推荐(0) 编辑
摘要: IfcFixedReferenceSweptAreaSolid是一种扫描区域实体,它是沿准线扫描区域的结果。扫描区域由IfcProfileDef的子类型提供。轮廓由隐式笛卡尔变换运算符放置在扫掠的起点处,其中轮廓法线与该点处的准线切线一致,轮廓的x轴与固定的参考方向一致。扫掠操作期间曲线的方向由Fi 阅读全文
posted @ 2020-09-12 16:40 西北逍遥 阅读(251) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { String addressIP="localhost"; int addressPort=8899; startServerSocket(addressIP,addressPort); } public static 阅读全文
posted @ 2020-09-11 20:20 西北逍遥 阅读(167) 评论(0) 推荐(0) 编辑
摘要: Sep 07, 2020 3:36:35 AM org.apache.coyote.http11.AbstractHttp11Processor process INFO: Error parsing HTTP request header Note: further occurrences of 阅读全文
posted @ 2020-09-09 14:58 西北逍遥 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 08-Sep-2020 08:06:07.431 严重 [main] org.apache.catalina.core.ContainerBase.startInternal A child container failed during start java.util.concurrent.Exe 阅读全文
posted @ 2020-09-08 08:12 西北逍遥 阅读(298) 评论(0) 推荐(0) 编辑
摘要: QLineEdit /**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https 阅读全文
posted @ 2020-09-07 19:56 西北逍遥 阅读(227) 评论(0) 推荐(0) 编辑
上一页 1 ··· 54 55 56 57 58 59 60 61 62 ··· 94 下一页