WO2021184891A1 - 遥感影像地物分类方法及系统 - Google Patents
遥感影像地物分类方法及系统 Download PDFInfo
- Publication number
- WO2021184891A1 WO2021184891A1 PCT/CN2020/140266 CN2020140266W WO2021184891A1 WO 2021184891 A1 WO2021184891 A1 WO 2021184891A1 CN 2020140266 W CN2020140266 W CN 2020140266W WO 2021184891 A1 WO2021184891 A1 WO 2021184891A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- remote sensing
- network model
- training
- sensing image
- red
- 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.)
- Ceased
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F18/00—Pattern recognition
- G06F18/20—Analysing
- G06F18/24—Classification techniques
- G06F18/241—Classification techniques relating to the classification model, e.g. parametric or non-parametric approaches
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F18/00—Pattern recognition
- G06F18/20—Analysing
- G06F18/21—Design or setup of recognition systems or techniques; Extraction of features in feature space; Blind source separation
- G06F18/214—Generating training patterns; Bootstrap methods, e.g. bagging or boosting
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/04—Architecture, e.g. interconnection topology
- G06N3/045—Combinations of networks
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06V—IMAGE OR VIDEO RECOGNITION OR UNDERSTANDING
- G06V20/00—Scenes; Scene-specific elements
- G06V20/10—Terrestrial scenes
- G06V20/13—Satellite images
Definitions
- the invention relates to a remote sensing image feature classification method and system.
- this method uses a single image as the discriminant unit, and each image can only contain one type of feature, and the overall characteristics of the image are learned through the convolutional neural network.
- the core of this type of algorithm is image recognition. After cutting the entire image into several sub-images containing a single feature, the features in the sub-images are identified separately.
- the disadvantage of this method is that it cannot give pixel-level classification results, and it is insufficient to solve the problem of inaccurate classification of detailed information.
- the main shortcomings of the prior art are: remote sensing image details and general feature information require different resolutions for remote sensing images, remote sensing images with different resolutions are difficult to fuse due to different sensors; traditional remote sensing image classification algorithms rely on features Extraction is not suitable for processing large-scale remote sensing images; in the end-to-end method, the down-sampling process of the convolutional neural network leads to the loss of high-resolution information, which is not conducive to the classification of detailed information.
- the present invention provides a remote sensing image feature classification method.
- the method includes the following steps: a. preprocessing the remote sensing image; b. Band data set and perform image cropping to construct training set and test set; c. Propose an end-to-end algorithm framework and build a network model; d. Input the above training set into the network model constructed above for training to obtain a network parameter model for Use the obtained network parameter model to classify remote sensing images.
- the method further includes the step of inputting the test set into the network model constructed above, and evaluating the classification result.
- the step a specifically includes: using arcgis and ENVI to perform radiation correction and spatial domain enhancement processing and filtering on the remote sensing image.
- the step b specifically includes the following steps: select the data of the red, green and blue bands, the near-infrared and red-green bands, and the full bands of the remote sensing image, respectively construct three corresponding data sets, and construct the remote sensing data after the data set
- the images were cut into multiple block images of 256 pixels * 256 pixels, the three data sets were obtained after cropping, and each data set was randomly divided into a training set and a test set at a ratio of 4:1.
- the network model includes:
- Up-sampling layer module for restoring feature information of various scales
- the present invention provides a remote sensing image feature classification system.
- the system includes a preprocessing unit, a training set test set building unit, a network model building unit, and a network model training unit.
- the preprocessing unit is used to preprocess the remote sensing image.
- the training set test set construction unit is used to select red, green and blue bands, near-infrared and red and green bands, and full-band data sets for preprocessed remote sensing images and perform image cropping to construct a training set and a test set;
- the network model building unit is used to propose an end-to-end algorithm framework and construct a network model;
- the network model training unit is used to input the above training set into the above constructed network model for training, to obtain a network parameter model, so as to use the obtained network parameters
- the model classifies remotely sensed images.
- system further includes: a network model testing unit, which is used to input the test set into the network model constructed above and evaluate the classification result.
- the preprocessing unit is specifically used to perform radiation correction and spatial domain enhancement processing filtering on the remote sensing image by using arcgis and ENVI.
- the training set test set construction unit is specifically used to select the data of the red-green-blue band, the near-infrared and the red-green band, and the full band of the remote sensing image, respectively construct three corresponding data sets, and construct the data set
- the latter remote sensing images were cut into multiple block images of 256 pixels * 256 pixels, and the three data sets were obtained after cropping, and each data set was randomly divided into a training set and a test set at a ratio of 4:1.
- the network model includes:
- Up-sampling layer module for restoring feature information of various scales
- the remote sensing image feature classification method and system of the present invention does not require remote sensing image fusion.
- the end-to-end method based on multi-scale features is also suitable for processing large-scale remote sensing images and can improve the problem of high-resolution information loss in convolutional neural networks. Better classify the detailed information in remote sensing images.
- this application can maintain more remote sensing image detail information, so that the details of the ground object classification results are more accurate, the edge information is richer, and the overall classification accuracy higher.
- Figure 1 is a flow chart of the remote sensing image feature classification method of the present invention
- FIG. 2 is a schematic diagram of a network model structure based on an end-to-end algorithm framework provided by an embodiment of the present invention
- Figure 3 is a schematic diagram of the traditional U-Net full convolutional network structure
- Figure 4 is a hardware architecture diagram of the remote sensing image feature classification system of the present invention.
- FIG. 5 is a schematic diagram of the comparison of the detailed classification effects of the results of the three methods for each data set in Embodiment 1 of the present invention.
- Fig. 1 is a flowchart of a preferred embodiment of the remote sensing image feature classification method of the present invention.
- Step S1 preprocessing the remote sensing image. in particular:
- Download Landset remote sensing images and use arcgis and ENVI to perform radiation correction and spatial domain enhancement processing filtering on the remote sensing images.
- Step S2 Select a specific band data set for the preprocessed remote sensing image and perform image cropping to construct a training set and a test set. in particular:
- a block image of 256 pixels * 256 pixels is obtained by random sampling on the remote sensing image after the data set is constructed.
- Step S3 Propose an end-to-end algorithm framework and construct a network model. in particular:
- the network model of this embodiment is constructed based on the PyTorch deep learning framework, and the hardware used is TitanX GPU.
- the main network structure includes a convolutional layer module, a down-sampling layer module, an up-sampling layer module, and continuous parallel multi-resolution Rate subnets and repeated multi-scale fusion modules.
- the function of the convolutional layer module is mainly to perform feature extraction.
- Different feature maps contain convolutional layer modules in the middle, and each convolutional layer module consists of two convolutional layers with a 3*3 convolution kernel, followed by a relu activation function.
- a convolutional layer module with a step size of 2 is used to replace the pooling layer of the U-Net full convolutional network for down-sampling, which reduces the loss of high-resolution information when multi-scale features are obtained.
- the convolution layer module is composed of two convolution kernels of 3*3 convolution.
- the feature map is gradually restored from the lowest resolution layer to the input image size, and multi-scale features and the classification result map of the same size as the input image are obtained.
- This embodiment includes 5 layers of different resolutions. Compared with the U-Net full convolutional network (see Figure 3), it simply uses jump connections to fuse the original resolution feature map and the feature map obtained after upsampling (see Figure 3). In this embodiment, the corresponding resolution information is retained throughout each resolution layer, and continuous parallel multi-resolution subnets can better maintain detailed information (as shown by the horizontal arrow in FIG. 2).
- the oblique downward arrow on the periphery of the network is mainly used to generate different resolution layers
- the internal oblique upward arrow is mainly for multi-scale fusion, so as to recover as much high resolution from low-resolution information as possible. Rate information, and further maintain the detailed information of the remote sensing image.
- Step S4 Input the above-mentioned training set into the above-mentioned constructed network model for training to obtain a network parameter model, so as to use the obtained network parameter model to classify remote sensing images.
- the network parameter model includes specific setting parameters of the network model constructed in step S3.
- Step S5 Input the test set into the network model constructed above, and evaluate the classification result. Specifically:
- test set constructed above is input into the trained network parameter model to obtain the classification result of the test set image, and the network structure proposed in this embodiment is evaluated quantitatively and qualitatively.
- Quantitative evaluation uses overall accuracy, Kappa coefficient, and F1-score to evaluate classification accuracy; qualitative evaluation uses classification result maps to evaluate the effect of detailed classification.
- FIG. 4 is a hardware architecture diagram of the remote sensing image feature classification system 10 of the present invention.
- the system includes: a preprocessing unit 101, a training set test set construction unit 102, a network model construction unit 103, a network model training unit 104, and a network model testing unit 105.
- the preprocessing unit 101 is used for preprocessing the remote sensing image. in particular:
- the preprocessing unit 101 downloads Landset remote sensing images, and uses arcgis and ENVI to perform radiation correction and spatial domain enhancement processing filtering on the remote sensing images.
- the training set and test set construction unit 102 is used to select a specific waveband data set for the preprocessed remote sensing image and perform image cropping to construct a training set and a test set. in particular:
- the training set test set construction unit 102 selects the red, green, and blue bands, the near-infrared and red-green bands, and the data of the full band of the remote sensing image, respectively constructs three corresponding data sets, and constructs the remote sensing after the data set
- the images were cut into multiple block images of 256 pixels * 256 pixels, the three data sets were obtained after cropping, and each data set was randomly divided into a training set and a test set at a ratio of 4:1.
- a block image of 256 pixels*256 pixels is obtained by random sampling on the remote sensing image after the data set is constructed.
- the network model construction unit 103 is used to propose an end-to-end algorithm framework and construct a network model. in particular:
- the network model of this embodiment is constructed based on the PyTorch deep learning framework, and the hardware used is TitanX GPU.
- the main network structure includes a convolutional layer module, a down-sampling layer module, an up-sampling layer module, and continuous parallel multi-resolution Rate subnets and repeated multi-scale fusion modules.
- the function of the convolutional layer module is mainly to perform feature extraction.
- Different feature maps contain convolutional layer modules in the middle, and each convolutional layer module is composed of two convolutional layers with a 3*3 convolution kernel, followed by a relu activation function.
- a convolutional layer module with a step size of 2 is used to replace the pooling layer of the U-Net full convolutional network for down-sampling, which reduces the loss of high-resolution information when obtaining multi-scale features.
- the convolution layer module is composed of two convolution kernels of 3*3 convolution.
- the feature map is gradually restored from the lowest resolution layer to the input image size, and multi-scale features and the classification result map of the same size as the input image are obtained.
- This embodiment includes 5 layers of different resolutions. Compared with the U-Net full convolutional network (see Figure 3), it simply uses jump connections to fuse the original resolution feature map and the feature map obtained after upsampling (see Figure 3). In this embodiment, the corresponding resolution information is retained throughout each resolution layer, and continuous parallel multi-resolution subnets can better maintain detailed information (as shown by the horizontal arrow in FIG. 2).
- the oblique downward arrow on the periphery of the network is mainly used to generate different resolution layers
- the internal oblique upward arrow is mainly for multi-scale fusion, so as to recover as much high resolution from low-resolution information as possible. Rate information, and further maintain the detailed information of the remote sensing image.
- the network model training unit 104 is configured to input the above training set into the above constructed network model for training to obtain a network parameter model. in particular:
- the network parameter model includes specific setting parameters of the network model constructed by the network model construction unit 103.
- the network model testing unit 105 is used to input the test set into the network model constructed as described above, and evaluate the classification result. Specifically:
- test set constructed above is input into the trained network parameter model described above to obtain the extraction result of the test set image, and the network structure proposed in this embodiment is evaluated quantitatively and qualitatively.
- Quantitative evaluation uses overall accuracy, Kappa coefficient, and F1-score to evaluate classification accuracy; qualitative evaluation uses classification result maps to evaluate the effect of detailed classification.
- the overall accuracy (Acc.), kappa coefficient (K) and F1-Score (F1) are specifically used as evaluation indicators.
- This application uses three data sets (TMall, TMnrg, TMnrg). The three evaluation indicators are higher than the random forest and U-Net algorithm.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- Data Mining & Analysis (AREA)
- General Physics & Mathematics (AREA)
- Life Sciences & Earth Sciences (AREA)
- Artificial Intelligence (AREA)
- General Engineering & Computer Science (AREA)
- Evolutionary Computation (AREA)
- Computer Vision & Pattern Recognition (AREA)
- Evolutionary Biology (AREA)
- Bioinformatics & Computational Biology (AREA)
- Bioinformatics & Cheminformatics (AREA)
- Molecular Biology (AREA)
- Mathematical Physics (AREA)
- Biophysics (AREA)
- Computational Linguistics (AREA)
- General Health & Medical Sciences (AREA)
- Health & Medical Sciences (AREA)
- Computing Systems (AREA)
- Biomedical Technology (AREA)
- Software Systems (AREA)
- Astronomy & Astrophysics (AREA)
- Remote Sensing (AREA)
- Multimedia (AREA)
- Image Analysis (AREA)
- Image Processing (AREA)
Abstract
Description
Claims (10)
- 一种遥感影像地物分类方法,其特征在于,该方法包括如下步骤:a.对遥感影像进行预处理;b.对经过预处理的遥感影像选择红绿蓝波段、近红外和红绿波段、全波段的数据集并进行图像裁剪,构建训练集和测试集;c.提出端到端算法框架,构建网络模型;d.将上述训练集输入上述构建的网络模型进行训练,得到网络参数模型,以便使用得到的网络参数模型对遥感影像进行地物分类。
- 如权利要求1所述的方法,其特征在于,该方法还包括步骤:将测试集输入上述构建的网络模型,评价分类结果。
- 如权利要求1所述的方法,其特征在于,所述的步骤a具体包括:利用arcgis和ENVI对所述遥感影像进行辐射校正和空间域增强处理滤波。
- 如权利要求3所述的方法,其特征在于,所述的步骤b具体包括如下步骤:选择所述遥感影像的红绿蓝波段、近红外和红绿波段、全波段的数据,分别构建相应的三个数据集,并将构建数据集后的遥感影像分别剪成256像素*256像素的多个块状图像,获取裁剪后的上述三个数据集,并将每个数据集按照4:1的比例随机分成训练集和测试集。
- 如权利要求4所述的方法,其特征在于,所述的网络模型包括:进行特征提取的卷积层模块;得到多尺度特征的下采样层模块;恢复各尺度特征信息的上采样层模块;保留各尺度特征的连续并行多分辨率子网;以及从低分辨率信息中恢复高分辨率信息的重复多尺度融合模块。
- 一种遥感影像地物分类系统,其特征在于,该系统包括预处理单元、训练集测试集构建单元、网络模型构建单元、网络模型训练单元,其中:所述预处理单元用于对遥感影像进行预处理;所述训练集测试集构建单元用于对经过预处理的遥感影像选择红绿蓝波段、近红外和红绿波段、全波段的数据集并进行图像裁剪,构建训练集和测试集;所述网络模型构建单元用于提出端到端算法框架,构建网络模型;所述网络模型训练单元用于将上述训练集输入上述构建的网络模型进行训练,得到网络参数模型,以便使用得到的网络参数模型对遥感影像进行地物分类。
- 如权利要求6所述的系统,其特征在于,所述系统还包括:网络模型测试单元,用于将测试集输入上述构建的网络模型,评价分类结果。
- 如权利要求7所述的系统,其特征在于,所述的预处理单元具体用于:利用arcgis和ENVI对所述遥感影像进行辐射校正和空间域增强处理滤波。
- 如权利要求8所述的系统,其特征在于,所述的训练集测试集构建单元具体用于:选择所述遥感影像的红绿蓝波段、近红外和红绿波段、全波段的数据,分别构建相应的三个数据集,并将构建数据集后的遥感影像分别剪成256像素*256像素的多个块状图像,获取裁剪后的上述三个数据集,并将每个数据集按照4:1的比例随机分成训练集和测试集。
- 如权利要求9所述的系统,其特征在于,所述的网络模型包括:进行特征提取的卷积层模块;得到多尺度特征的下采样层模块;恢复各尺度特征信息的上采样层模块;保留各尺度特征的连续并行多分辨率子网;以及从低分辨率信息中恢复高分辨率信息的重复多尺度融合模块。
Applications Claiming Priority (2)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| CN202010201027.2A CN111428781A (zh) | 2020-03-20 | 2020-03-20 | 遥感影像地物分类方法及系统 |
| CN202010201027.2 | 2020-03-20 |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| WO2021184891A1 true WO2021184891A1 (zh) | 2021-09-23 |
Family
ID=71548387
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| PCT/CN2020/140266 Ceased WO2021184891A1 (zh) | 2020-03-20 | 2020-12-28 | 遥感影像地物分类方法及系统 |
Country Status (2)
| Country | Link |
|---|---|
| CN (1) | CN111428781A (zh) |
| WO (1) | WO2021184891A1 (zh) |
Cited By (161)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN113887470A (zh) * | 2021-10-15 | 2022-01-04 | 浙江大学 | 基于多任务注意力机制的高分辨率遥感图像地物提取方法 |
| CN113902793A (zh) * | 2021-11-05 | 2022-01-07 | 长光卫星技术有限公司 | 基于单视觉遥感影像端到端建筑物高度预测方法、系统和电子设备 |
| CN113971758A (zh) * | 2021-10-22 | 2022-01-25 | 河北工程大学 | 一种基于正反地形思想的地物信息遥感提取方法 |
| CN113989649A (zh) * | 2021-11-25 | 2022-01-28 | 江苏科技大学 | 一种基于深度学习的遥感地块识别方法 |
| CN113989652A (zh) * | 2021-12-27 | 2022-01-28 | 中国测绘科学研究院 | 分层多重判定规则下的耕地变化检测方法及系统 |
| CN114067245A (zh) * | 2021-11-16 | 2022-02-18 | 中国铁路兰州局集团有限公司 | 一种铁路外部环境隐患识别方法及系统 |
| CN114091531A (zh) * | 2021-11-12 | 2022-02-25 | 哈尔滨工程大学 | 基于多尺度的环境特征提取方法 |
| CN114119403A (zh) * | 2021-11-23 | 2022-03-01 | 北京拙河科技有限公司 | 基于红色通道引导的图像去雾方法和系统 |
| CN114120050A (zh) * | 2021-10-18 | 2022-03-01 | 中国科学院空天信息创新研究院 | 地表生态数据提取方法及装置、设备和存储介质 |
| CN114120139A (zh) * | 2021-11-10 | 2022-03-01 | 河南大学 | 一种基于多谱段多类型水体快速检测方法及系统 |
| CN114170462A (zh) * | 2021-12-06 | 2022-03-11 | 哈尔滨理工大学 | 一种基于卷积神经网络的细粒度遥感舰船开集识别方法 |
| CN114241297A (zh) * | 2021-11-16 | 2022-03-25 | 山东科技大学 | 一种基于多尺度金字塔空间独立卷积的遥感影像分类方法 |
| CN114332619A (zh) * | 2021-12-30 | 2022-04-12 | 安徽大学 | 一种基于深度学习的遥感数据水华提取方法 |
| CN114332640A (zh) * | 2021-12-15 | 2022-04-12 | 水利部南京水利水文自动化研究所 | 基于云平台和随机森林的地表覆盖物识别及面积估算方法 |
| CN114359756A (zh) * | 2022-01-06 | 2022-04-15 | 中国科学院空天信息创新研究院 | 一种震后无人机遥感影像损毁房屋快速智能检测方法 |
| CN114359748A (zh) * | 2021-12-30 | 2022-04-15 | 中国科学院空天信息创新研究院 | 目标分类提取方法及装置 |
| CN114359710A (zh) * | 2021-12-09 | 2022-04-15 | 中国科学院空天信息创新研究院 | 遥感建筑物提取方法和装置 |
| CN114387512A (zh) * | 2021-12-28 | 2022-04-22 | 南京邮电大学 | 基于多尺度特征融合与增强的遥感影像建筑物提取方法 |
| CN114387518A (zh) * | 2022-01-14 | 2022-04-22 | 北京理工大学重庆创新中心 | 一种基于DeepLabV3改进的遥感图像分割方法 |
| CN114419457A (zh) * | 2021-12-24 | 2022-04-29 | 哈尔滨工业大学(深圳) | 面向旋转摆扫超宽幅卫星的目标在轨智能检测方法及装置 |
| CN114463642A (zh) * | 2021-10-19 | 2022-05-10 | 山东华宇航天空间技术有限公司 | 一种基于深度学习的耕地地块提取方法 |
| CN114463643A (zh) * | 2021-12-23 | 2022-05-10 | 中国科学院空天信息创新研究院 | 多模型决策级融合的滑坡识别方法及装置 |
| CN114494851A (zh) * | 2021-12-23 | 2022-05-13 | 青岛星科瑞升信息科技有限公司 | 一种基于多时相遥感影像差异信息的滑坡提取方法 |
| CN114529830A (zh) * | 2022-01-19 | 2022-05-24 | 重庆邮电大学 | 基于混合卷积网络遥感图像时空融合方法 |
| CN114550002A (zh) * | 2022-01-12 | 2022-05-27 | 山东锋士信息技术有限公司 | 基于改进U-Net的农作物遥感图像分类方法及系统 |
| CN114549972A (zh) * | 2022-01-17 | 2022-05-27 | 中国矿业大学(北京) | 露天矿采场提取方法、装置、设备、介质及程序产品 |
| CN114549534A (zh) * | 2022-01-17 | 2022-05-27 | 中国矿业大学(北京) | 矿区土地利用识别方法、装置、设备、介质及产品 |
| CN114565858A (zh) * | 2022-02-25 | 2022-05-31 | 辽宁师范大学 | 基于地理空间感知低秩重建网络的多光谱影像变化检测方法 |
| CN114596500A (zh) * | 2022-01-12 | 2022-06-07 | 南通大学 | 一种基于通道-空间注意力和DeeplabV3plus的遥感影像语义分割方法 |
| CN114596503A (zh) * | 2022-03-03 | 2022-06-07 | 大连理工大学 | 一种基于遥感卫星影像的道路提取方法 |
| CN114612315A (zh) * | 2022-01-06 | 2022-06-10 | 东南数字经济发展研究院 | 一种基于多任务学习的高分辨率影像缺失区域重建方法 |
| CN114648704A (zh) * | 2022-03-17 | 2022-06-21 | 山东师范大学 | 一种农田边界高精度提取方法及系统 |
| CN114663301A (zh) * | 2022-03-05 | 2022-06-24 | 西北工业大学 | 一种基于小波层的卷积神经网络全色锐化方法 |
| CN114663759A (zh) * | 2022-03-24 | 2022-06-24 | 东南大学 | 一种基于改进DeepLabV3+的遥感影像建筑物提取方法 |
| CN114693512A (zh) * | 2022-03-16 | 2022-07-01 | 北京理工大学 | 一种基于近场图像的远场遥感图像转化方法 |
| CN114694038A (zh) * | 2022-04-11 | 2022-07-01 | 中国矿业大学 | 基于深度学习的高分辨率遥感影像分类方法及系统 |
| CN114708476A (zh) * | 2022-04-06 | 2022-07-05 | 哈尔滨航天恒星数据系统科技有限公司 | 基于pcgp的多源遥感影像融合识别方法及其中pcgp的应用 |
| CN114724030A (zh) * | 2022-04-06 | 2022-07-08 | 西安电子科技大学 | 基于对比学习的极化sar地物分类方法 |
| CN114743110A (zh) * | 2022-03-01 | 2022-07-12 | 西北大学 | 多尺度嵌套的遥感图像变化检测方法、系统及计算机终端 |
| CN114758238A (zh) * | 2022-04-21 | 2022-07-15 | 复旦大学 | 一种机载多维度合成孔径雷达图像地物分类方法 |
| CN114792116A (zh) * | 2022-05-26 | 2022-07-26 | 中国科学院东北地理与农业生态研究所 | 一种时间序列深度卷积网络农作物遥感分类方法 |
| CN114821319A (zh) * | 2022-04-26 | 2022-07-29 | 中国地质大学(武汉) | 一种场景分类支持下的大幅遥感影像建筑物提取方法 |
| CN114821354A (zh) * | 2022-04-19 | 2022-07-29 | 福州大学 | 一种基于孪生多任务网络的城市建筑物变化遥感检测方法 |
| CN114821315A (zh) * | 2022-04-24 | 2022-07-29 | 福州大学 | 结合边缘检测和多任务学习的遥感影像耕地地块提取方法 |
| CN114821321A (zh) * | 2022-04-27 | 2022-07-29 | 浙江工业大学 | 一种基于多尺度级联卷积神经网络的叶片高光谱图像分类和回归方法 |
| CN114821351A (zh) * | 2022-03-21 | 2022-07-29 | 中国科学院空天信息创新研究院 | 铁路危险源识别方法、装置、电子设备及存储介质 |
| CN114821376A (zh) * | 2022-06-27 | 2022-07-29 | 中咨数据有限公司 | 一种基于深度学习的无人机影像地质灾害自动提取方法 |
| CN114863266A (zh) * | 2022-03-30 | 2022-08-05 | 珠江水利委员会珠江水利科学研究院 | 一种基于深度时空模式交互网络的土地利用分类方法 |
| CN114861383A (zh) * | 2021-11-17 | 2022-08-05 | 中国人民解放军空军勤务学院 | 一种基于三维模型的装备航空运输性数据处理系统 |
| CN114862731A (zh) * | 2022-03-29 | 2022-08-05 | 武汉大学 | 低秩先验与空谱信息引导的多-高光谱影像融合方法 |
| CN114863158A (zh) * | 2022-01-08 | 2022-08-05 | 哈尔滨理工大学 | 一种基于重参数化mlp的高光谱图像分类方法 |
| CN114882139A (zh) * | 2022-04-12 | 2022-08-09 | 北京理工大学 | 一种多层级地图的端到端智能生成方法及系统 |
| CN114898097A (zh) * | 2022-06-01 | 2022-08-12 | 首都师范大学 | 图像识别方法及系统 |
| CN114910427A (zh) * | 2022-05-06 | 2022-08-16 | 桂林电子科技大学 | 一种基于辐射仿真数据的偏振遥感多层云识别方法 |
| CN114913074A (zh) * | 2022-06-14 | 2022-08-16 | 湖南神帆科技有限公司 | 一种深度网络语义分割的超像素无缝拼接方法及系统 |
| CN114936995A (zh) * | 2022-06-15 | 2022-08-23 | 郑州轻工业大学 | 基于大核注意力机制的多尺度特征增强的遥感图像融合方法 |
| CN114943902A (zh) * | 2022-03-30 | 2022-08-26 | 安徽大学 | 基于多尺度特征感知网络的城市植被无人机遥感分类方法 |
| CN114973011A (zh) * | 2022-05-18 | 2022-08-30 | 哈尔滨理工大学 | 一种基于深度学习的高分辨率遥感影像建筑物提取方法 |
| CN114998703A (zh) * | 2022-05-10 | 2022-09-02 | 西北工业大学 | 一种基于高分辨卷积神经网络的遥感图像变化检测方法 |
| CN114998756A (zh) * | 2022-05-17 | 2022-09-02 | 大连理工大学 | 一种基于yolov5的遥感图像检测方法、装置及存储介质 |
| CN114998758A (zh) * | 2022-05-26 | 2022-09-02 | 电子科技大学 | 一种基于多源遥感卫星影像的输电线路绝缘子检测方法 |
| CN115017418A (zh) * | 2022-08-10 | 2022-09-06 | 北京数慧时空信息技术有限公司 | 基于强化学习的遥感影像推荐系统及方法 |
| CN115035334A (zh) * | 2022-06-07 | 2022-09-09 | 西北大学 | 多尺度融合双时相遥感图像的多分类变化检测方法及系统 |
| CN115082808A (zh) * | 2022-06-17 | 2022-09-20 | 安徽大学 | 基于高分一号数据与U-Net模型的大豆种植区提取方法 |
| CN115082785A (zh) * | 2022-05-30 | 2022-09-20 | 青海大学 | 一种高原鼠兔型退化草甸秃斑特征的判别方法 |
| CN115100539A (zh) * | 2022-06-30 | 2022-09-23 | 上海普适导航科技股份有限公司 | 一种基于遥感影像的裸土提取方法 |
| CN115100540A (zh) * | 2022-06-30 | 2022-09-23 | 电子科技大学 | 一种高分辨率遥感影像道路自动提取的方法 |
| CN115131680A (zh) * | 2022-07-05 | 2022-09-30 | 西安电子科技大学 | 基于深度可分离卷积和跳跃连接的遥感影像水体提取方法 |
| CN115187866A (zh) * | 2022-07-25 | 2022-10-14 | 苏州中科天启遥感科技有限公司 | 基于高分辨率影像的生态图斑提取方法 |
| CN115240076A (zh) * | 2022-03-08 | 2022-10-25 | 常州大学 | 一种基于卫星遥感图像目标识别的城市内涝风险评估算法 |
| CN115272749A (zh) * | 2022-07-05 | 2022-11-01 | 长沙理工大学 | 一种基于XGBoost的多尺度特征融合遥感图像分类模型 |
| CN115293344A (zh) * | 2022-07-20 | 2022-11-04 | 杭州鲁尔物联科技有限公司 | 遥感影像语义分割模型迁移学习方法、装置及计算机设备 |
| CN115331107A (zh) * | 2022-08-23 | 2022-11-11 | 北京理工大学 | 基于变形卷积选择分配网络的多源遥感影像场景识别方法 |
| CN115359349A (zh) * | 2022-07-22 | 2022-11-18 | 长光卫星技术股份有限公司 | 一种基于高分辨率遥感影像的建筑物提取网络的提取方法及偏置余弦网络 |
| CN115393722A (zh) * | 2022-08-31 | 2022-11-25 | 内蒙古大学 | 基于遥感影像的输电线路交叉跨越点自动识别系统及方法 |
| CN115423730A (zh) * | 2022-07-08 | 2022-12-02 | 西北工业大学 | 一种参数智能学习的红外双波段图像特征级融合方法 |
| CN115424089A (zh) * | 2022-08-26 | 2022-12-02 | 中国电力工程顾问集团华北电力设计院有限公司 | 一种利用unet模型的影像地物识别方法 |
| CN115439756A (zh) * | 2022-08-18 | 2022-12-06 | 中国电建集团中南勘测设计研究院有限公司 | 建筑物提取模型训练方法、提取方法、设备及存储介质 |
| CN115482420A (zh) * | 2022-10-27 | 2022-12-16 | 南京市测绘勘察研究院股份有限公司 | 一种多特征协同的高分影像耕地作物类型分类方法 |
| CN115497002A (zh) * | 2022-09-28 | 2022-12-20 | 桂林理工大学 | 一种多尺度特征融合的激光雷达遥感分类方法 |
| CN115512240A (zh) * | 2022-10-20 | 2022-12-23 | 苏州中科天启遥感科技有限公司 | 一种生态系统遥感制图方法、装置、计算机设备及存储介质 |
| CN115527123A (zh) * | 2022-10-21 | 2022-12-27 | 河北省科学院地理科学研究所 | 一种基于多源特征融合的土地覆被遥感监测方法 |
| CN115601281A (zh) * | 2022-11-04 | 2023-01-13 | 吉林大学(Cn) | 基于深度学习的遥感图像时空融合方法、系统及电子设备 |
| CN115601638A (zh) * | 2022-07-19 | 2023-01-13 | 浙江工业大学(Cn) | 一种融合空间关系的高分遥感目标检测方法 |
| CN115641508A (zh) * | 2022-11-11 | 2023-01-24 | 中国石油大学(华东) | 一种基于亚米级遥感图像的大棚解译提取方法及系统 |
| CN115641465A (zh) * | 2022-09-09 | 2023-01-24 | 西安电子科技大学 | 一种基于Transformer轻量化模型的遥感图像分类方法 |
| CN115661655A (zh) * | 2022-11-03 | 2023-01-31 | 重庆市地理信息和遥感应用中心 | 高光谱和高分影像深度特征融合的西南山区耕地提取方法 |
| CN115661681A (zh) * | 2022-11-17 | 2023-01-31 | 中国科学院空天信息创新研究院 | 一种基于深度学习的滑坡灾害自动识别方法及系统 |
| CN115761335A (zh) * | 2022-11-17 | 2023-03-07 | 西安电子科技大学 | 基于多模态决策融合的滑坡风险点分类方法 |
| CN115761297A (zh) * | 2022-08-27 | 2023-03-07 | 郑州大学 | 一种基于边缘引导的注意神经网络自动识别滑坡的方法 |
| CN115761346A (zh) * | 2022-11-22 | 2023-03-07 | 山东农业工程学院 | 一种基于多模型融合的遥感图像分类方法 |
| CN115797184A (zh) * | 2023-02-09 | 2023-03-14 | 天地信息网络研究院(安徽)有限公司 | 一种基于遥感影像的水体超分辨率提取模型 |
| CN115830297A (zh) * | 2022-12-02 | 2023-03-21 | 珠海欧比特宇航科技股份有限公司 | 一种遥感影像变化检测类样本库的处理方法 |
| CN115841625A (zh) * | 2023-02-23 | 2023-03-24 | 杭州电子科技大学 | 一种基于改进U-Net模型的遥感建筑物影像提取方法 |
| CN115861731A (zh) * | 2022-11-22 | 2023-03-28 | 安徽大学 | 基于坐标注意力和双时间语义推理的自然保护地遥感图像语义变化检测方法 |
| CN115937631A (zh) * | 2022-12-13 | 2023-04-07 | 四川电力设计咨询有限责任公司 | 遥感图像地物识别的训练样本构建方法及识别方法 |
| CN115965871A (zh) * | 2023-01-10 | 2023-04-14 | 天津市测绘院有限公司 | 基于深度学习的遥感影像建筑物年代自动判定方法 |
| CN115984693A (zh) * | 2022-12-28 | 2023-04-18 | 长光卫星技术股份有限公司 | 一种基于深度学习和轮廓规则化的遥感影像建筑提取方法 |
| CN115994855A (zh) * | 2021-10-15 | 2023-04-21 | 四川大学 | 可获得超分辨率融合图像的全色锐化方法 |
| CN115995005A (zh) * | 2023-03-22 | 2023-04-21 | 航天宏图信息技术股份有限公司 | 基于单期高分辨率遥感影像的农作物的提取方法和装置 |
| CN116030352A (zh) * | 2023-03-29 | 2023-04-28 | 山东锋士信息技术有限公司 | 融合多尺度分割和超像素分割的长时序土地利用分类方法 |
| CN116091936A (zh) * | 2022-11-28 | 2023-05-09 | 中国农业大学 | 一种融合点-地块-区域尺度数据的农情参数反演方法 |
| CN116129278A (zh) * | 2023-04-10 | 2023-05-16 | 牧马人(山东)勘察测绘集团有限公司 | 一种基于遥感影像的土地利用分类识别系统 |
| CN116168246A (zh) * | 2023-02-13 | 2023-05-26 | 中国铁道科学研究院集团有限公司节能环保劳卫研究所 | 一种用于铁路工程的弃渣场识别方法、装置、设备及介质 |
| CN116310802A (zh) * | 2023-02-21 | 2023-06-23 | 苏州中农数智科技有限公司 | 一种基于多尺度融合模型的宅基地变化监测方法和装置 |
| CN116310818A (zh) * | 2023-03-09 | 2023-06-23 | 北京科技大学 | 一种基于循环UNet网络的遥感影像变化检测方法及系统 |
| CN116310828A (zh) * | 2023-03-23 | 2023-06-23 | 重庆邮电大学 | 一种结合Transformer和CNN的高分辨率遥感图像变化检测方法及装置 |
| CN116303701A (zh) * | 2022-12-22 | 2023-06-23 | 中国科学院新疆生态与地理研究所 | 一种弱信息地物遥感提取方法 |
| CN116385881A (zh) * | 2023-04-10 | 2023-07-04 | 北京卫星信息工程研究所 | 遥感图像地物变化检测方法及装置 |
| CN116503751A (zh) * | 2023-04-17 | 2023-07-28 | 中国电子科技集团公司第五十四研究所 | 一种基于对比学习的遥感影像表征方法 |
| CN116503677A (zh) * | 2023-06-28 | 2023-07-28 | 武汉大学 | 一种湿地分类信息提取方法、系统、电子设备及存储介质 |
| CN116543305A (zh) * | 2023-05-10 | 2023-08-04 | 辽宁工程技术大学 | 顾及波段信息的多光谱遥感影像沙地智能提取方法及系统 |
| CN116543191A (zh) * | 2023-01-11 | 2023-08-04 | 中国人民解放军战略支援部队信息工程大学 | 一种多源遥感数据自适应融合地物分类方法 |
| CN116563713A (zh) * | 2023-05-19 | 2023-08-08 | 南京信息工程大学 | 一种基于dnn的冬小麦面积提取方法、系统 |
| CN116563210A (zh) * | 2023-03-21 | 2023-08-08 | 安徽中新云谷数字技术有限公司 | 一种虚拟现实图像质量评价方法及系统 |
| CN116597318A (zh) * | 2023-07-17 | 2023-08-15 | 山东锋士信息技术有限公司 | 基于遥感影像的灌区耕地精准提取方法、设备及存储介质 |
| CN116665058A (zh) * | 2023-06-06 | 2023-08-29 | 南京邮电大学 | 一种基于空间信息语义分割模型的不透水面提取方法 |
| CN116702065A (zh) * | 2023-05-30 | 2023-09-05 | 浙江时空智子大数据有限公司 | 基于影像数据黑臭水体生态治理污染监测方法及系统 |
| CN116740578A (zh) * | 2023-08-14 | 2023-09-12 | 北京数慧时空信息技术有限公司 | 基于用户选择的遥感影像推荐方法 |
| CN116740119A (zh) * | 2023-06-09 | 2023-09-12 | 河海大学 | 一种基于深度学习的烟叶图像活动轮廓分割方法 |
| CN116778104A (zh) * | 2023-08-16 | 2023-09-19 | 江西省国土资源测绘工程总院有限公司 | 一种动态遥感监测的测绘方法及系统 |
| CN116862317A (zh) * | 2023-08-08 | 2023-10-10 | 广西壮族自治区自然资源遥感院 | 一种基于项目全生命周期绩效考评管理的卫星遥感监测系统 |
| CN116883793A (zh) * | 2023-07-05 | 2023-10-13 | 上海海洋大学 | 面向遥感分类结果精度评价的多粒度空间抽样方法 |
| CN116934819A (zh) * | 2023-07-17 | 2023-10-24 | 北京理工大学 | 基于低秩特征图的多源影像高精度配准数据增广方法 |
| CN117078945A (zh) * | 2023-04-26 | 2023-11-17 | 福州大学 | 一种近海大区域多尺度浮筏养殖信息遥感智能提取方法 |
| CN117095286A (zh) * | 2023-07-24 | 2023-11-21 | 中央财经大学 | 一种基于高分辨率遥感影像的建筑物边界自动提取方法 |
| CN117237219A (zh) * | 2023-09-14 | 2023-12-15 | 武汉大学 | 一种协同双重协调遥感影像云遮挡缺失重建方法和系统 |
| CN117456369A (zh) * | 2023-12-25 | 2024-01-26 | 广东海洋大学 | 智能化红树林生长情况的视觉识别方法 |
| CN117576523A (zh) * | 2023-10-19 | 2024-02-20 | 北华航天工业学院 | 多尺度遥感定标与真实性检验场地筛选的数据集建立方法 |
| CN117689579A (zh) * | 2023-12-12 | 2024-03-12 | 安徽大学 | 一种渐进式双解耦的sar辅助遥感影像厚云去除方法 |
| CN117726947A (zh) * | 2024-01-05 | 2024-03-19 | 中国空间技术研究院 | 基于高分辨率仿真遥感图像的公路路网分布监测设备 |
| CN117975295A (zh) * | 2024-04-01 | 2024-05-03 | 南京信息工程大学 | 一种基于多尺度特征感知神经网络的积雪深度预测方法 |
| CN117994680A (zh) * | 2024-01-16 | 2024-05-07 | 河海大学 | 基于多源图像的作物生长监测方法及系统 |
| CN118135311A (zh) * | 2024-03-13 | 2024-06-04 | 南京北斗创新应用科技研究院有限公司 | 基于改进级联森林的异构时序影像湿地监测方法及装置 |
| CN118196614A (zh) * | 2023-12-14 | 2024-06-14 | 中国气象局乌鲁木齐沙漠气象研究所 | 一种基于遥感影像和神经网络的流动性沙丘识别方法及装置 |
| CN118230073A (zh) * | 2024-05-23 | 2024-06-21 | 青岛浩海网络科技股份有限公司 | 基于多尺度视角下遥感图像的土地优化分类方法及系统 |
| CN118378937A (zh) * | 2024-04-09 | 2024-07-23 | 武汉大学 | 基于高分辨率影像和机器学习的城市绿地碳储量评估方法 |
| CN118411627A (zh) * | 2024-07-02 | 2024-07-30 | 国网安徽省电力有限公司合肥供电公司 | 基于卫星遥感的输电通道漂浮物识别监测系统及方法 |
| CN118762237A (zh) * | 2024-09-05 | 2024-10-11 | 浙江大学湖州研究院 | 基于空天遥感融合影像的湿地物种分类方法 |
| CN119130801A (zh) * | 2024-11-12 | 2024-12-13 | 烟台大学 | 一种遥感图像重建模型的构建及训练方法、系统 |
| CN119181022A (zh) * | 2024-10-17 | 2024-12-24 | 北京林业大学 | 森林类型变化检测方法以及装置 |
| CN119196561A (zh) * | 2024-09-14 | 2024-12-27 | 铜陵有色金属集团股份有限公司动力厂 | 一种基于地表温度高分辨率反演的架空热力管线泄露监测方法 |
| CN119314052A (zh) * | 2024-10-25 | 2025-01-14 | 南京信息工程大学 | 一种遥感影像沙漠灌木提取方法 |
| CN119418189A (zh) * | 2024-09-23 | 2025-02-11 | 电子科技大学 | 基于特征转换和知识增强的遥感图像细粒度地物提取方法 |
| CN119418211A (zh) * | 2024-11-04 | 2025-02-11 | 中国科学院地理科学与资源研究所 | 一种基于多尺度查询的Maskformer耕地地块识别方法 |
| CN119418141A (zh) * | 2025-01-08 | 2025-02-11 | 吉林农业大学 | 一种基于Mamba的遥感图像作物分类方法 |
| CN119445358A (zh) * | 2024-09-24 | 2025-02-14 | 广东省国土资源测绘院 | 一种甘蔗识别方法 |
| CN119540783A (zh) * | 2025-01-22 | 2025-02-28 | 浙江时空智子大数据有限公司 | 基于遥感影像空间邻接关系的城市功能区识别方法及系统 |
| CN119625526A (zh) * | 2024-11-25 | 2025-03-14 | 中国农业科学院农业资源与农业区划研究所 | 一种基于改进YOLOv8的有毒植物狼毒大戟识别及空间定位方法 |
| CN119692866A (zh) * | 2024-12-24 | 2025-03-25 | 广东工业大学 | 基于gbdt模型的高分城市绿地形态对气溶胶污染的削减方法 |
| CN119693811A (zh) * | 2024-11-14 | 2025-03-25 | 南京航空航天大学 | 基于多模态遥感图像的小目标检测方法 |
| CN119723079A (zh) * | 2024-12-03 | 2025-03-28 | 耕宇牧星(北京)空间科技有限公司 | 一种基于波型网络的无人机遥感林木图像分割方法及系统 |
| CN119851133A (zh) * | 2024-12-31 | 2025-04-18 | 中国海洋大学 | 基于高分辨率全球模式改进城市绿地生物源排放的方法 |
| CN119919798A (zh) * | 2024-12-18 | 2025-05-02 | 中铁工程设计咨询集团有限公司 | 一种基于时序光谱变化特征的耕地提取方法及装置 |
| CN119942367A (zh) * | 2025-04-03 | 2025-05-06 | 无锡学院 | 一种基于RepFNet网络的积雪覆盖度监测方法 |
| CN120014430A (zh) * | 2024-12-23 | 2025-05-16 | 中交第二公路勘察设计研究院有限公司 | 一种弱目标快速遥感检测方法及系统 |
| CN120068369A (zh) * | 2024-12-27 | 2025-05-30 | 北京理工大学 | 多重约束下的光学稀疏孔径成像系统光瞳排布优化方法 |
| CN120356021A (zh) * | 2025-06-25 | 2025-07-22 | 北京吉威数源信息技术有限公司 | 一种复杂场景下多模态遥感数据自动分类方法 |
| CN120495692A (zh) * | 2025-05-15 | 2025-08-15 | 生态环境部卫星环境应用中心 | 基于遥感影像的生态保护红线内建筑垃圾识别方法和装置 |
| CN120822110A (zh) * | 2025-09-17 | 2025-10-21 | 北京师范大学 | 基于PlanetScope多时相数据和ALOS DEM数据的侵蚀沟提取方法和系统 |
| CN121330516A (zh) * | 2025-11-25 | 2026-01-13 | 廊坊市圆观科技有限公司 | 基于空洞卷积和动态蛇形卷积的水体提取系统及方法 |
Families Citing this family (8)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN111428781A (zh) * | 2020-03-20 | 2020-07-17 | 中国科学院深圳先进技术研究院 | 遥感影像地物分类方法及系统 |
| CN112836610B (zh) * | 2021-01-26 | 2022-05-27 | 平衡机器科技(深圳)有限公司 | 一种基于遥感数据的土地利用变化与碳储量定量估算方法 |
| CN114694019B (zh) * | 2022-02-25 | 2024-11-26 | 中南大学 | 基于异常检测的遥感影像建筑物迁移提取方法 |
| CN115861788A (zh) * | 2022-10-21 | 2023-03-28 | 厦门天卫科技有限公司 | 一种基于高分辨率卫星遥感影像的耕地地块提取方法 |
| CN115797788B (zh) * | 2023-02-17 | 2023-04-14 | 武汉大学 | 基于深度学习的多模态铁路设计要素遥感特征提取方法 |
| CN118378780A (zh) * | 2024-04-08 | 2024-07-23 | 广西壮族自治区自然资源遥感院 | 一种基于遥感影像的环境综合评估方法及系统 |
| CN120279321B (zh) * | 2025-03-26 | 2025-09-23 | 北京东方天安科技有限公司 | 一种基于人工智能的遥感影像特征判别方法及系统 |
| CN119942368B (zh) * | 2025-04-08 | 2025-11-14 | 中国科学院空天信息创新研究院 | 基于深度神经网络的遥感图像检测方法及装置 |
Citations (7)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN108564109A (zh) * | 2018-03-21 | 2018-09-21 | 天津大学 | 一种基于深度学习的遥感图像目标检测方法 |
| CN108805874A (zh) * | 2018-06-11 | 2018-11-13 | 中国电子科技集团公司第三研究所 | 一种基于卷积神经网络的多光谱图像语义切割方法 |
| CN109711449A (zh) * | 2018-12-20 | 2019-05-03 | 北京以萨技术股份有限公司 | 一种基于全卷积网络的图像分类算法 |
| US20190325269A1 (en) * | 2018-04-20 | 2019-10-24 | XNOR.ai, Inc. | Image Classification through Label Progression |
| CN110633633A (zh) * | 2019-08-08 | 2019-12-31 | 北京工业大学 | 一种基于自适应阈值的遥感影像道路提取方法 |
| CN110717420A (zh) * | 2019-09-25 | 2020-01-21 | 中国科学院深圳先进技术研究院 | 一种基于遥感图像的耕地提取方法、系统及电子设备 |
| CN111428781A (zh) * | 2020-03-20 | 2020-07-17 | 中国科学院深圳先进技术研究院 | 遥感影像地物分类方法及系统 |
Family Cites Families (1)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN109255334B (zh) * | 2018-09-27 | 2021-12-07 | 中国电子科技集团公司第五十四研究所 | 基于深度学习语义分割网络的遥感影像地物分类方法 |
-
2020
- 2020-03-20 CN CN202010201027.2A patent/CN111428781A/zh active Pending
- 2020-12-28 WO PCT/CN2020/140266 patent/WO2021184891A1/zh not_active Ceased
Patent Citations (7)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN108564109A (zh) * | 2018-03-21 | 2018-09-21 | 天津大学 | 一种基于深度学习的遥感图像目标检测方法 |
| US20190325269A1 (en) * | 2018-04-20 | 2019-10-24 | XNOR.ai, Inc. | Image Classification through Label Progression |
| CN108805874A (zh) * | 2018-06-11 | 2018-11-13 | 中国电子科技集团公司第三研究所 | 一种基于卷积神经网络的多光谱图像语义切割方法 |
| CN109711449A (zh) * | 2018-12-20 | 2019-05-03 | 北京以萨技术股份有限公司 | 一种基于全卷积网络的图像分类算法 |
| CN110633633A (zh) * | 2019-08-08 | 2019-12-31 | 北京工业大学 | 一种基于自适应阈值的遥感影像道路提取方法 |
| CN110717420A (zh) * | 2019-09-25 | 2020-01-21 | 中国科学院深圳先进技术研究院 | 一种基于遥感图像的耕地提取方法、系统及电子设备 |
| CN111428781A (zh) * | 2020-03-20 | 2020-07-17 | 中国科学院深圳先进技术研究院 | 遥感影像地物分类方法及系统 |
Non-Patent Citations (2)
| Title |
|---|
| WANG HAIJUN: "Research and Application of Deep Convolutional Neural Networks in Remote Sensing Image Classification", CHINESE DOCTORAL DISSERTATIONS FULL-TEXT DATABASE, UNIVERSITY OF CHINESE ACADEMY OF SCIENCES, CN, 15 October 2018 (2018-10-15), CN, XP055852586, ISSN: 1674-022X * |
| XIANG JINRONG, REN JIANWEI, LI BAOYONG, WAN ZHI, LIU ZEXUN, LIU HONGXING, LI XIANSHENG, SUN JINGXU: "Research on Ground Scenery Spectral Radiation Source with Tunable Spectra", SPECTROSCOPY AND SPECTRAL ANALYSIS, BEIJING DAXUE CHUBANSHE, CN, vol. 35, no. 2, 28 February 2015 (2015-02-28), CN, pages 298 - 303, XP055852601, ISSN: 1000-0593, DOI: 10.3964/j.issn.1000-0593(2015)02-0298-06 * |
Cited By (191)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN113887470A (zh) * | 2021-10-15 | 2022-01-04 | 浙江大学 | 基于多任务注意力机制的高分辨率遥感图像地物提取方法 |
| CN115994855A (zh) * | 2021-10-15 | 2023-04-21 | 四川大学 | 可获得超分辨率融合图像的全色锐化方法 |
| CN114120050A (zh) * | 2021-10-18 | 2022-03-01 | 中国科学院空天信息创新研究院 | 地表生态数据提取方法及装置、设备和存储介质 |
| CN114463642A (zh) * | 2021-10-19 | 2022-05-10 | 山东华宇航天空间技术有限公司 | 一种基于深度学习的耕地地块提取方法 |
| CN113971758A (zh) * | 2021-10-22 | 2022-01-25 | 河北工程大学 | 一种基于正反地形思想的地物信息遥感提取方法 |
| CN113902793B (zh) * | 2021-11-05 | 2024-05-14 | 长光卫星技术股份有限公司 | 基于单视觉遥感影像端到端建筑物高度预测方法、系统和电子设备 |
| CN113902793A (zh) * | 2021-11-05 | 2022-01-07 | 长光卫星技术有限公司 | 基于单视觉遥感影像端到端建筑物高度预测方法、系统和电子设备 |
| CN114120139A (zh) * | 2021-11-10 | 2022-03-01 | 河南大学 | 一种基于多谱段多类型水体快速检测方法及系统 |
| CN114091531A (zh) * | 2021-11-12 | 2022-02-25 | 哈尔滨工程大学 | 基于多尺度的环境特征提取方法 |
| CN114067245A (zh) * | 2021-11-16 | 2022-02-18 | 中国铁路兰州局集团有限公司 | 一种铁路外部环境隐患识别方法及系统 |
| CN114241297A (zh) * | 2021-11-16 | 2022-03-25 | 山东科技大学 | 一种基于多尺度金字塔空间独立卷积的遥感影像分类方法 |
| CN114861383A (zh) * | 2021-11-17 | 2022-08-05 | 中国人民解放军空军勤务学院 | 一种基于三维模型的装备航空运输性数据处理系统 |
| CN114119403A (zh) * | 2021-11-23 | 2022-03-01 | 北京拙河科技有限公司 | 基于红色通道引导的图像去雾方法和系统 |
| CN113989649A (zh) * | 2021-11-25 | 2022-01-28 | 江苏科技大学 | 一种基于深度学习的遥感地块识别方法 |
| CN114170462A (zh) * | 2021-12-06 | 2022-03-11 | 哈尔滨理工大学 | 一种基于卷积神经网络的细粒度遥感舰船开集识别方法 |
| CN114359710A (zh) * | 2021-12-09 | 2022-04-15 | 中国科学院空天信息创新研究院 | 遥感建筑物提取方法和装置 |
| CN114332640A (zh) * | 2021-12-15 | 2022-04-12 | 水利部南京水利水文自动化研究所 | 基于云平台和随机森林的地表覆盖物识别及面积估算方法 |
| CN114463643A (zh) * | 2021-12-23 | 2022-05-10 | 中国科学院空天信息创新研究院 | 多模型决策级融合的滑坡识别方法及装置 |
| CN114494851A (zh) * | 2021-12-23 | 2022-05-13 | 青岛星科瑞升信息科技有限公司 | 一种基于多时相遥感影像差异信息的滑坡提取方法 |
| CN114419457A (zh) * | 2021-12-24 | 2022-04-29 | 哈尔滨工业大学(深圳) | 面向旋转摆扫超宽幅卫星的目标在轨智能检测方法及装置 |
| CN113989652A (zh) * | 2021-12-27 | 2022-01-28 | 中国测绘科学研究院 | 分层多重判定规则下的耕地变化检测方法及系统 |
| CN114387512A (zh) * | 2021-12-28 | 2022-04-22 | 南京邮电大学 | 基于多尺度特征融合与增强的遥感影像建筑物提取方法 |
| CN114387512B (zh) * | 2021-12-28 | 2024-04-19 | 南京邮电大学 | 基于多尺度特征融合与增强的遥感影像建筑物提取方法 |
| CN114359748A (zh) * | 2021-12-30 | 2022-04-15 | 中国科学院空天信息创新研究院 | 目标分类提取方法及装置 |
| CN114332619A (zh) * | 2021-12-30 | 2022-04-12 | 安徽大学 | 一种基于深度学习的遥感数据水华提取方法 |
| CN114612315A (zh) * | 2022-01-06 | 2022-06-10 | 东南数字经济发展研究院 | 一种基于多任务学习的高分辨率影像缺失区域重建方法 |
| CN114359756A (zh) * | 2022-01-06 | 2022-04-15 | 中国科学院空天信息创新研究院 | 一种震后无人机遥感影像损毁房屋快速智能检测方法 |
| CN114863158A (zh) * | 2022-01-08 | 2022-08-05 | 哈尔滨理工大学 | 一种基于重参数化mlp的高光谱图像分类方法 |
| CN114550002A (zh) * | 2022-01-12 | 2022-05-27 | 山东锋士信息技术有限公司 | 基于改进U-Net的农作物遥感图像分类方法及系统 |
| CN114596500A (zh) * | 2022-01-12 | 2022-06-07 | 南通大学 | 一种基于通道-空间注意力和DeeplabV3plus的遥感影像语义分割方法 |
| CN114387518A (zh) * | 2022-01-14 | 2022-04-22 | 北京理工大学重庆创新中心 | 一种基于DeepLabV3改进的遥感图像分割方法 |
| CN114549972B (zh) * | 2022-01-17 | 2023-01-03 | 中国矿业大学(北京) | 露天矿采场提取方法、装置、设备及介质 |
| CN114549534A (zh) * | 2022-01-17 | 2022-05-27 | 中国矿业大学(北京) | 矿区土地利用识别方法、装置、设备、介质及产品 |
| CN114549972A (zh) * | 2022-01-17 | 2022-05-27 | 中国矿业大学(北京) | 露天矿采场提取方法、装置、设备、介质及程序产品 |
| CN114529830A (zh) * | 2022-01-19 | 2022-05-24 | 重庆邮电大学 | 基于混合卷积网络遥感图像时空融合方法 |
| CN114565858A (zh) * | 2022-02-25 | 2022-05-31 | 辽宁师范大学 | 基于地理空间感知低秩重建网络的多光谱影像变化检测方法 |
| CN114565858B (zh) * | 2022-02-25 | 2024-04-05 | 辽宁师范大学 | 基于地理空间感知低秩重建网络的多光谱影像变化检测方法 |
| CN114743110A (zh) * | 2022-03-01 | 2022-07-12 | 西北大学 | 多尺度嵌套的遥感图像变化检测方法、系统及计算机终端 |
| CN114596503A (zh) * | 2022-03-03 | 2022-06-07 | 大连理工大学 | 一种基于遥感卫星影像的道路提取方法 |
| CN114663301B (zh) * | 2022-03-05 | 2024-03-08 | 西北工业大学 | 一种基于小波层的卷积神经网络全色锐化方法 |
| CN114663301A (zh) * | 2022-03-05 | 2022-06-24 | 西北工业大学 | 一种基于小波层的卷积神经网络全色锐化方法 |
| CN115240076A (zh) * | 2022-03-08 | 2022-10-25 | 常州大学 | 一种基于卫星遥感图像目标识别的城市内涝风险评估算法 |
| CN114693512A (zh) * | 2022-03-16 | 2022-07-01 | 北京理工大学 | 一种基于近场图像的远场遥感图像转化方法 |
| CN114648704A (zh) * | 2022-03-17 | 2022-06-21 | 山东师范大学 | 一种农田边界高精度提取方法及系统 |
| CN114821351A (zh) * | 2022-03-21 | 2022-07-29 | 中国科学院空天信息创新研究院 | 铁路危险源识别方法、装置、电子设备及存储介质 |
| CN114663759A (zh) * | 2022-03-24 | 2022-06-24 | 东南大学 | 一种基于改进DeepLabV3+的遥感影像建筑物提取方法 |
| CN114862731B (zh) * | 2022-03-29 | 2024-04-16 | 武汉大学 | 低秩先验与空谱信息引导的多-高光谱影像融合方法 |
| CN114862731A (zh) * | 2022-03-29 | 2022-08-05 | 武汉大学 | 低秩先验与空谱信息引导的多-高光谱影像融合方法 |
| CN114863266A (zh) * | 2022-03-30 | 2022-08-05 | 珠江水利委员会珠江水利科学研究院 | 一种基于深度时空模式交互网络的土地利用分类方法 |
| CN114943902A (zh) * | 2022-03-30 | 2022-08-26 | 安徽大学 | 基于多尺度特征感知网络的城市植被无人机遥感分类方法 |
| CN114724030A (zh) * | 2022-04-06 | 2022-07-08 | 西安电子科技大学 | 基于对比学习的极化sar地物分类方法 |
| CN114708476A (zh) * | 2022-04-06 | 2022-07-05 | 哈尔滨航天恒星数据系统科技有限公司 | 基于pcgp的多源遥感影像融合识别方法及其中pcgp的应用 |
| CN114694038A (zh) * | 2022-04-11 | 2022-07-01 | 中国矿业大学 | 基于深度学习的高分辨率遥感影像分类方法及系统 |
| CN114882139A (zh) * | 2022-04-12 | 2022-08-09 | 北京理工大学 | 一种多层级地图的端到端智能生成方法及系统 |
| CN114882139B (zh) * | 2022-04-12 | 2024-06-07 | 北京理工大学 | 一种多层级地图的端到端智能生成方法及系统 |
| CN114821354B (zh) * | 2022-04-19 | 2024-06-07 | 福州大学 | 一种基于孪生多任务网络的城市建筑物变化遥感检测方法 |
| CN114821354A (zh) * | 2022-04-19 | 2022-07-29 | 福州大学 | 一种基于孪生多任务网络的城市建筑物变化遥感检测方法 |
| CN114758238A (zh) * | 2022-04-21 | 2022-07-15 | 复旦大学 | 一种机载多维度合成孔径雷达图像地物分类方法 |
| CN114821315A (zh) * | 2022-04-24 | 2022-07-29 | 福州大学 | 结合边缘检测和多任务学习的遥感影像耕地地块提取方法 |
| CN114821315B (zh) * | 2022-04-24 | 2024-06-07 | 福州大学 | 结合边缘检测和多任务学习的遥感影像耕地地块提取方法 |
| CN114821319A (zh) * | 2022-04-26 | 2022-07-29 | 中国地质大学(武汉) | 一种场景分类支持下的大幅遥感影像建筑物提取方法 |
| CN114821321A (zh) * | 2022-04-27 | 2022-07-29 | 浙江工业大学 | 一种基于多尺度级联卷积神经网络的叶片高光谱图像分类和回归方法 |
| CN114910427A (zh) * | 2022-05-06 | 2022-08-16 | 桂林电子科技大学 | 一种基于辐射仿真数据的偏振遥感多层云识别方法 |
| CN114998703B (zh) * | 2022-05-10 | 2024-03-08 | 西北工业大学 | 一种基于高分辨卷积神经网络的遥感图像变化检测方法 |
| CN114998703A (zh) * | 2022-05-10 | 2022-09-02 | 西北工业大学 | 一种基于高分辨卷积神经网络的遥感图像变化检测方法 |
| CN114998756A (zh) * | 2022-05-17 | 2022-09-02 | 大连理工大学 | 一种基于yolov5的遥感图像检测方法、装置及存储介质 |
| CN114973011A (zh) * | 2022-05-18 | 2022-08-30 | 哈尔滨理工大学 | 一种基于深度学习的高分辨率遥感影像建筑物提取方法 |
| CN114792116A (zh) * | 2022-05-26 | 2022-07-26 | 中国科学院东北地理与农业生态研究所 | 一种时间序列深度卷积网络农作物遥感分类方法 |
| CN114792116B (zh) * | 2022-05-26 | 2024-05-03 | 中国科学院东北地理与农业生态研究所 | 一种时间序列深度卷积网络农作物遥感分类方法 |
| CN114998758B (zh) * | 2022-05-26 | 2024-05-03 | 电子科技大学 | 一种基于多源遥感卫星影像的输电线路绝缘子检测方法 |
| CN114998758A (zh) * | 2022-05-26 | 2022-09-02 | 电子科技大学 | 一种基于多源遥感卫星影像的输电线路绝缘子检测方法 |
| CN115082785A (zh) * | 2022-05-30 | 2022-09-20 | 青海大学 | 一种高原鼠兔型退化草甸秃斑特征的判别方法 |
| CN114898097B (zh) * | 2022-06-01 | 2024-05-10 | 首都师范大学 | 图像识别方法及系统 |
| CN114898097A (zh) * | 2022-06-01 | 2022-08-12 | 首都师范大学 | 图像识别方法及系统 |
| CN115035334A (zh) * | 2022-06-07 | 2022-09-09 | 西北大学 | 多尺度融合双时相遥感图像的多分类变化检测方法及系统 |
| CN114913074A (zh) * | 2022-06-14 | 2022-08-16 | 湖南神帆科技有限公司 | 一种深度网络语义分割的超像素无缝拼接方法及系统 |
| CN114936995A (zh) * | 2022-06-15 | 2022-08-23 | 郑州轻工业大学 | 基于大核注意力机制的多尺度特征增强的遥感图像融合方法 |
| CN115082808A (zh) * | 2022-06-17 | 2022-09-20 | 安徽大学 | 基于高分一号数据与U-Net模型的大豆种植区提取方法 |
| CN114821376A (zh) * | 2022-06-27 | 2022-07-29 | 中咨数据有限公司 | 一种基于深度学习的无人机影像地质灾害自动提取方法 |
| CN115100540B (zh) * | 2022-06-30 | 2024-05-07 | 电子科技大学 | 一种高分辨率遥感影像道路自动提取的方法 |
| CN115100540A (zh) * | 2022-06-30 | 2022-09-23 | 电子科技大学 | 一种高分辨率遥感影像道路自动提取的方法 |
| CN115100539A (zh) * | 2022-06-30 | 2022-09-23 | 上海普适导航科技股份有限公司 | 一种基于遥感影像的裸土提取方法 |
| CN115272749A (zh) * | 2022-07-05 | 2022-11-01 | 长沙理工大学 | 一种基于XGBoost的多尺度特征融合遥感图像分类模型 |
| CN115131680A (zh) * | 2022-07-05 | 2022-09-30 | 西安电子科技大学 | 基于深度可分离卷积和跳跃连接的遥感影像水体提取方法 |
| CN115423730A (zh) * | 2022-07-08 | 2022-12-02 | 西北工业大学 | 一种参数智能学习的红外双波段图像特征级融合方法 |
| CN115601638A (zh) * | 2022-07-19 | 2023-01-13 | 浙江工业大学(Cn) | 一种融合空间关系的高分遥感目标检测方法 |
| CN115293344A (zh) * | 2022-07-20 | 2022-11-04 | 杭州鲁尔物联科技有限公司 | 遥感影像语义分割模型迁移学习方法、装置及计算机设备 |
| CN115359349A (zh) * | 2022-07-22 | 2022-11-18 | 长光卫星技术股份有限公司 | 一种基于高分辨率遥感影像的建筑物提取网络的提取方法及偏置余弦网络 |
| CN115187866A (zh) * | 2022-07-25 | 2022-10-14 | 苏州中科天启遥感科技有限公司 | 基于高分辨率影像的生态图斑提取方法 |
| CN115017418A (zh) * | 2022-08-10 | 2022-09-06 | 北京数慧时空信息技术有限公司 | 基于强化学习的遥感影像推荐系统及方法 |
| CN115017418B (zh) * | 2022-08-10 | 2022-11-01 | 北京数慧时空信息技术有限公司 | 基于强化学习的遥感影像推荐系统及方法 |
| CN115439756A (zh) * | 2022-08-18 | 2022-12-06 | 中国电建集团中南勘测设计研究院有限公司 | 建筑物提取模型训练方法、提取方法、设备及存储介质 |
| CN115331107A (zh) * | 2022-08-23 | 2022-11-11 | 北京理工大学 | 基于变形卷积选择分配网络的多源遥感影像场景识别方法 |
| CN115424089A (zh) * | 2022-08-26 | 2022-12-02 | 中国电力工程顾问集团华北电力设计院有限公司 | 一种利用unet模型的影像地物识别方法 |
| CN115761297A (zh) * | 2022-08-27 | 2023-03-07 | 郑州大学 | 一种基于边缘引导的注意神经网络自动识别滑坡的方法 |
| CN115393722A (zh) * | 2022-08-31 | 2022-11-25 | 内蒙古大学 | 基于遥感影像的输电线路交叉跨越点自动识别系统及方法 |
| CN115641465A (zh) * | 2022-09-09 | 2023-01-24 | 西安电子科技大学 | 一种基于Transformer轻量化模型的遥感图像分类方法 |
| CN115497002A (zh) * | 2022-09-28 | 2022-12-20 | 桂林理工大学 | 一种多尺度特征融合的激光雷达遥感分类方法 |
| CN115512240A (zh) * | 2022-10-20 | 2022-12-23 | 苏州中科天启遥感科技有限公司 | 一种生态系统遥感制图方法、装置、计算机设备及存储介质 |
| CN115527123A (zh) * | 2022-10-21 | 2022-12-27 | 河北省科学院地理科学研究所 | 一种基于多源特征融合的土地覆被遥感监测方法 |
| CN115482420A (zh) * | 2022-10-27 | 2022-12-16 | 南京市测绘勘察研究院股份有限公司 | 一种多特征协同的高分影像耕地作物类型分类方法 |
| CN115661655B (zh) * | 2022-11-03 | 2024-03-22 | 重庆市地理信息和遥感应用中心 | 高光谱和高分影像深度特征融合的西南山区耕地提取方法 |
| CN115661655A (zh) * | 2022-11-03 | 2023-01-31 | 重庆市地理信息和遥感应用中心 | 高光谱和高分影像深度特征融合的西南山区耕地提取方法 |
| CN115601281A (zh) * | 2022-11-04 | 2023-01-13 | 吉林大学(Cn) | 基于深度学习的遥感图像时空融合方法、系统及电子设备 |
| CN115641508A (zh) * | 2022-11-11 | 2023-01-24 | 中国石油大学(华东) | 一种基于亚米级遥感图像的大棚解译提取方法及系统 |
| CN115661681A (zh) * | 2022-11-17 | 2023-01-31 | 中国科学院空天信息创新研究院 | 一种基于深度学习的滑坡灾害自动识别方法及系统 |
| CN115761335A (zh) * | 2022-11-17 | 2023-03-07 | 西安电子科技大学 | 基于多模态决策融合的滑坡风险点分类方法 |
| CN115861731A (zh) * | 2022-11-22 | 2023-03-28 | 安徽大学 | 基于坐标注意力和双时间语义推理的自然保护地遥感图像语义变化检测方法 |
| CN115761346A (zh) * | 2022-11-22 | 2023-03-07 | 山东农业工程学院 | 一种基于多模型融合的遥感图像分类方法 |
| CN115861731B (zh) * | 2022-11-22 | 2025-07-25 | 安徽大学 | 基于坐标注意力和双时间语义推理的自然保护地遥感图像语义变化检测方法 |
| CN116091936A (zh) * | 2022-11-28 | 2023-05-09 | 中国农业大学 | 一种融合点-地块-区域尺度数据的农情参数反演方法 |
| CN115830297A (zh) * | 2022-12-02 | 2023-03-21 | 珠海欧比特宇航科技股份有限公司 | 一种遥感影像变化检测类样本库的处理方法 |
| CN115937631A (zh) * | 2022-12-13 | 2023-04-07 | 四川电力设计咨询有限责任公司 | 遥感图像地物识别的训练样本构建方法及识别方法 |
| CN116303701A (zh) * | 2022-12-22 | 2023-06-23 | 中国科学院新疆生态与地理研究所 | 一种弱信息地物遥感提取方法 |
| CN115984693A (zh) * | 2022-12-28 | 2023-04-18 | 长光卫星技术股份有限公司 | 一种基于深度学习和轮廓规则化的遥感影像建筑提取方法 |
| CN115965871A (zh) * | 2023-01-10 | 2023-04-14 | 天津市测绘院有限公司 | 基于深度学习的遥感影像建筑物年代自动判定方法 |
| CN116543191A (zh) * | 2023-01-11 | 2023-08-04 | 中国人民解放军战略支援部队信息工程大学 | 一种多源遥感数据自适应融合地物分类方法 |
| CN115797184B (zh) * | 2023-02-09 | 2023-06-30 | 天地信息网络研究院(安徽)有限公司 | 一种地表水体超分辨率提取方法 |
| CN115797184A (zh) * | 2023-02-09 | 2023-03-14 | 天地信息网络研究院(安徽)有限公司 | 一种基于遥感影像的水体超分辨率提取模型 |
| CN116168246A (zh) * | 2023-02-13 | 2023-05-26 | 中国铁道科学研究院集团有限公司节能环保劳卫研究所 | 一种用于铁路工程的弃渣场识别方法、装置、设备及介质 |
| CN116310802A (zh) * | 2023-02-21 | 2023-06-23 | 苏州中农数智科技有限公司 | 一种基于多尺度融合模型的宅基地变化监测方法和装置 |
| CN115841625A (zh) * | 2023-02-23 | 2023-03-24 | 杭州电子科技大学 | 一种基于改进U-Net模型的遥感建筑物影像提取方法 |
| CN116310818A (zh) * | 2023-03-09 | 2023-06-23 | 北京科技大学 | 一种基于循环UNet网络的遥感影像变化检测方法及系统 |
| CN116563210B (zh) * | 2023-03-21 | 2023-12-08 | 安徽中新云谷数字技术有限公司 | 一种虚拟现实图像质量评价方法及系统 |
| CN116563210A (zh) * | 2023-03-21 | 2023-08-08 | 安徽中新云谷数字技术有限公司 | 一种虚拟现实图像质量评价方法及系统 |
| CN115995005B (zh) * | 2023-03-22 | 2023-08-01 | 航天宏图信息技术股份有限公司 | 基于单期高分辨率遥感影像的农作物的提取方法和装置 |
| CN115995005A (zh) * | 2023-03-22 | 2023-04-21 | 航天宏图信息技术股份有限公司 | 基于单期高分辨率遥感影像的农作物的提取方法和装置 |
| CN116310828A (zh) * | 2023-03-23 | 2023-06-23 | 重庆邮电大学 | 一种结合Transformer和CNN的高分辨率遥感图像变化检测方法及装置 |
| CN116030352A (zh) * | 2023-03-29 | 2023-04-28 | 山东锋士信息技术有限公司 | 融合多尺度分割和超像素分割的长时序土地利用分类方法 |
| CN116385881A (zh) * | 2023-04-10 | 2023-07-04 | 北京卫星信息工程研究所 | 遥感图像地物变化检测方法及装置 |
| CN116385881B (zh) * | 2023-04-10 | 2023-11-14 | 北京卫星信息工程研究所 | 遥感图像地物变化检测方法及装置 |
| CN116129278A (zh) * | 2023-04-10 | 2023-05-16 | 牧马人(山东)勘察测绘集团有限公司 | 一种基于遥感影像的土地利用分类识别系统 |
| CN116503751A (zh) * | 2023-04-17 | 2023-07-28 | 中国电子科技集团公司第五十四研究所 | 一种基于对比学习的遥感影像表征方法 |
| CN116503751B (zh) * | 2023-04-17 | 2026-03-17 | 中国电子科技集团公司第五十四研究所 | 一种基于对比学习的遥感影像表征方法 |
| CN117078945A (zh) * | 2023-04-26 | 2023-11-17 | 福州大学 | 一种近海大区域多尺度浮筏养殖信息遥感智能提取方法 |
| CN116543305A (zh) * | 2023-05-10 | 2023-08-04 | 辽宁工程技术大学 | 顾及波段信息的多光谱遥感影像沙地智能提取方法及系统 |
| CN116563713A (zh) * | 2023-05-19 | 2023-08-08 | 南京信息工程大学 | 一种基于dnn的冬小麦面积提取方法、系统 |
| CN116702065A (zh) * | 2023-05-30 | 2023-09-05 | 浙江时空智子大数据有限公司 | 基于影像数据黑臭水体生态治理污染监测方法及系统 |
| CN116702065B (zh) * | 2023-05-30 | 2024-04-16 | 浙江时空智子大数据有限公司 | 基于影像数据黑臭水体生态治理污染监测方法及系统 |
| CN116665058A (zh) * | 2023-06-06 | 2023-08-29 | 南京邮电大学 | 一种基于空间信息语义分割模型的不透水面提取方法 |
| CN116740119A (zh) * | 2023-06-09 | 2023-09-12 | 河海大学 | 一种基于深度学习的烟叶图像活动轮廓分割方法 |
| CN116503677B (zh) * | 2023-06-28 | 2023-09-05 | 武汉大学 | 一种湿地分类信息提取方法、系统、电子设备及存储介质 |
| CN116503677A (zh) * | 2023-06-28 | 2023-07-28 | 武汉大学 | 一种湿地分类信息提取方法、系统、电子设备及存储介质 |
| CN116883793A (zh) * | 2023-07-05 | 2023-10-13 | 上海海洋大学 | 面向遥感分类结果精度评价的多粒度空间抽样方法 |
| CN116597318B (zh) * | 2023-07-17 | 2023-09-26 | 山东锋士信息技术有限公司 | 基于遥感影像的灌区耕地精准提取方法、设备及存储介质 |
| CN116597318A (zh) * | 2023-07-17 | 2023-08-15 | 山东锋士信息技术有限公司 | 基于遥感影像的灌区耕地精准提取方法、设备及存储介质 |
| CN116934819A (zh) * | 2023-07-17 | 2023-10-24 | 北京理工大学 | 基于低秩特征图的多源影像高精度配准数据增广方法 |
| CN117095286A (zh) * | 2023-07-24 | 2023-11-21 | 中央财经大学 | 一种基于高分辨率遥感影像的建筑物边界自动提取方法 |
| CN116862317A (zh) * | 2023-08-08 | 2023-10-10 | 广西壮族自治区自然资源遥感院 | 一种基于项目全生命周期绩效考评管理的卫星遥感监测系统 |
| CN116740578B (zh) * | 2023-08-14 | 2023-10-27 | 北京数慧时空信息技术有限公司 | 基于用户选择的遥感影像推荐方法 |
| CN116740578A (zh) * | 2023-08-14 | 2023-09-12 | 北京数慧时空信息技术有限公司 | 基于用户选择的遥感影像推荐方法 |
| CN116778104A (zh) * | 2023-08-16 | 2023-09-19 | 江西省国土资源测绘工程总院有限公司 | 一种动态遥感监测的测绘方法及系统 |
| CN116778104B (zh) * | 2023-08-16 | 2023-11-14 | 江西省国土资源测绘工程总院有限公司 | 一种动态遥感监测的测绘方法及系统 |
| CN117237219A (zh) * | 2023-09-14 | 2023-12-15 | 武汉大学 | 一种协同双重协调遥感影像云遮挡缺失重建方法和系统 |
| CN117576523A (zh) * | 2023-10-19 | 2024-02-20 | 北华航天工业学院 | 多尺度遥感定标与真实性检验场地筛选的数据集建立方法 |
| CN117689579B (zh) * | 2023-12-12 | 2024-05-03 | 安徽大学 | 一种渐进式双解耦的sar辅助遥感影像厚云去除方法 |
| CN117689579A (zh) * | 2023-12-12 | 2024-03-12 | 安徽大学 | 一种渐进式双解耦的sar辅助遥感影像厚云去除方法 |
| CN118196614A (zh) * | 2023-12-14 | 2024-06-14 | 中国气象局乌鲁木齐沙漠气象研究所 | 一种基于遥感影像和神经网络的流动性沙丘识别方法及装置 |
| CN117456369A (zh) * | 2023-12-25 | 2024-01-26 | 广东海洋大学 | 智能化红树林生长情况的视觉识别方法 |
| CN117456369B (zh) * | 2023-12-25 | 2024-02-27 | 广东海洋大学 | 智能化红树林生长情况的视觉识别方法 |
| CN117726947A (zh) * | 2024-01-05 | 2024-03-19 | 中国空间技术研究院 | 基于高分辨率仿真遥感图像的公路路网分布监测设备 |
| CN117994680A (zh) * | 2024-01-16 | 2024-05-07 | 河海大学 | 基于多源图像的作物生长监测方法及系统 |
| CN118135311A (zh) * | 2024-03-13 | 2024-06-04 | 南京北斗创新应用科技研究院有限公司 | 基于改进级联森林的异构时序影像湿地监测方法及装置 |
| CN117975295A (zh) * | 2024-04-01 | 2024-05-03 | 南京信息工程大学 | 一种基于多尺度特征感知神经网络的积雪深度预测方法 |
| CN118378937A (zh) * | 2024-04-09 | 2024-07-23 | 武汉大学 | 基于高分辨率影像和机器学习的城市绿地碳储量评估方法 |
| CN118230073A (zh) * | 2024-05-23 | 2024-06-21 | 青岛浩海网络科技股份有限公司 | 基于多尺度视角下遥感图像的土地优化分类方法及系统 |
| CN118411627A (zh) * | 2024-07-02 | 2024-07-30 | 国网安徽省电力有限公司合肥供电公司 | 基于卫星遥感的输电通道漂浮物识别监测系统及方法 |
| CN118762237A (zh) * | 2024-09-05 | 2024-10-11 | 浙江大学湖州研究院 | 基于空天遥感融合影像的湿地物种分类方法 |
| CN119196561A (zh) * | 2024-09-14 | 2024-12-27 | 铜陵有色金属集团股份有限公司动力厂 | 一种基于地表温度高分辨率反演的架空热力管线泄露监测方法 |
| CN119418189A (zh) * | 2024-09-23 | 2025-02-11 | 电子科技大学 | 基于特征转换和知识增强的遥感图像细粒度地物提取方法 |
| CN119445358A (zh) * | 2024-09-24 | 2025-02-14 | 广东省国土资源测绘院 | 一种甘蔗识别方法 |
| CN119181022A (zh) * | 2024-10-17 | 2024-12-24 | 北京林业大学 | 森林类型变化检测方法以及装置 |
| CN119314052A (zh) * | 2024-10-25 | 2025-01-14 | 南京信息工程大学 | 一种遥感影像沙漠灌木提取方法 |
| CN119418211A (zh) * | 2024-11-04 | 2025-02-11 | 中国科学院地理科学与资源研究所 | 一种基于多尺度查询的Maskformer耕地地块识别方法 |
| CN119130801A (zh) * | 2024-11-12 | 2024-12-13 | 烟台大学 | 一种遥感图像重建模型的构建及训练方法、系统 |
| CN119693811A (zh) * | 2024-11-14 | 2025-03-25 | 南京航空航天大学 | 基于多模态遥感图像的小目标检测方法 |
| CN119625526A (zh) * | 2024-11-25 | 2025-03-14 | 中国农业科学院农业资源与农业区划研究所 | 一种基于改进YOLOv8的有毒植物狼毒大戟识别及空间定位方法 |
| CN119723079A (zh) * | 2024-12-03 | 2025-03-28 | 耕宇牧星(北京)空间科技有限公司 | 一种基于波型网络的无人机遥感林木图像分割方法及系统 |
| CN119919798A (zh) * | 2024-12-18 | 2025-05-02 | 中铁工程设计咨询集团有限公司 | 一种基于时序光谱变化特征的耕地提取方法及装置 |
| CN120014430A (zh) * | 2024-12-23 | 2025-05-16 | 中交第二公路勘察设计研究院有限公司 | 一种弱目标快速遥感检测方法及系统 |
| CN119692866A (zh) * | 2024-12-24 | 2025-03-25 | 广东工业大学 | 基于gbdt模型的高分城市绿地形态对气溶胶污染的削减方法 |
| CN120068369A (zh) * | 2024-12-27 | 2025-05-30 | 北京理工大学 | 多重约束下的光学稀疏孔径成像系统光瞳排布优化方法 |
| CN120068369B (zh) * | 2024-12-27 | 2026-04-03 | 北京理工大学 | 多重约束下的光学稀疏孔径成像系统光瞳排布优化方法 |
| CN119851133A (zh) * | 2024-12-31 | 2025-04-18 | 中国海洋大学 | 基于高分辨率全球模式改进城市绿地生物源排放的方法 |
| CN119418141A (zh) * | 2025-01-08 | 2025-02-11 | 吉林农业大学 | 一种基于Mamba的遥感图像作物分类方法 |
| CN119540783A (zh) * | 2025-01-22 | 2025-02-28 | 浙江时空智子大数据有限公司 | 基于遥感影像空间邻接关系的城市功能区识别方法及系统 |
| CN119942367A (zh) * | 2025-04-03 | 2025-05-06 | 无锡学院 | 一种基于RepFNet网络的积雪覆盖度监测方法 |
| CN120495692A (zh) * | 2025-05-15 | 2025-08-15 | 生态环境部卫星环境应用中心 | 基于遥感影像的生态保护红线内建筑垃圾识别方法和装置 |
| CN120356021A (zh) * | 2025-06-25 | 2025-07-22 | 北京吉威数源信息技术有限公司 | 一种复杂场景下多模态遥感数据自动分类方法 |
| CN120822110A (zh) * | 2025-09-17 | 2025-10-21 | 北京师范大学 | 基于PlanetScope多时相数据和ALOS DEM数据的侵蚀沟提取方法和系统 |
| CN121330516A (zh) * | 2025-11-25 | 2026-01-13 | 廊坊市圆观科技有限公司 | 基于空洞卷积和动态蛇形卷积的水体提取系统及方法 |
Also Published As
| Publication number | Publication date |
|---|---|
| CN111428781A (zh) | 2020-07-17 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| WO2021184891A1 (zh) | 遥感影像地物分类方法及系统 | |
| CN111259905B (zh) | 一种基于下采样的特征融合遥感图像语义分割方法 | |
| CN115331104B (zh) | 一种基于卷积神经网络的农作物种植信息提取方法 | |
| CN112287940A (zh) | 一种基于深度学习的注意力机制的语义分割的方法 | |
| CN110415199B (zh) | 基于残差学习的多光谱遥感图像融合方法及装置 | |
| CN116309070A (zh) | 一种高光谱遥感图像超分辨率重建方法、装置及计算机设备 | |
| CN110852225A (zh) | 基于深度卷积神经网络的遥感影像红树林提取方法及系统 | |
| CN114067219A (zh) | 一种基于语义分割与超像素分割融合的农田作物识别方法 | |
| CN112819737A (zh) | 基于3d卷积的多尺度注意力深度卷积网络的遥感图像融合方法 | |
| CN110717420A (zh) | 一种基于遥感图像的耕地提取方法、系统及电子设备 | |
| CN116580195A (zh) | 基于ConvNeXt卷积的遥感图像语义分割方法及系统 | |
| CN108805874A (zh) | 一种基于卷积神经网络的多光谱图像语义切割方法 | |
| CN115063336B (zh) | 一种全色与多光谱图像融合方法及其装置、介质 | |
| CN116091940B (zh) | 一种基于高分辨率卫星遥感影像的作物分类和识别方法 | |
| CN116503677B (zh) | 一种湿地分类信息提取方法、系统、电子设备及存储介质 | |
| CN116188859B (zh) | 一种基于超分和检测网络的茶叶病害无人机遥感监测方法 | |
| CN118505506A (zh) | 一种低分辨率高光谱图像超分辨率重建方法、设备及介质 | |
| CN114463192A (zh) | 一种基于深度学习的红外视频畸变校正的方法 | |
| CN117671509A (zh) | 遥感目标检测方法、装置、电子设备及存储介质 | |
| CN111340080A (zh) | 一种基于互补卷积特征的高分辨率遥感影像融合方法及系统 | |
| CN110717921A (zh) | 改进型编码解码结构的全卷积神经网络语义分割方法 | |
| CN116844053A (zh) | 一种小麦种植区域识别方法、系统、电子设备及存储介质 | |
| CN114943893A (zh) | 一种土地覆盖分类的特征增强网络 | |
| Patnaik et al. | A two-branch multiscale residual attention network for single image super-resolution in remote sensing imagery | |
| CN112734638A (zh) | 一种遥感影像超分辨重建方法、装置及存储介质 |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| 121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 20926052 Country of ref document: EP Kind code of ref document: A1 |
|
| NENP | Non-entry into the national phase |
Ref country code: DE |
|
| 122 | Ep: pct application non-entry in european phase |
Ref document number: 20926052 Country of ref document: EP Kind code of ref document: A1 |
|
| 32PN | Ep: public notification in the ep bulletin as address of the adressee cannot be established |
Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205A DATED 04.07.2023) |
|
| 122 | Ep: pct application non-entry in european phase |
Ref document number: 20926052 Country of ref document: EP Kind code of ref document: A1 |
