资源简介
Python代码,内涵五个网络,有安装教程(readme),网络权重.
代码片段和文件信息
# Metrics for track 1 - single-image semantic stereo
import numpy as np
import tifffile
from glob import glob
import argparse
from tqdm import tqdm
from copy import deepcopy
NUM_CATEGORIES = 5
NO_DATA = -999.0
COMPLETENESS_THRESHOLD_METERS = 1.0
def las_to_sequential_labels(las_labels):
labels = deepcopy(las_labels)
labels[:] = 5 # unlabeled
labels[las_labels == 2] = 0 # ground
labels[las_labels == 5] = 1 # trees
labels[las_labels == 6] = 2 # building roof
labels[las_labels == 9] = 3 # water
labels[las_labels == 17] = 4 # bridge / elevated road
return labels
# compute miou-3 for a folder of submissions
def compute_metrics(test_folder truth_folder):
# get lists of files
test_agl_files = glob(test_folder + ‘*AGL*.
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-02-27 13:39 unets\
文件 527 2019-02-19 17:37 unets\runba
文件 42 2019-02-19 17:37 unets\requirements.txt
文件 3176 2019-02-27 13:39 unets\params.py
文件 9041 2019-02-19 17:37 unets\dfcba
文件 11294 2019-02-19 17:37 unets\dataFunctions.py
文件 1015 2019-02-19 17:37 unets\README.md
文件 1112 2019-02-19 17:37 unets\LICENSE
目录 0 2019-02-19 17:37 unets\segmentation_models\
文件 2175 2019-02-19 17:37 unets\segmentation_models\utils.py
文件 62 2019-02-19 17:37 unets\segmentation_models\__version__.py
文件 172 2019-02-19 17:37 unets\segmentation_models\__init__.py
目录 0 2019-02-19 17:37 unets\data\
文件 153 2019-02-19 17:37 unets\data\msi_mean.json
目录 0 2019-02-19 17:37 unets\segmentation_models\unet_regression\
文件 3879 2019-02-19 17:37 unets\segmentation_models\unet_regression\model.py
文件 1509 2019-02-19 17:37 unets\segmentation_models\unet_regression\builder.py
文件 2552 2019-02-19 17:37 unets\segmentation_models\unet_regression\blocks.py
文件 33 2019-02-19 17:37 unets\segmentation_models\unet_regression\__init__.py
目录 0 2019-02-19 17:37 unets\segmentation_models\unet\
文件 3873 2019-02-19 17:37 unets\segmentation_models\unet\model.py
文件 1491 2019-02-19 17:37 unets\segmentation_models\unet\builder.py
文件 2552 2019-02-19 17:37 unets\segmentation_models\unet\blocks.py
文件 24 2019-02-19 17:37 unets\segmentation_models\unet\__init__.py
目录 0 2019-02-19 17:37 unets\segmentation_models\pspnet\
文件 4891 2019-02-19 17:37 unets\segmentation_models\pspnet\model.py
文件 1860 2019-02-19 17:37 unets\segmentation_models\pspnet\builder.py
文件 3539 2019-02-19 17:37 unets\segmentation_models\pspnet\blocks.py
文件 25 2019-02-19 17:37 unets\segmentation_models\pspnet\__init__.py
目录 0 2019-02-19 17:37 unets\segmentation_models\li
文件 4257 2019-02-19 17:37 unets\segmentation_models\li
............此处省略51个文件信息
- 上一篇:查询天气的小程序
- 下一篇:Word2Vec Python源代码
相关资源
- python一个打砖块的小游戏
- python实验指导书 图文高清版
- python主动安装第三方库
- python爬取豆瓣top250电影信息
- python绘制 大蟒蛇
- python小程序(数组排序)
- Python去水印(基于cv2)
- Python 数据结构入门 - 二叉搜索树(
- python空心电感计算器
- python除法.docx
- 抽奖背后的秘密(python抽奖逻辑)
- 绘制统计学直方图茎叶图(matplotlib)
- python求解标准差
- python数据分析与处理
- 利用Python将照片在Excel中利用点阵图显
- python turtle 跳房子
- python 人群计数
- Python调用第三方API换脸
- “去哪儿吃”帮你选餐厅(python代码
- python 控制台登陆密码验证
- KNN算法的Python实现(datingrecd.ipynb)
- python核心编程第二版-习题答案
- python爬取笔趣阁小说
- Python程序设计基础试题以及答案(3
- python聊天-服务端与客户端
- python递归求最大公约数
- 用python画皮卡丘(基于turtle)
- 伟哥的python私房菜(中国程序员).
- pip一键升级(python脚本)
- 我的世界python编程——天空行走py格式
评论
共有 条评论