上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 94 下一页
摘要: 在anaconda中查看某个环境中的tensorflow是cpu还是gpu >>> import os >>> from tensorflow.python.client import device_lib >>> os.environ["TF_CPP_MIN_LOG_LEVEL"] = "99" 阅读全文
posted @ 2021-04-18 20:52 西北逍遥 阅读(681) 评论(0) 推荐(0) 编辑
摘要: 巴特沃斯滤波 function [order,wn] = buttord(wp,ws,rp,rs,opt) %BUTTORD Butterworth filter order selection. % [N, Wn] = BUTTORD(Wp, Ws, Rp, Rs) returns the ord 阅读全文
posted @ 2021-04-17 20:59 西北逍遥 阅读(183) 评论(0) 推荐(0) 编辑
摘要: def plot_one_box3(x1,y1,x2,y2, img, color=None, label=None, line_thickness=None): # Plots one bounding box on image img tl = line_thickness or round(0 阅读全文
posted @ 2021-04-16 14:04 西北逍遥 阅读(1458) 评论(0) 推荐(0) 编辑
摘要: ZT台式机 Tensorflow配置 1、安装Anaconda (最好不要安装在C盘) 安装参考:https://blog.csdn.net/weixin_50888378/article/details/109022585 2、安装Protoc ①解压protoc-3.11.4-win64.zip 阅读全文
posted @ 2021-04-15 07:47 西北逍遥 阅读(218) 评论(0) 推荐(0) 编辑
摘要: java计算日期之间的时间差 年月日时分秒毫秒 package com.vfsd.core; import java.text.DecimalFormat; import java.text.ParseException; import java.text.SimpleDateFormat; imp 阅读全文
posted @ 2021-04-14 14:19 西北逍遥 阅读(1251) 评论(0) 推荐(0) 编辑
摘要: sklearn cluster KMeans class KMeans(TransformerMixin, ClusterMixin, BaseEstimator): """K-Means clustering. Read more in the :ref:`User Guide <k_means> 阅读全文
posted @ 2021-04-13 10:55 西北逍遥 阅读(1074) 评论(0) 推荐(0) 编辑
摘要: tensorflow cpu 1.8 (base) F:\> (base) F:\> (base) F:\>conda create wind_202104 python=3.7 CondaValueError: The target prefix is the base prefix. Abort 阅读全文
posted @ 2021-04-12 15:16 西北逍遥 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 测试 (wind_202103) F:\TensorflowProject\models-master\research>python object_detection/model_lib_tf2_test.py 2021-04-12 14:24:31.834620: I tensorflow/st 阅读全文
posted @ 2021-04-12 14:30 西北逍遥 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 6号笔记本环境配置 done # # To activate this environment, use # # $ conda activate wind_202103 # # To deactivate an active environment, use # # $ conda deactiv 阅读全文
posted @ 2021-04-12 13:19 西北逍遥 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 遍历文件 import os path="E:\\BaiduNetdiskDownload\\result_2021040501" ''' E:\BaiduNetdiskDownload\result_2021040501\0061-01.txt E:\BaiduNetdiskDownload\re 阅读全文
posted @ 2021-04-12 13:09 西北逍遥 阅读(96) 评论(0) 推荐(0) 编辑
摘要: opencv3 lib opencv_aruco346d.lib opencv_bgsegm346d.lib opencv_bioinspired346d.lib opencv_calib3d346d.lib opencv_ccalib346d.lib opencv_core346d.lib ope 阅读全文
posted @ 2021-04-11 21:01 西北逍遥 阅读(80) 评论(0) 推荐(0) 编辑
摘要: yolov5测试 import argparse import time from pathlib import Path import cv2 import torch import torch.backends.cudnn as cudnn from numpy import random im 阅读全文
posted @ 2021-04-09 18:37 西北逍遥 阅读(539) 评论(0) 推荐(0) 编辑
摘要: matlab遍历目录下的文件并按文件名排序 clc; clear; rootDir='L:\GZY_20210305\2020-12-26-07-56-14_1\'; [ listFiles ] = listFiles202102( rootDir ); listFiles202102.m func 阅读全文
posted @ 2021-04-08 21:56 西北逍遥 阅读(1454) 评论(0) 推荐(0) 编辑
摘要: matlab 心电数据处理日志 matlab EGC数据处理 阅读全文
posted @ 2021-04-07 18:02 西北逍遥 阅读(82) 评论(0) 推荐(0) 编辑
摘要: update 20210406 set recordTime=date_add(recordTime,INTERVAL -5 hour) where id>2; update 20210406 set recordTime=date_add(recordTime,INTERVAL -5 minute 阅读全文
posted @ 2021-04-06 18:29 西北逍遥 阅读(154) 评论(0) 推荐(0) 编辑
摘要: openpose pytorch 测试 import cv2 import matplotlib.pyplot as plt import copy import numpy as np import torch from src import model from src import util 阅读全文
posted @ 2021-04-05 19:40 西北逍遥 阅读(416) 评论(0) 推荐(0) 编辑
摘要: win10 anaconda tensorflow gpu openpose done # # To activate this environment, use # # $ conda activate wind_202102 # # To deactivate an active environ 阅读全文
posted @ 2021-04-04 17:09 西北逍遥 阅读(319) 评论(0) 推荐(0) 编辑
摘要: python realsense 测试 color_image2=cv2.resize(color_image,(424,240)) out2=cv2.resize(out,(424,240)) show_img = np.vstack((color_image2,out2)) 阅读全文
posted @ 2021-04-04 16:57 西北逍遥 阅读(380) 评论(0) 推荐(0) 编辑
摘要: source activate flappbird /home/luo/Desktop/MyFile/Mask_RCNN_Openpose_Realsense python realsense_mask_openpose_2019090801.py 阅读全文
posted @ 2021-04-04 16:37 西北逍遥 阅读(86) 评论(0) 推荐(0) 编辑
摘要: win10 vs2015 pybind11 1> 已启动生成: 项目: ZERO_CHECK, 配置: Debug x64 1> Checking Build System 2> 已启动生成: 项目: cross_module_gil_utils, 配置: Debug x64 3> 已启动生成: 项 阅读全文
posted @ 2021-04-04 15:11 西北逍遥 阅读(232) 评论(0) 推荐(0) 编辑
摘要: win10 openpose vs2015 cmake build Selecting Windows SDK version 10.0.14393.0 to target Windows 10.0.19042. CMAKE_VERSION = 3.20.0 Building with CUDA. 阅读全文
posted @ 2021-04-04 14:45 西北逍遥 阅读(439) 评论(0) 推荐(0) 编辑
摘要: realsense cmake Selecting Windows SDK version to target Windows 10.0.19042. Checking internet connection... Internet connection identified Info: REALS 阅读全文
posted @ 2021-04-04 10:09 西北逍遥 阅读(1573) 评论(0) 推荐(0) 编辑
摘要: PCL point cloud #include<pcl/visualization/cloud_viewer.h> #include<iostream> #include<pcl/io/io.h> #include<pcl/io/pcd_io.h> #include<pcl/io/ply_io.h 阅读全文
posted @ 2021-04-03 19:27 西北逍遥 阅读(152) 评论(0) 推荐(0) 编辑
摘要: Cd Key Product Name001H1 AutoCAD 2016057H1 AutoCAD LT 2016128H1 Autodesk 3ds Max 2016129H1 AutoCAD Map 3D 2016151H1 RealDWG 2016185H1 AutoCAD Architec 阅读全文
posted @ 2021-04-02 20:40 西北逍遥 阅读(529) 评论(0) 推荐(0) 编辑
摘要: pyqt5 yolov5运行日志 img = img.half() img = img.float() 阅读全文
posted @ 2021-04-02 13:59 西北逍遥 阅读(723) 评论(0) 推荐(0) 编辑
摘要: yolov5运行日志 (wind_2021) F:\PytorchProject\yolov5-master-20210402\yolov5-master> (wind_2021) F:\PytorchProject\yolov5-master-20210402\yolov5-master> (wi 阅读全文
posted @ 2021-04-02 12:36 西北逍遥 阅读(627) 评论(0) 推荐(0) 编辑
摘要: anaconda pyqt5 (base) F:\> (base) F:\> (base) F:\>dir 驱动器 F 中的卷是 新加卷 卷的序列号是 12DB-F948 F:\ 的目录 2021/03/31 20:27 <DIR> EclipseCSWorkspace 2021/03/31 19: 阅读全文
posted @ 2021-04-02 11:11 西北逍遥 阅读(135) 评论(0) 推荐(0) 编辑
摘要: read txt clc; clear; %ekg_raw=load('2.txt'); ekg_raw=load('20210110133815000_20210110134234000.txt'); %x=ekg_raw(:,1); %y1=ekg_raw(:,2); [row,col]=siz 阅读全文
posted @ 2021-04-02 09:45 西北逍遥 阅读(192) 评论(0) 推荐(0) 编辑
摘要: matlab读取数据并操作 M2=[] fid = fopen('2020-12-27-16-19-52.txt'); tline = fgetl(fid); k=1; while ischar(tline) %disp(tline) S = regexp(tline, '\s+', 'split' 阅读全文
posted @ 2021-04-01 19:18 西北逍遥 阅读(879) 评论(0) 推荐(0) 编辑
摘要: 读取数据表 public static void searchAllTable() { //String sql="SELECT * FROM information_schema.`TABLES`"; String sql="select table_name from information_s 阅读全文
posted @ 2021-03-31 12:29 西北逍遥 阅读(72) 评论(0) 推荐(0) 编辑
上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 94 下一页