CN109934237A - 基于卷积神经网络的sar图像特征提取方法 - Google Patents

基于卷积神经网络的sar图像特征提取方法 Download PDF

Info

Publication number
CN109934237A
CN109934237A CN201910123314.3A CN201910123314A CN109934237A CN 109934237 A CN109934237 A CN 109934237A CN 201910123314 A CN201910123314 A CN 201910123314A CN 109934237 A CN109934237 A CN 109934237A
Authority
CN
China
Prior art keywords
image
neural networks
convolutional neural
sar image
feature
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN201910123314.3A
Other languages
English (en)
Inventor
薛梦凡
韩磊
彭冬亮
薛安克
郭云飞
申屠晗
骆吉安
陈志坤
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Hangzhou Dianzi University
Original Assignee
Hangzhou Dianzi University
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Hangzhou Dianzi University filed Critical Hangzhou Dianzi University
Priority to CN201910123314.3A priority Critical patent/CN109934237A/zh
Publication of CN109934237A publication Critical patent/CN109934237A/zh
Pending legal-status Critical Current

Links

Landscapes

  • Image Analysis (AREA)
  • Image Processing (AREA)

Abstract

本发明提供了一种基于卷积神经网络的SAR图像特征提取方法;该方法首先截取SAR图像中包含目标的区域,并将截取部分的图像分辨率转换为128×128;接着使用转化过的全部数据训练一个卷积神经网络;神经网络训练好以后,将待提取特征的SAR图像输入到神经网络中,选择神经网络全连接层的256维输出作为提取到的特征。本发明将卷积神经网络用于SAR图像中目标的特征提取工作。使用卷积神经网络进行特征提取,简化了图像预处理和特征提取过程;由于卷积和池化的局部连接性质,图片中目标的平移和旋转不会影响最后的识别效果,使网络适应性更强。

Description

基于卷积神经网络的SAR图像特征提取方法
技术领域
本发明属于深度学习及图像特征提取领域,涉及一种基于卷积神经网络(Convolutional Neural Networks,CNN)的合成孔径雷达(Synthetic Aperture Radar,SAR)图像特征提取方法。
背景技术
合成孔径雷达具有全天候、全天时执行遥感监测任务的能力,通过对目标的多个回波进行相干累加,可以得到目标的二维SAR图像。并且微波遥感具有一定的地面和植被穿透能力,有助于发现机场、港口、桥梁、道路等人造建筑目标以及飞机、坦克、舰船等军事目标,因此具有重要的军事和民事应用价值。特征提取是获得SAR图像中目标识有效鉴别特征的重要步骤。特征提取的效果在很大程度上影响着SAR目标识别的效果。目前,各种SAR图像特征提取算法已经被提出并应用于SAR目标识别。基于数学变换的特征提取方法包括小波变换、独立分量分析等;基于物理性质的特征提取包括点特征(包括位置、强度、峰值等)、线特征、区域特征(包括纹理、阴影、面积、尺寸等)、目标姿态角、散射中心特征、极化特征和高分辨雷达剖面特征等。在实际应用时,上述方法主要存在的问题是:需要人类专家根据特定的任务单独设计特征提取和特征选择的方法,算法的通用性不强;特征提取的效果依赖于人工经验,导致特征提取的效果不稳定。
发明内容
本发明的目的在于针对现有技术的不足,提出一种基于卷积神经网络的SAR图像特征提取方法。
本发明方法包括以下步骤:
步骤(1)、数据预处理
采用数据库中的任一数据集作为样本数据集,对于数据集中每一张图像,截取图像中包含目标的区域,如果截取部分的分辨率大于128×128,则使用图像采样的方法将图像的分辨率转换为128×128;如果截取部分的分辨率小于128×128,则采用图像插值的方法将图像的分辨率转换为128×128。
步骤(2)、训练卷积神经网络
将步骤(1)中预处理过的全部数据作为训练集,训练一个卷积神经网络,网络的输入层负责接收图像,输入层后面连接的是相间隔的5个卷积层和5个池化层,最后一个池化层连接的是一个全连接层,全连接层后面连接的是输出层。网络参数如表1所示。在CNN的训练错误率为0时或者达到最大迭代轮数时停止训练;
表1设计的卷积神经网络
表1中input代表输入层,conv1、conv2、…、conv5代表卷积层,pool1、pool2、…、pool5代表池化层,Fc代表全连接层,output代表输出层。
步骤(3)、特征提取
CNN训练好以后,对任一待特征提取的SAR图像,采用步骤(1)预处理后输入到步骤(2)中训练好的CNN中,选择网络中第一个全连接层的256维输出作为提取到的特征。
本发明的有益效果是:
本发明的关键在于设计了一个卷积神经网络来完成SAR图像中目标的特征提取工作。使用CNN进行特征提取,简化了图像预处理和特征提取过程;由于卷积和池化的局部连接性质,图片中目标的平移和旋转不会影响最后的识别效果,使网络适应性更强。本发明采用的基于卷积神经网络的SAR图像特征提取方法能稳定的提取SAR图像中目标的特征并且具有较高的通用性。
附图说明
图1为本发明步骤(1)—(2)的流程图。
图2为本发明步骤(3)的流程图。
具体实施方式
下面结合具体实施例对本发明做进一步的分析。
本实施例采用MSTAR数据库中三种目标的SAR图像数据作为训练的样本数据集。在运用基于卷积神经网络的SAR图像特征提取方法进行SAR图像特征提取过程中具体包括以下步骤,如图1和图2所示:
步骤(1)、数据预处理
选择3类MSTAR数据库中的样本,分别是T72-132、T62和2S1,对数据集中的每一张图像,截取图像中包含目标的128×128的像素单位,加入训练集。
步骤(2)、训练卷积神经网络
利用步骤(1)中获得的包含三个目标类别的训练集,训练一个卷积神经网络,网络参数如表1所示。在CNN的训练错误率为0时或者达到最大迭代轮数时停止训练,这里将最大迭代轮数设置为5000。
表1设计的卷积神经网络
表1中input代表输入层,conv1、conv2、…、conv5代表卷积层,pool1、pool2、…、pool5代表池化层,Fc代表全连接层,output代表输出层。
步骤(3)、特征提取
将步骤(1)获得的训练集中任一图像输入步骤(2)中训练好的卷积神经网络中,网络中的第一个全连接层的256维输出即从该图像中提取到的目标特征。
上述实施例并非是对于本发明的限制,本发明并非仅限于上述实施例,只要符合本发明要求,均属于本发明的保护范围。

Claims (1)

1.基于卷积神经网络的SAR图像特征提取方法,其特征在于,该方法具体包括以下步骤:
步骤(1)、数据预处理
采用数据库中的任一数据集作为样本数据集,对于数据集中每一张图像,截取图像中包含目标的区域,如果截取部分的分辨率大于128×128,则使用图像采样的方法将图像的分辨率转换为128×128;如果截取部分的分辨率小于128×128,则采用图像插值的方法将图像的分辨率转换为128×128;
步骤(2)、训练卷积神经网络
将步骤(1)中预处理过的全部数据作为训练集,训练一个卷积神经网络,网络的输入层负责接收图像,输入层后面连接的是相间隔的5个卷积层和5个池化层,最后一个池化层连接的是一个全连接层,全连接层后面连接的是输出层;网络参数如表1所示;在CNN的训练错误率为0时或者达到最大迭代轮数时停止训练;
表1 设计的卷积神经网络
表1中input代表输入层,conv1、conv2、…、conv5代表卷积层,pool1、pool2、…、pool5代表池化层,Fc代表全连接层,output代表输出层;
步骤(3)、特征提取
CNN训练好以后,对任一待特征提取的SAR图像,采用步骤(1)预处理后输入到步骤(2)中训练好的CNN中,选择网络中第一个全连接层的256维输出作为提取到的特征。
CN201910123314.3A 2019-02-18 2019-02-18 基于卷积神经网络的sar图像特征提取方法 Pending CN109934237A (zh)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910123314.3A CN109934237A (zh) 2019-02-18 2019-02-18 基于卷积神经网络的sar图像特征提取方法

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910123314.3A CN109934237A (zh) 2019-02-18 2019-02-18 基于卷积神经网络的sar图像特征提取方法

Publications (1)

Publication Number Publication Date
CN109934237A true CN109934237A (zh) 2019-06-25

Family

ID=66985627

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910123314.3A Pending CN109934237A (zh) 2019-02-18 2019-02-18 基于卷积神经网络的sar图像特征提取方法

Country Status (1)

Country Link
CN (1) CN109934237A (zh)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112329497A (zh) * 2019-07-18 2021-02-05 杭州海康威视数字技术股份有限公司 一种目标识别方法、装置及设备

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106407986A (zh) * 2016-08-29 2017-02-15 电子科技大学 一种基于深度模型的合成孔径雷达图像目标识别方法
CN106650694A (zh) * 2016-12-30 2017-05-10 江苏四点灵机器人有限公司 一种以卷积神经网络作为特征提取器的人脸识别方法

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106407986A (zh) * 2016-08-29 2017-02-15 电子科技大学 一种基于深度模型的合成孔径雷达图像目标识别方法
CN106650694A (zh) * 2016-12-30 2017-05-10 江苏四点灵机器人有限公司 一种以卷积神经网络作为特征提取器的人脸识别方法

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
张慧等: "基于卷积神经网络的 SAR 目标多维度特征提取", 《信息技术》 *
李倩等: "基于多层卷积神经网络的SAR图像分类方法", 《探测与控制学报》 *

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112329497A (zh) * 2019-07-18 2021-02-05 杭州海康威视数字技术股份有限公司 一种目标识别方法、装置及设备

Similar Documents

Publication Publication Date Title
Helber et al. Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification
CN106780091B (zh) 基于植被指数时空间统计特征的农业灾害信息遥感提取方法
Czyzowska-Wisniewski et al. Fractional snow cover estimation in complex alpine-forested environments using an artificial neural network
Zhao et al. Mapping rice paddies in complex landscapes with convolutional neural networks and phenological metrics
Onojeghuo et al. Optimising the use of hyperspectral and LiDAR data for mapping reedbed habitats
Pascual et al. Relationship between LiDAR-derived forest canopy height and Landsat images
CN105303184A (zh) 一种卫星遥感影像中地物精确识别方法
Ruban et al. Method for determining elements of urban infrastructure objects based on the results from air monitoring
CN113312993B (zh) 一种基于PSPNet的遥感数据土地覆盖分类方法
Zhan et al. Vegetation land use/land cover extraction from high-resolution satellite images based on adaptive context inference
Liu et al. Using SPOT 5 fusion-ready imagery to detect Chinese tamarisk (saltcedar) with mathematical morphological method
Wilkinson et al. Forest mapping from multi‐source satellite data using neural network classifiers—an experiment in Portugal
Bektas Balcik et al. Determination of magnitude and direction of land use/land cover changes in Terkos Water Basin, Istanbul
Yehia et al. Fusion of high-resolution SAR and optical imageries based on a wavelet transform and IHS integrated algorithm
CN109934237A (zh) 基于卷积神经网络的sar图像特征提取方法
CN112733746A (zh) 融合InSAR相干性与多光谱遥感的协同分类方法
Sui et al. Processing of multitemporal data and change detection
Duan et al. Time-scale transferring deep convolutional neural network for mapping early rice
Xiong et al. Detecting and Mapping Individual Fruit Trees in Complex Natural Environments via UAV Remote Sensing and Optimized YOLOv5
Avolio et al. A deep learning architecture for heterogeneous and irregularly sampled remote sensing time series
Marcal et al. Evaluation of satellite image segmentation using synthetic images
CN113469104A (zh) 基于深度学习的雷达遥感影像地表水体变化检测方法和设备
Mercier et al. Estimation and monitoring of bare soil/vegetation ratio with SPOT VEGETATION and HRVIR
Dhivya et al. Mapping of impervious surface using spectral angle mapper (SAM) and NDVI techniques, case study: Bhopal City
Graves Data and policy scale mismatch in coastal systems: The potential of μUAS as new tools for monitoring coastal resilience

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
RJ01 Rejection of invention patent application after publication

Application publication date: 20190625

RJ01 Rejection of invention patent application after publication