美国的MSTAR SAR DATABASE

2023-12-13 19:40
文章标签 美国 database sar mstar

本文主要是介绍美国的MSTAR SAR DATABASE,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

这是我收藏的一个美国的雷达图像的网站,里面有一些美国公开的雷达图像数据

 

The Center for Imaging Science has been provided with this series of one-foot IPR synthetic aperture radar (SAR) images courtesy of Thomas J. Burns, the MSTAR program manager for DARPA. This data was collected using the Sandia National Laboratories Twin Otter SAR sensor payload operating at X band. The data is collected and distributed under the DARPA moving and stationary target recognition (MSTAR) program.

There are a total of seventeen image sets, with each set containing data for a particular target imaged at a particular depression angle. Each set contains data for hundreds of degrees of target aspect pose for that target at that angle of depression.

Explanation of Data Formats:

For each particular combination of target, depression angle, and aspect pose, we have the three files listed below. Note: each downloadable clutter tar.z file contains these three files for one clutter image while each downloadable target tar.z file contains these three files for many aspect poses of one target at a particular angle of depression (where many may be between 100 and 300 degrees of aspect pose). In all, the tar.z files contain each of the following from some 2,791 data sources.

?????.NXxNY.raw

The original data, containing an NX by NY series of floating point data representing the magnitude data, and another NX by NY series of floating point data representing the phase data.

?????.hdr.txt

A text file containing information about the target, the sensor, and the environment.

?????.gif

A GIF created by applying the following algorithm to the original data file:

For each pixel i

mag = magnitude[i]

phs = phase[i]

real = mag * cos(2*PI*phs/4096)

imag = mag * sin(2*PI*phs/4096)

GIF[i] = log10(real*real + imag*imag)

EndFor

Additional notes on data format (1/2/2001)

The MSTAR data files on the original CDs from SDMS begins with an ASCII text header describing the target, its pose, the data collection site, etc. Following this header is the raw, complex-valued SAR image data. This image data consists of a N_rows x N_columns array of pixel magnitudes (32 bit floating point) followed by an array of the same size containing phase data (in radians) for each pixel. The data is stored row-wise.

The MSTAR files available from the CIS web site have had the ASCII header removed. The following snippet of Matlab code will read a single image provided the file has been opened resulting in a file pointer, fp:

mstar_size = n_rows * n_cols;

[tmp_data, num] =

fread(fp,mstar_size*2,'float');

% Reshape works by column, but MSTAR data is stored by rows so the reshape

% arguments look funny.

tmp_mag = reshape(tmp_data(1:mstar_size),n_cols,n_rows).' ;

tmp_phs = reshape(tmp_data(mstar_size+1:2*mstar_size),n_cols,n_rows).'

It is not clear how the GIF images were created but they were most likely taken off the CDs from SDMS. However, the above code will give you the floating point magnitude data which can be converted to gray scale with any histogram you like. I find a logarithmic transformation produces images that are pleasant to look at (you'll need to add a small constant, say 0.00001, to the magnitude data since some pixels may be zero). Of course, for ATR or other processing we use the magnitude data directly.

The values in tmp_phs are all in the range from 0 to 2pi if the data is read in correctly.

Seventeen SAR Data Sets

This data is available with registered usernames and passwords. If you have already registered, and your registration has been confirmed, you may proceed to the download page. Where the following data sets will be available....

clip_image001

Clutter Data of Rural and Urban Scenes Near Redstone Arsenal at Huntsville, Alabama
(sample image: 428Kb) Each of the following tar.Z files is roughly 10 Mb compressed.

Angle of Depression:

Target #1: 

15 degrees

(list of one hundred clutter tar.Z files suppressed)

clip_image002

SLICY Canonical Target
(sample image: 2Kb)

Angle of Depression:

Target #1: 

15 Degrees (5.6Mb)

30 Degrees (5.3Mb)

clip_image003

Former Soviet Union T-72 Main Battle Tank
(sample image: 6Kb)

Angle of Depression:

Vehicle #1: 

15 Degrees (18.2Mb)

17 Degrees (21.6Mb)

Vehicle #2: 

15 Degrees (18.1Mb)

17 Degrees (21.5Mb)

Vehicle #3: 

15 Degrees (17.7Mb)

17 Degrees (21Mb)

clip_image004

Former Soviet Union BMP-2 Armored Personnel Carrier
(sample image: 6Kb)

Angle of Depression:

Vehicle #1: 

15 Degrees (18.2Mb)

17 Degrees (21.7Mb)

Vehicle #2: 

15 Degrees (18.2Mb)

17 Degrees (21.6Mb)

Vehicle #3: 

15 Degrees (18.2Mb)

17 Degrees (21.7Mb)

clip_image005

Former Soviet Union BTR-70 Armored Personnel Carrier
(sample image: 6Kb)

Angle of Depression:

Vehicle #1: 

15 Degrees (18.2Mb)

17 Degrees (21.7Mb)

这篇关于美国的MSTAR SAR DATABASE的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/489728

相关文章

MySQL 中的 JSON 查询案例详解

《MySQL中的JSON查询案例详解》:本文主要介绍MySQL的JSON查询的相关知识,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录mysql 的 jsON 路径格式基本结构路径组件详解特殊语法元素实际示例简单路径复杂路径简写操作符注意MySQL 的 J

Windows 上如果忘记了 MySQL 密码 重置密码的两种方法

《Windows上如果忘记了MySQL密码重置密码的两种方法》:本文主要介绍Windows上如果忘记了MySQL密码重置密码的两种方法,本文通过两种方法结合实例代码给大家介绍的非常详细,感... 目录方法 1:以跳过权限验证模式启动 mysql 并重置密码方法 2:使用 my.ini 文件的临时配置在 Wi

MySQL重复数据处理的七种高效方法

《MySQL重复数据处理的七种高效方法》你是不是也曾遇到过这样的烦恼:明明系统测试时一切正常,上线后却频频出现重复数据,大批量导数据时,总有那么几条不听话的记录导致整个事务莫名回滚,今天,我就跟大家分... 目录1. 重复数据插入问题分析1.1 问题本质1.2 常见场景图2. 基础解决方案:使用异常捕获3.

SQL中redo log 刷⼊磁盘的常见方法

《SQL中redolog刷⼊磁盘的常见方法》本文主要介绍了SQL中redolog刷⼊磁盘的常见方法,将redolog刷入磁盘的方法确保了数据的持久性和一致性,下面就来具体介绍一下,感兴趣的可以了解... 目录Redo Log 刷入磁盘的方法Redo Log 刷入磁盘的过程代码示例(伪代码)在数据库系统中,r

mysql中的group by高级用法

《mysql中的groupby高级用法》MySQL中的GROUPBY是数据聚合分析的核心功能,主要用于将结果集按指定列分组,并结合聚合函数进行统计计算,下面给大家介绍mysql中的groupby用法... 目录一、基本语法与核心功能二、基础用法示例1. 单列分组统计2. 多列组合分组3. 与WHERE结合使

Mysql用户授权(GRANT)语法及示例解读

《Mysql用户授权(GRANT)语法及示例解读》:本文主要介绍Mysql用户授权(GRANT)语法及示例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录mysql用户授权(GRANT)语法授予用户权限语法GRANT语句中的<权限类型>的使用WITH GRANT

Mysql如何解决死锁问题

《Mysql如何解决死锁问题》:本文主要介绍Mysql如何解决死锁问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录【一】mysql中锁分类和加锁情况【1】按锁的粒度分类全局锁表级锁行级锁【2】按锁的模式分类【二】加锁方式的影响因素【三】Mysql的死锁情况【1

SQL BETWEEN 的常见用法小结

《SQLBETWEEN的常见用法小结》BETWEEN操作符是SQL中非常有用的工具,它允许你快速选取某个范围内的值,本文给大家介绍SQLBETWEEN的常见用法,感兴趣的朋友一起看看吧... 在SQL中,BETWEEN是一个操作符,用于选取介于两个值之间的数据。它包含这两个边界值。BETWEEN操作符常用

MySQL索引的优化之LIKE模糊查询功能实现

《MySQL索引的优化之LIKE模糊查询功能实现》:本文主要介绍MySQL索引的优化之LIKE模糊查询功能实现,本文通过示例代码给大家介绍的非常详细,感兴趣的朋友一起看看吧... 目录一、前缀匹配优化二、后缀匹配优化三、中间匹配优化四、覆盖索引优化五、减少查询范围六、避免通配符开头七、使用外部搜索引擎八、分

MySql match against工具详细用法

《MySqlmatchagainst工具详细用法》在MySQL中,MATCH……AGAINST是全文索引(Full-Textindex)的查询语法,它允许你对文本进行高效的全文搜素,支持自然语言搜... 目录一、全文索引的基本概念二、创建全文索引三、自然语言搜索四、布尔搜索五、相关性排序六、全文索引的限制七