资源简介
starfm算法,python实现
It is recommended to use the Anaconda distribution for Python 3. Run the below code from the Anaconda prompt by replacing myenv with a name of your choice. For the full list of requirements, check the requirements file.
conda create -n myenv dask rasterio zarr matplotlib
It is recommended to use the Anaconda distribution for Python 3. Run the below code from the Anaconda prompt by replacing myenv with a name of your choice. For the full list of requirements, check the requirements file.
conda create -n myenv dask rasterio zarr matplotlib
代码片段和文件信息
import numpy as np
# Set the size of the moving window in which the search for similar pixels
# is performed
windowSize = 31
# Set the path where the results should be stored
path = ‘STARFM_demo/‘
# Set to True if you want to decrease the sensitivity to the spectral distance
logWeight = False
# If more than one training pairs are used set to True
temp = False
# The spatial impact factor is a constant defining the relative importance of
# spatial distance (in meters)
# Take a smaller value of the spatial impact factor for heterogeneous regions
# (e.g. A = 150 m)
spatImp = 150
# increasing the number of classes limits the number of similar pixels
numberClass = 4
# Set the uncertainty value for the fine resolution sensor
# https://earth.esa.int/web/sentinel/technical-guides/sentinel-2-msi/performance
uncertaintyFineRes = 0.03
# Set the uncertainty value for the coarse resolution sensor
# https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-3-olci/validation
uncertaintyCoarseRes = 0.03
# Other global variables
mid_idx = (windowSize**2)//2
specUncertainty = np.sqrt(uncertaintyFineRes**2 + uncertaintyCoarseRes**2)
tempUncertainty = np.sqrt(2*uncertaintyCoarseRes**2)
# Set the size of the slices in which to divide the image
# This number should be multiple of the image height and not bigger than it
# Use bigger size for small images
sizeSlices = 150
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-11-27 18:01 starfm4py-master\
文件 35149 2019-11-27 18:01 starfm4py-master\LICENSE
文件 3855 2019-11-27 18:01 starfm4py-master\README.md
目录 0 2019-11-27 18:01 starfm4py-master\Tests\
目录 0 2019-11-27 18:01 starfm4py-master\Tests\Test_1\
文件 180904 2019-11-27 18:01 starfm4py-master\Tests\Test_1\sim_Landsat_t1.tif
文件 180906 2019-11-27 18:01 starfm4py-master\Tests\Test_1\sim_Landsat_t2.tif
文件 180917 2019-11-27 18:01 starfm4py-master\Tests\Test_1\sim_MODIS_t1.tif
文件 180918 2019-11-27 18:01 starfm4py-master\Tests\Test_1\sim_MODIS_t2.tif
目录 0 2019-11-27 18:01 starfm4py-master\Tests\Test_2\
文件 180904 2019-11-27 18:01 starfm4py-master\Tests\Test_2\sim_Landsat_t1.tif
文件 171280 2019-11-27 18:01 starfm4py-master\Tests\Test_2\sim_Landsat_t4.tif
文件 180920 2019-11-27 18:01 starfm4py-master\Tests\Test_2\sim_MODIS_t1.tif
文件 180941 2019-11-27 18:01 starfm4py-master\Tests\Test_2\sim_MODIS_t4.tif
目录 0 2019-11-27 18:01 starfm4py-master\Tests\Test_3\
文件 50378 2019-11-27 18:01 starfm4py-master\Tests\Test_3\sim_Landsat_t1.tif
文件 180907 2019-11-27 18:01 starfm4py-master\Tests\Test_3\sim_Landsat_t4.tif
文件 180935 2019-11-27 18:01 starfm4py-master\Tests\Test_3\sim_MODIS_t1.tif
文件 180925 2019-11-27 18:01 starfm4py-master\Tests\Test_3\sim_MODIS_t4.tif
文件 2410 2019-11-27 18:01 starfm4py-master\Tests\test.py
文件 329 2019-11-27 18:01 starfm4py-master\citation.bib
文件 1455 2019-11-27 18:01 starfm4py-master\parameters.py
文件 2991 2019-11-27 18:01 starfm4py-master\requirements.txt
文件 8035 2019-11-27 18:01 starfm4py-master\starfm4py.py
- 上一篇:TensorFlow 实现 Yolo
- 下一篇:麦子学院Python视频.txt
相关资源
- 麦子学院Python视频.txt
- PYQT5+图片拖拽
- python+sqlite学生成绩管理
- Python手势识别与控制源码
- Programming Python-Python编程第4版-上下册
- python3-bayes朴素贝叶斯
- 最近邻kNN-python3源码和数据
- 安装包feedparser-5.2.1
- python腾讯文字识别 OCR脚本
- python词云源码
- 多元线性回归预测房价算法pythons实现
- 笨方法学pythonLearn Python the Hard Way中文
- python编写2048小游戏
- 上交软院2017、2018年机试题目及代码
- 小猪佩奇学习代码
- 二元有限域矩阵的秩的计算 python语言
- month2day.py
- python-opencv 机器视觉 质心,形心 坐标
- keras上LSTM长短期记忆网络金融时序预
- Python代码gabor提取纹理特征
- 数塔问题界面实现
- python加django加websocket实现即时通讯
- RRT规划算法
- python qt5教程
- Lukas-Kanade光流法python代码
- django+python实现的web入门程序-注册登录
- Python编写组合导航数据采集程序
- python爬取豆瓣每个账户对电影的评分
- 基于python实现 淘宝购物车秒杀,自动
- Python-2.7.13-xcompile.patch
评论
共有 条评论