python 处理遥感影像

前言

为了创建深度学习的样本,需要做一个512*512标准的框,框内具有要素的tif文件

1.以特定点为中心,做一个1024*1024的框,截取tif图像

import geopandas as gpd
import rasterio
from rasterio.plot import show


def crop_tif_around_centroid(tif_path, shp_path, output_tif_path, crop_size=1024):
    # 读取shapefile文件以获取中心点坐标
    gdf = gpd.read_file(shp_path)
    centroid = gdf.iloc[0]['geometry'].centroid

    # 读取tif文件
    with rasterio.open(tif_path) as src:
        # 获取tif文件的地理变换参数
        transform = src.transform

        # 将中心点的地理坐标转换为像素坐标
        x_center, y_center = rasterio.transform.xy(transform, centroid.x, centroid.y)

        # 计算裁剪窗口的左上角和右下角像素坐标
        x_min = x_center - (crop_size / 2)
        y_min = y_center - (crop_size / 2)
        x_max = x_center + (crop_size / 2)
        y_max = y_center + (crop_size / 2)

        # 确保裁剪窗口不超出tif图像的边界
        x_min = max(0, min(x_min, src.width - 1))
        y_min = max(0, min(y_min, src.height - 1))
        x_max = min(src.width, max(x_max, 0))
        y_max = min(src.height, max(y_max, 0))

        # 创建裁剪窗口
        window = ((int(y_min), int(y_max)), (int(x_min), int(x_max)))

        # 读取裁剪窗口内的图像数据
        out_img = src.read(window=window)

        # 更新元数据
        out_meta = src.meta.copy()
        out_meta.update({
            "height": y_max - y_min,
            "width": x_max - x_min,
            "transform": rasterio.transform.from_origin(x_min, y_max, transform[0], transform[4])
        })

        # 保存裁剪的tif文件
        with rasterio.open(output_tif_path, 'w', **out_meta) as dst:
            dst.write(out_img)

        show(out_img)

# 使用函数
tif_path = r'E:\jwztestnew\杭州滨江.tif'
shp_path = r'E:\jwztestnew\newshp_5584_centroid.shp'
output_tif_path = r'E:\jwztestnew\杭州滨江_cropped1.tif'
crop_tif_around_centroid(tif_path, shp_path, output_tif_path)

加强版:提取shp文件中各个多边形的中心点输出为shp,然后提取各个点位以该点位的“TBBM”值为索引,查找文件夹下与之对应的tif,对相应的tif进行裁剪,获得512*512的矩形框

第一段代码:实现中心点的提取

import geopandas as gpd

def get_all_centroids_with_attributes(input_shp_path, output_shp_path):
    """
    提取输入shapefile文件中所有有效多边形的中心点,并将“TBBM”列数据作为属性保存到新的shapefile中。

    参数:
    input_shp_path (str): 输入shapefile文件的路径。
    output_shp_path (str): 输出shapefile文件的路径。
    """
    # 读取shapefile文件
    gdf = gpd.read_file(input_shp_path)

    # 过滤掉几何对象为None的记录
    gdf_with_geometry = gdf.dropna(subset=['geometry'])

    # 计算所有有效多边形的中心点
    centroids = gdf_with_geometry['geometry'].head(10).apply(lambda x: x.centroid)

    # 为了将“TBBM”列数据与中心点关联,我们需要创建一个包含中心点和对应“TBBM”值的新字典
    centroids_with_attributes = [{"geometry": centroid, "TBBM": gdf_with_geometry.loc[gdf_with_geometry.index, 'TBBM'].iloc[i]} for i, centroid in enumerate(centroids)]

    # 创建一个新的GeoDataFrame来存储所有中心点和属性
    centroids_gdf = gpd.GeoDataFrame(centroids_with_attributes, crs=gdf.crs)

    # 输出所有中心点和属性到新的shapefile
    centroids_gdf.to_file(output_shp_path)

# 使用函数
input_shp_path = r'E:\jwztestnew\newshp_5584(1)\newshp_5584.shp'
output_shp_path = r'E:\jwztestnew\center\newshp_5584_10_centroids_with_bttm.shp'
get_all_centroids_with_attributes(input_shp_path, output_shp_path)

第二段代码:根据提取到的中心点做缓冲区矩形

import geopandas as gpd
import rasterio
import os
from rasterio.windows import Window
from rasterio.transform import Affine


def crop_tif_around_centroid_for_each_tbbm(tif_dir, shp_path, output_dir, crop_size=512):
    # 读取shapefile文件以获取中心点坐标和TBBM列的值
    gdf = gpd.read_file(shp_path)

    # 创建输出目录,如果不存在
    if not os.path.exists(output_dir):
        os.makedirs(output_dir)

    # 遍历shapefile中的每个点
    for index, row in gdf.iterrows():
        tbbm = row['TBBM']
        centroid = row['geometry'].centroid
        print(f'处理TBBM值为 {tbbm} 的点 {index + 1}。')

        # 在tif目录下查找名称与TBBM值一致的tif文件
        tif_files = [f for f in os.listdir(tif_dir) if f.startswith(tbbm) and f.endswith('.tif')]
        if not tif_files:
            print(f'未找到TBBM值为 {tbbm} 的tif文件。')
            continue

        # 处理每个找到的tif文件
        for tif_file in tif_files:
            print(f'开始处理文件:{tif_file}。')
            tif_path = os.path.join(tif_dir, tif_file)
            output_tif_path = os.path.join(output_dir, tif_file)

            with rasterio.open(tif_path) as src:
                # 获取tif文件的地理变换参数
                transform = src.transform

                # 将中心点的地理坐标转换为像素坐标
                y_center, x_center = rasterio.transform.rowcol(transform, centroid.x, centroid.y)

                # 计算裁剪窗口的左上角和右下角像素坐标
                x_min = x_center - (crop_size / 2)
                y_min = y_center - (crop_size / 2)
                x_max = x_center + (crop_size / 2)
                y_max = y_center + (crop_size / 2)

                # 确保裁剪窗口不超出tif图像的边界
                x_min = max(0, min(x_min, src.width - 1))
                y_min = max(0, min(y_min, src.height - 1))
                x_max = min(src.width, max(x_max, 0))
                y_max = min(src.height, max(y_max, 0))
                width = x_max - x_min
                height = y_max - y_min

                # 创建裁剪窗口
                window = Window(x_min, y_min, width, height)

                # 读取裁剪窗口内的图像数据
                out_img = src.read(window=window)

                # 新的仿射变换系数
                coord_ltx, coord_lty = rasterio.transform.xy(transform, y_min, x_min)
                window_affine = Affine(
                    src.transform[0],  # X 像素尺寸
                    src.transform[1],  # X 方向旋转
                    coord_ltx,  # X 偏移量
                    src.transform[3],  # Y 方向旋转
                    src.transform[4],  # Y 像素尺寸
                    coord_lty  # Y 偏移量
                )
                new_transform = window_affine

                # 更新元数据
                out_meta = src.meta.copy()
                out_meta.update({
                    "height": y_max - y_min,
                    "width": x_max - x_min,
                    "transform": new_transform
                })

            # 保存裁剪的tif文件
            with rasterio.open(output_tif_path, 'w', **out_meta) as dst:
                dst.write(out_img)

            print(f'文件 {tif_file} 处理完成,已保存到 {output_tif_path}。')


# 使用函数
tif_dir = 'E:\\jwztestnew\\20240329_Sample_8bit'
shp_path = 'E:\\jwztestnew\\center\\newshp_5584_all_centroids_with_bttm.shp'
output_dir = 'Z:\\YuXuening\\ProcessData\\20240410_Sample_8bit_512'
crop_tif_around_centroid_for_each_tbbm(tif_dir, shp_path, output_dir)
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,377评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,390评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,967评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,344评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,441评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,492评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,497评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,274评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,732评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,008评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,184评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,837评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,520评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,156评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,407评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,056评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,074评论 2 352

推荐阅读更多精彩内容