自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 资源 (25)
  • 收藏
  • 关注

原创 解决“支持TensorFlow的Python 3.5以上版本无法安装PIL(Python Imaging Library)”问题

问题描述在使用TensorFlow处理图片文件时:import PIL.Image之后发现需要安装PIL模块,但是在搜索PIL Python,进入PIL安装的官网点击打开链接之后,发现PIL的安装最多只支持到Python 2.7,而支持TensorFlow的Python版本只能在Python 3.5以上。在寻找解决问题的办法时发现可以使用Pillow来代替:Pillow is the fr...

2018-03-26 15:34:29 5816 1

原创 学习TensorFlow时的一些问题与修正

1.ValueError: Only call `softmax_cross_entropy_with_logits` with named arguments (labels=..., logits=..., ...)错误代码:cross_entropy2=tf.reduce_sum(tf.nn.softmax_cross_entropy_with_logits_v2(logits, y_)

2018-03-23 17:23:36 3345

原创 解决“ValueError: Cannot evaluate tensor using `eval()`”问题

问题描述在学习TensorFlow的时候,按照书上的指导编写代码,因为版本的原因出现很多问题,记录一下以待改善:1.ValueError: Cannot evaluate tensor using `eval()`#矩阵乘法通过tf.matmul函数完成v1=tf.constant([[1.0,2.0],[3.0,4.0]])v2=tf.constant([[5.0,6.0...

2018-03-21 16:28:17 5582

原创 Tensorflow中MNIST手写数字数据集

刚开始跑的代码还有错误,但是不知道为什么再次运行就正确了,可能是新添加了input_data.py文件,暂存记录一下,等待深入研究# -- coding: utf-8 --import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_data# 层节点INPUT_NODE = 784LAY

2018-03-15 16:01:13 681

原创 解决“PyCharm ImportError: No module named tensorflow”问题

问题描述当在命令行窗口安装完成Tensorflow之后,想要使用PyCharm编译器来运行,但是却被报错提醒ImportError: No module named tensorflow经过探索研究,发现要重新设置PyCharm的编译环境。解决方法步骤如下:1.打开PyCharm软件, 进入File->Settings目录2.在Project Interp...

2018-03-14 10:54:50 36781 7

原创 安装Python3.5和Tensorflow中遇到的问题

1.安装Python3.5在cmd中输入conda create --name python35 python=3.5 ,如果一次不成功可以多试几次如图所示:输入activate python35进入Python3.5环境中输入deactivate退出查询conda环境conda info --envs2.安装TensorFlow如上图所示,安装过程出现错误使用指令pip install --up...

2018-03-06 23:25:19 4129 1

原创 解决Anaconda Navigator闪退的问题

因为要安装Python3.5,为了一步到位就安装了Anaconda3,但是安装完成之后存在Anaconda Navigator闪退并且打不开的情况,搜索了许多方法之后,找到了简单的解决方法。1.打开Anaconda Prompt2.输入指令:conda update anaconda-navigator等待执行完成。3.输入指令:anaconda-navigator --reset等待执行完成。4...

2018-03-06 19:43:58 3865

hardhat-detector.rar

安全帽是各行各业安全生产工作者必不可少的安全用具,通过正确佩戴安全帽不仅可以防止和减轻各种事故的伤害,而且保障了工作者的生命安全。为了防止因未戴安全帽导致的安全事故,安全帽佩戴检测成为了监督工作者佩戴安全帽的利器。基于深度学习的安全帽检测算法,采用Tensorflow语言,供相关研究人员进行研究学习!

2019-11-20

DDA算法实验报告

DDA算法,是计算机图形学中一种基于直线的微分方程来生成直线的方法,由于有浮点数运算与取整,该算法不利于硬件实现。

2018-03-06

计算机图形学PPT重点

计算机图形学PPT重点,期末考试复习计算机图形学必备学习资料。

2018-03-06

Direction-Change Features of Imaginary Strokes

We found suitable direction-change features of the imaginary strokes in the pen-up state for on-line handwritten cursive character recognition. Our method simultaneously uses both directional features, otherwise known as off-line features, and direction-change features, which we designed as on-line features. The directional features express where and in which direction each character’s coordinates exist. The direction-change features express where and in which direction each direction of the character’s coordinates change, and express where the circular parts of the character exist. These direction-change features express both written strokes in the pen-down state and unwritten imaginary strokes in the pen-up state. It is important to get suitable direction-change features when using this method. We tried to examine the influence on character recognition rates when changing the functions used to get each direction-change feature based on the imaginary stroke lengths. Then, we found that the best function is the function which puts no weight on the imaginary stroke lengths. The recognition rate for freely-written Japanese characters was improved from 82.37% to 86.32 % by our new method using the best function as opposed to our old method using a function which gets each direction change feature in inverse proportion to the imaginary stroke lengths.

2018-03-05

数据挖掘概念与技术课后习题答案

数据挖掘概念与技术课后习题答案,英文版原版答案解析

2017-12-06

Models of Light Reflection for Computer Synthesized Pictures

In the production of computer generated pictures of three dimensional objects, one stage of the calculation is the determination of the intensity of a given object once its visibility has been established.

2017-12-06

计算机图形学光线追踪算法

计算机图形学光线追踪算法,学习计算机图形学的相关算法。

2017-12-06

计算机专业408考研试题及答案(王道论坛)

计算机专业408考研试题及答案(王道论坛)

2017-08-13

王道论坛计算机考研机试指南

王道论坛计算机考研机试指南

2017-08-12

C++Primer第五版习题答案

C++Primer课后习题答案(全),来自Github的资源

2017-08-12

复旦大学硕士研究生入学考试《计算机专业知识》考试大纲

复旦大学硕士研究生入学考试《计算机专业知识》考研大纲,重点知识点

2017-08-09

acm常用数据公式表

acm常用数据公式表

2017-04-07

操作系统PV操作

操作系统PV操作

2017-04-07

Jacobi迭代

雅克比迭代MATLAB代码

2017-04-07

GaussSeidel

GaussSeidel迭代MATLAB代码

2017-04-07

Snipaste-1.9.0-x64.zip

Snipaste,最好用的截图工具

2016-11-24

算法V(C++实现)图算法 C++算法:图算法

算法V(C++实现)图算法 C++算法:图算法

2016-11-24

程序设计实践

程序设计实践

2016-11-08

Thinking in Java 3th Edition习题及答案

Thinking in Java 3th Edition习题及答案

2016-11-02

Thinking in Java 4th Edition习题答案

Thinking in Java 4th Edition课后习题答案

2016-11-02

2016年考研核心题型——计算机操作系统部分

2016考研核心题——操作系统

2016-11-02

2016年考研核心题型—计算机网络部分

2016年考研核心题型—计算机网络部分

2016-10-23

2016年考研核心题型——数据结构部分

2016年考研核心题型——数据结构部分

2016-10-23

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除