自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(182)
  • 资源 (10)
  • 收藏
  • 关注

原创 Tensorflow-model API

参考: 1、https://github.com/tensorflow/tensorflow 2、http://tflearn.org/doc_index/ 3、http://tensorlayer.readthedocs.io/en/latest/user/tutorial.html 4、http://keras-cn.readthedocs.io/en/latest/ 5、https:

2017-10-31 16:36:10 539

原创 Tensorflow-卷积模型

参考:http://blog.csdn.net/wc781708249/article/details/78400505#!/usr/bin/env python3# -*- coding: UTF-8 -*-"""说明改写成卷积模型数据:mnist模型建立 Model数据的输入 Inputs"""from __future__ import absolute_importfrom

2017-10-31 14:08:31 299

原创 Tensorflow-model模板

参考:http://www.cnblogs.com/wang-kai/p/6479960.html#!/usr/bin/env python3# -*- coding: UTF-8 -*-"""说明数据:mnist模型建立 Model数据的输入 Inputs模型保存与提取 Save_and_load_mode模型可视化 TensorBoard"""from __future__ im

2017-10-31 10:25:56 918

原创 GDAL-Image to numpy

#!/usr/bin/python3# -*- coding: UTF-8 -*-import numpy as npimport osimport gdalimport sys'''# 多波段图像(遥感图像)提取每个波段信息转换成数组(波段数>=4 或者 波段数<=3)# 一般的方法如:opencv,PIL,skimage 不能解析多波段遥感图像# path 图像的路径# retu

2017-10-30 17:08:36 2998

翻译 Tensorflow-图像预处理

参考:https://github.com/tensorflow/models/blob/master/tutorials/image/cifar10/cifar10_input.py def Image_processing(reshaped_image,height, width): ''' 图像预处理 参考:https://github.c

2017-10-30 17:00:57 768

原创 Tensorflow-解析文件路径

1、使用glob()from glob import globfile_path=r'C:\Users\Administrator\Desktop\test3\hymenoptera_data\train\*\*.jpg'images_path=glob(file_path) #获取所有图像路径2、使用osimport osfrom PIL import Imagenames=r'C:\User

2017-10-30 16:52:05 3840

原创 Tensorflow-API convert_image_dtype

参考: 1、https://tensorflow.google.cn/api_docs/python/tf/image/convert_image_dtype 2、http://tensorflow.orgtf.image.convert_image_dtype 将图像转换为dtype,如果需要,缩放其值。convert_image_dtype( image, dtype,

2017-10-30 14:33:22 2807

翻译 skimage-图像基本操作

参考: 1、http://scikit-image.org/docs/stable/ 2、http://scikit-image.org/docs/stable/user_guide.html1Getting started2A crash course on NumPy for imagesNumPy indexingColor imagesCoordinate conventions

2017-10-27 20:28:57 13386

翻译 PIL-图像处理

参考: 1、https://python-pillow.org/ 2、https://github.com/python-pillow/Pillow 3、http://pillow.readthedocs.io/en/4.3.x/1、使用Image类加载图像#!/usr/bin/env python3# -*- coding: UTF-8 -*-from __future__ impor

2017-10-27 19:38:57 1397

翻译 scipy-图像操作

参考: 1、https://docs.scipy.org/doc/scipy/reference/ndimage.html#module-scipy.ndimage 2、http://scipy-lectures.github.com/advanced/image_processing/index.html 3、http://blog.csdn.net/zt_706/article/detai

2017-10-27 16:04:00 3529

原创 python3-网络数据下载

1使用urllib2使用requests3使用urllib34下载文件并解压读取1、使用urllibimport urllibprint("downloading with urllib")url = 'https://raw.githubusercontent.com/abidrahmank/OpenCV2-Python-Tutorials/master/data/left.jpg'pr

2017-10-25 16:16:35 6152

原创 Tensorflow- Class path contains multiple SLF4J bindings

参考:http://blog.csdn.net/mayunyun1987100/article/details/51154056使用TensorflowOnSpark 跑程序时 出现以下问题:SLF4J: Class path contains multiple SLF4J bindings.SLF4J: Found binding in [jar:file:/data/sdg/

2017-10-25 11:14:25 361 1

翻译 sklearn - Dimensionality reduction

参考:1、http://scikit-learn.org/stable/2、http://scikit-learn.org/stable/modules/decomposition.html#decompositions2.5. Decomposing signals in components (matrix factorization problems)

2017-10-24 17:27:49 900

翻译 sklearn-Preprocessing

参考:1、http://scikit-learn.org/stable/2、http://scikit-learn.org/stable/modules/preprocessing.html#preprocessing4.3. Preprocessing datasklearn.preprocessing软件包提供了几个常见的实用功能和变换器类,以将原始

2017-10-24 11:11:36 2494 1

翻译 opencv-对象检测

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-24 10:57:50 1179

翻译 opencv-计算摄影

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-24 10:38:49 1450

翻译 opencv-机器学习

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-24 10:09:50 1123

翻译 opencv-相机校准和3D重建

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-24 09:43:55 4167

翻译 opencv-视频分析

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-24 09:25:09 1696

翻译 opencv-特征检测与描述

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-23 17:07:57 7006 2

翻译 opencv-使用GrabCut算法进行交互式前景提取

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-23 16:58:30 4011

翻译 opencv-用分水岭算法进行图像分割

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-23 16:44:16 7449 2

翻译 opencv-霍夫圆变换

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-23 16:42:19 593

翻译 opencv-霍夫线变换

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-23 16:31:33 657

翻译 opencv-模板匹配

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-23 16:09:01 1197

翻译 OpenCV中的图像变换

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-23 15:48:59 834

翻译 OpenCV中的图像处理 [3]-OpenCV中的直方图

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-23 11:29:56 2242

翻译 opencv-OpenCV中的图像处理 [2]-OpenCV中的轮廓

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-23 09:56:02 5070 1

翻译 opencv-OpenCV中的图像处理 [1]

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-20 19:12:54 849

转载 Python性能分析器Profile

参考:http://blog.csdn.net/kongxx/article/details/52216850在使用Python进行开发的过程中,有时候我们需要对Python程序的执行性能进行分析,此时我们就需要用到Python的性能分析工具,这里我就简单说说Python中的profile和pstats库。下面是一个测试程序import osdef a(): s

2017-10-20 17:47:44 429

转载 python中计时工具timeit模块的基本用法

参考:http://blog.csdn.net/rumswell/article/details/7349915>>> import timeit  #执行命令  >>> t2 = timeit.Timer('x=range(1000)')  #显示时间  >>> t2.timeit()  10.620039563513103    #执行命令

2017-10-20 17:44:48 516

翻译 opencv-性能测量与改进技术

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-20 17:17:25 488

翻译 opencv-图像算术运算

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-20 16:10:47 396

翻译 opencv-图像基本操作

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-20 15:44:34 375

翻译 opencv-Trackbar调色板

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-20 15:37:39 405

翻译 opencv-鼠标作为油漆刷

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-20 15:21:43 316

翻译 opencv-OpenCV中的绘图功能

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-20 14:08:59 468

翻译 opencv-视频入门

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-20 11:15:39 373

翻译 opencv-图像入门

参考:1、http://docs.opencv.org/3.3.0/  官方文档api2、http://docs.opencv.org/3.3.0/d6/d00/tutorial_py_root.html 官方英文教程3、https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.h

2017-10-20 10:01:18 329

原创 Tensorflow-资料分享

参考:1、https://github.com/exacity/deeplearningbook-chinese  Deep Learning 中文版2、https://github.com/DeepVisionTeam/TensorFlowBook  深度学习教程

2017-10-20 08:40:03 499

opencv-4.9.0-win-cmake-3.29.0-MinGW-7.3.0-QT-5.12.12

opencv-4.9.0-win-cmake-3.29.0-MinGW-7.3.0-QT-5.12.12 使用 cmake-3.29.0 编译 opencv-4.9.0-win 在 QT-5.12.12能正常运行

2024-03-21

opencv.zip

课程链接:https://www.bilibili.com/video/av29600072

2019-10-16

GPU并行计算与CUDA编程 - 副本.zip

GPU并行计算与CUDA编程(2017) 视频地址:https://www.bilibili.com/video/av52338886

2019-09-18

t-train1.tar.gz

数据集(病害) 下载地址:kaggle

2019-09-10

t-train.tar.gz

数据集(病害),下载地址:kaggle 数据集(病害),下载地址:kaggle

2019-09-10

valid.tar.gz

数据集(病害),下载地址:kaggle 数据集(病害),下载地址:kaggle

2019-09-10

vgg19_weights_tf_dim_ordering_tf_kernels_notop.h5

vgg19_weights_tf_dim_ordering_tf_kernels_notop.h5 可用于keras,tensorflow.keras,特征提取与迁移学习

2019-03-06

inception_v3_weights_tf_dim_ordering_tf_kernels_notop.h5

inception_v3_weights_tf_dim_ordering_tf_kernels_notop.h5 可用于keras,tensorflow.keras,特征提取与迁移学习

2019-03-06

1-9-0顺序排列的图片

1-9-0顺序排列的图片,第一排是1 2 3 4 5,第二排是6 7 8 9 0

2017-11-24

高动态范围(HDR)成像

使用OpenCV进行高动态范围(HDR)成像(C ++ / Python)

2017-11-09

arcgis egine 10.1代码

关于arcgis engine 10.1源代码 希望对大家有用

2014-10-18

空空如也

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

TA关注的人

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