11 2018 档案
摘要:转自:https://blog.csdn.net/theonegis/article/details/54427906
阅读全文
摘要:转:https://blog.csdn.net/theonegis/article/details/50805520 https://blog.csdn.net/wsp_1138886114/article/details/82778409 https://blog.csdn.net/Amrser/
阅读全文
摘要:从容器复制到主机sudo docker cp containerID:container_path host_path docker cp 5c6ce895b979:/root/LearnPaddle-master/note4/images/download /Users/defineconst/D
阅读全文
摘要:1 容器基本操作 : https://www.cnblogs.com/defineconst/p/9990611.html 2 容器启动退出 : https://www.cnblogs.com/defineconst/p/10035529.html 3 基本命令 :https://www.cnblo
阅读全文
摘要:运行容器:docker run -it 镜像名 /bin/bash 退出容器: exit 或者 Ctrl+P+Q 查看容器:docker ps -a 查看运行的容器:docker ps 重启容器:docker restart 容器ID 重启容器后进入交互式:docker start -i 5c6ce
阅读全文
摘要:一 边界补充 1 补零填充 2 边界复制填充 3 镜像填充 4 块填充 二 卷积核 1 平滑均值滤波 2 高斯平滑 3 图像锐化 4 梯度Prewitt 5 Soble边缘检测:垂直梯度水平梯度 6 梯度Laplacian 三 参考资料 https://blog.csdn.net/chaipp060
阅读全文
摘要:参考资料:https://blog.csdn.net/u011394175/article/details/78919281 1、在3DsMax中加入COLLADA插件:COLLADA-MAX-PC_Max2017_v1.6.63 2、使用3DsMax加载模型文件,将物体设置到原点 3、导出Open
阅读全文
摘要:一.通过命令配置 1. 命令 npm config set registry https://registry.npm.taobao.org 2. 验证命令 npm config get registry 如果返回https://registry.npm.taobao.org,说明镜像配置成功。 n
阅读全文
摘要:参考资料:https://blog.csdn.net/pyx6119822/article/details/81208151?utm_source=blogxgwz0
阅读全文
摘要:一、安装 第一步:先安装anaconda3第二步:pip install --upgrade --ignore-installed tensorflow或者:pip install tensorflow 二、测试 三、效果 备注:谢谢:http://www.cnblogs.com/zlslch/p/
阅读全文
摘要:skyBox: new Cesium.SkyBox({ sources: { positiveX: 'static/image/skyBox/posx.jpg', negativeX: 'static/image/skyBox/negx.jpg', positiveY: 'static/image/
阅读全文
摘要:1、参考官方安装Docker环境,使用一键安装包安装 https://www.jianshu.com/p/b2766173d754 http://www.paddlepaddle.org/documentation/docs/zh/1.1/beginners_guide/install/instal
阅读全文
摘要:来自:https://www.cnblogs.com/zydev/p/5803461.html 列出主机上的容器 列出正在运行的容器: docker ps 列出所有容器: docker ps -a 列出最近使用的容器,包括没有运行的: docker ps -l 仅列出容器的ID,不包括没有运行的:
阅读全文
摘要:mkdir homebrew && curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew cd /Users/defineconst/homebrew/bin /usr/bin/r
阅读全文
摘要:缺省安装nginx之后的配置 检查80端口占用 启动缺省配置之后的nginx 配置多端口站点 注册Server,server_name是配置的域名,proxy_pass是上图配置的代理地址 注意: 1。通过cmd命令行启动的ngnix,不能直接关闭cmd窗口,关闭后端口依然占用,需要使用nginx命
阅读全文
摘要:var https = require('https') var express = require('express'); var app = express(); var bodyParser = require("body-parser"); var request = require('request') var fs = require('fs'); // 引入fs模块 //访问端口...
阅读全文
摘要:map.on('mousemove', function (e) { document.getElementById('info').innerHTML = /* innerHTML 属性设置或返回表格行的开始和结束标签之间的 HTML */ // e.point is the x, y coordinates of the mousemove ...
阅读全文
摘要:1、npm install -g supervisor 2、supervisor WellDetect.js
阅读全文
摘要:1、pip show pip 2、python -m pip install --upgrade pip 3、conda list 4、pip install tensorflow 5、pip install tensorflow-gpu 6、pip install keras 7、pip inst
阅读全文
摘要:1、cd D:\ProgramData\Anaconda3 2、pip install python-docx 3、python代码处理
阅读全文