论文复现——《通过深度学习来识别建筑年代和风格》系列文章介绍

📌建议先阅读论文解读:如何利用最近很火的深度学习来识别建筑年代和风格?🔗以了解论文的大致内容和技术方法

📌所有文章均可在我的博客微信公众号(renhai-lab)中找到,欢迎关注!

📌 收录进微信公众号专栏:【SCI论文复现】《通过深度学习了解建筑年代和风格》

《通过深度学习了解建筑年代和风格》论文复现代码已上传到GithubGitee,但Gitee仅用于同步,目前文章和仓库还在更新中,请访问对应的主页查看。

一、文章目录

状态文章标题博客微信文章
🟠Part1.论文解读:如何利用最近很火的深度学习来识别建筑年代和风格?博客🔗微信🔗
🟠Part2.下载和预处理建筑足迹数据集博客🔗微信🔗
🟠Part3-1.获取高质量的阿姆斯特丹建筑立面图像博客🔗微信🔗
🟠Part3-2.获取高质量的阿姆斯特丹建筑立面图像博客🔗微信🔗
🟠Part4-1.对建筑年代进行深度学习训练和预测博客🔗微信🔗
🟠Part4-2.对建筑年代预测结果进行展示和分析博客🔗微信🔗
😑练习:Part5.对建筑风格进行深度学习训练和预测以及分析

二、使用说明

fork 本仓库,然后克隆到本地或者用云端编辑器打开,最后安装环境。

三、环境配置说明

  1. 直接安装Python、或者使用Anaconda、Pycharm、VScode安装。
  2. pytorch推荐单独安装,详见PyTorch环境配置
  3. 其余依赖使用pip install requirements.txt

四、部分成果

⬇️阿姆斯特丹的建筑足迹

⬇️阿姆斯特丹的道路线数据Amsterdam_road.edges

⬇️originl image和pred_color的对比

⬇️模型预测可视化结果

⬇️ 表 4 混淆矩阵(百分比)

⬇️ 图 10 CAM去识别不同年代模型的关注点

  1. 左侧小图是将CAM 叠加在原始图像上。图像的红色区域主要覆盖一楼和二楼之间的窗户或门。
  2. 右侧小图:根据 CAM 裁剪的图像显示了窗户的演变。早期的窗户通常框架较宽,装饰较多,而且较窄。最近的窗户样式以方形和水平形状为特点,框架更薄,装饰更少,深度更小。

⬇️ 图7 阿姆斯特丹市中心建筑年代预测结果空间分布


建筑年代预测结果的空间分布
蓝色表示旧建筑被预测为新建筑,而粉色表示模型将新建筑预测为旧建筑。灰色表示预测正确。

⬇️图8 :建筑年代预测结果在150米网格范围的准确度

五、数据集

1.原始数据源

数据源的获取会在下一篇文章《获取数据集——《通过深度学习了解建筑年代和风格》论文复现(二)》详细说明。

2.(备用)国内百度网盘下载链接:

  • BAG建筑足迹:https://pan.baidu.com/s/1ugy2r8tvO6kbqUTxZWTsUA?pwd=216f
    提取码:216f
  • 剑桥大学建筑风格图集和相应数据:https://pan.baidu.com/s/1L4uBNvZvNr0oWdjpwAuwBw?pwd=c3bg
    提取码:c3bg

六、仓库主要代码文件的结构

├── 1-论文阅读和解析
│   ├── Understanding architecture age and style through deep learning.pdf
│   └── 论文双语版:通过深度学习了解建筑时代和风格 - ScienceDirect.html
├── 2-获取数据集
│   ├── notebook
│   │   ├── 2.1-BAG建筑足迹数据预处理.ipynb
│   │   ├── 2.2-osmnx获取道路数据.ipynb
│   │   └── 2.3-通过streetview获取含有谷歌街景地图的网页url.ipynb
│   └── script
│       ├── 2.1-使用geopandas寻找街景点.py
│       └── 2.2-通过streetview获取含有url的csv文件.py
├── 3-selenium获取街景并进一步筛选街景图像
│   ├── ckpt
│   │   └── ade20k-resnet50dilated-ppm_deepsup
│   ├── notebook
│   │   ├── 3.1-2-删除损坏的文件.ipynb
│   │   ├── 3.1-selenium获取街景截图.ipynb
│   │   └── 3.2-语义分割预筛选街景照片..ipynb
│   ├── script
│   │   ├── 3.1-selenium多线程获取街景.py
│   │   └── 3.2-语义分割筛选街景完整代码.py
├── 4.1-对建筑年代进行深度学习训练和预测
│   ├── notebook
│   │   ├── 4.1.1-建筑年代的模型选择和训练.ipynb
│   │   ├── 4.1.2-对训练集进行预测并保存结果.ipynb
│   │   ├── 4.1.3-建筑年代模型评价.ipynb
│   │   ├── 4.1.4-制作建筑年代预测结果的空间分布图.ipynb
│   │   ├── 4.1.5-使用ArcGIS-Pro和Arcy制作建筑年代预测结果在150米精度范围的准确度.ipynb
│   │   ├── 4.1.6-计算空间自相关(莫兰指数).ipynb
│   │   ├── 4.1.7-探讨建筑年龄和建筑风格的关系.ipynb
│   ├── script
│   │   ├── TS.py
│   │   ├── engine.py
│   │   └── train.py
├── 4.2-对建筑风格进行深度学习训练和预测
│   ├── notebook
│   │   ├── 4.2.2-建筑风格模型评价.ipynb
├── 5-ArcgisPro工程
│   ├── 1.使用ArcPy简化和拆分建筑.py
│   ├── 2.使用ArcPy寻找街景点.py
├── README.md
├── my_tools
│   ├── engine.py
│   ├── helper_functions.py
│   ├── validate_image.py
│   ├── 合并多个csv文件.py
│   └── 缩小街景图像.ipynb
└── requirements.txt

引用信息 (Cite info)

Maoran Sun, Fan Zhang, Fabio Duarte, Carlo Ratti,
Understanding architecture age and style through deep learning,
Cities,
Volume 128,
2022,
103787,
ISSN 0264-2751,
https://doi.org/10.1016/j.cities.2022.103787.
(https://www.sciencedirect.com/science/article/pii/S0264275122002268)
Abstract: Architectural styles and their evolution are central to architecture history. However, traditional approaches to understand styles and their evolution require domain expertise, fieldwork and extensive manual processes. Recent research in deep learning and computer vision has highlighted the great potential in analyzing urban environments from images. In this paper, we propose a deep learning-based framework for understanding architectural styles and age epochs by deciphering building façades based on street-level imagery. The framework is composed of two stages: Deep ‘Learning’ the architecture and Deep ‘Interpreting’ the architecture age epochs and styles. In Deep ‘Learning’, a deep convolutional neural network (DCNN) model is designed to automatically learn about the age characteristics of building façades from street view images. In Deep ‘Interpreting’ stage, three components are proposed to understand the different perspectives regarding building ages and styles. In the experiment, a building age epoch dataset is compiled for the city of Amsterdam and Stockholm to understand the evolution of architectural element styles and the relationship between building ages and styles spatially and temporally. This research illustrates how publicly available data and deep learning could be used to trace the evolution of architectural styles in the spatial-temporal domain.
Keywords: Building age; Architectural style; Street view imagery; Built environment; Deep learning


因为其他平台不能同步修改,论文解读文章将最先在我的博客发布,你可以点击阅读原文查看本专题的所有文章。

如果你觉得本系列文章有用,欢迎关注博客,点赞👍和收藏,也欢迎在评论区讨论,有任何问题都可以私信我:

微信
请添加图片描述

  • 5
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Renhai实验室

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值