
图像处理
unicorn963
图像处理学习者
展开
-
利用Tensorflow训练CIFAR-10数据集的训练部分源码详细分析
利用Tensorflow训练CIFAR-10数据集的训练部分源码详细分析实验环境ubuntu16.04python2.7tensorflow1.4代码代码一共有三个文件,分别是cifar10_input.py, cifar10.py, cifar_train.py。首先是cifar10_input.py,代码如下:# coding:utf-8# 绝对引入from __fut...原创 2019-10-20 22:27:42 · 731 阅读 · 0 评论 -
OpenCV对输入视频的每一帧调整大小并生成新的视频
OpenCV对输入视频的每一帧调整大小并生成新的视频代码编程环境源代码代码使用说明实验结果代码编程环境Windows系统; OpenCV3.4.1; Visual studio 2017源代码#include <stdio.h>#include <tchar.h>#include <opencv2\opencv.hpp>#include <o...原创 2019-07-16 21:35:17 · 1737 阅读 · 0 评论 -
OpenCV对图片数据集提取HOG特征并用SVM进行识别
OpenCV对图片数据集提取HOG特征并用SVM进行识别代码编程环境设置图片大小源代码提取HOG源代码SVM识别源代码代码编程环境Windows系统; OpenCV3.4.1; Visual studio 2017设置图片大小源代码在进行提取HOG特征之前,首先要对图片样本设置大小,把所有图片的像素大小调整为128*128,源代码如下。#include <stdio.h>#...原创 2019-07-17 01:07:07 · 1877 阅读 · 3 评论 -
使用代码下载mnist数据集并且可视化部分图片以及标签
使用代码下载mnist数据集并且可视化部分图片代码实验结果代码#coding: utf-8# 从tensorflow.examples.tutorials.mnist模块读取数据from tensorflow.examples.tutorials.mnist import input_data# misc 是 miscellaneous 的缩写,杂项 的意思。代表没别的合适的地方放了,就...原创 2019-09-29 20:13:47 · 620 阅读 · 0 评论 -
使用softmax函数识别mnist数据集
使用softmax函数识别mnist数据集运行环境ubuntu16.04python2.7tensorflow-gpu 1.4代码# coding: utf-8# 导入tensorflow模块import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_datamnist = input...原创 2019-10-07 16:50:24 · 419 阅读 · 0 评论 -
使用卷积识别mnist手写数字数据集
使用卷积识别mnist手写数字数据集实验环境ubuntu16.04python2.7tensorflow-gpu 1.4代码# coding: utf-8import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_datamnist = input_data.read_data_sets...原创 2019-10-07 19:32:14 · 180 阅读 · 0 评论 -
对字节型数据集cifar10进行可视化
对字节型数据集cifar10进行可视化编程环境ubuntu 16.04python 2.7tensorflow-gpu 1.4代码cifar10_input.py文件代码# coding:utf-8# 绝对引入from __future__ import absolute_import# 导入精确除法from __future__ import division# 导入pr...原创 2019-10-10 09:41:58 · 245 阅读 · 0 评论