• 大小: 831KB
    文件类型: .rar
    金币: 2
    下载: 2 次
    发布日期: 2021-05-04
  • 语言: Matlab
  • 标签: BP  ISAR  FEKO  

资源简介

BP算法进行ISAR成像的程序,加载的FEKO仿真数据,matlab程序成像

资源截图

代码片段和文件信息

%弹头雷达1成像
%飞行器雷达1成像
clear
clc

Nr = 21;
Na = Nr;
Br=1.5e9;

pi = 3.141592653589793;
eps0 = 8.854187817 * 1.d-12;
mu0 = 4.0 * pi * 1.0e-7;
cj = sqrt(-1);
c = 1.0 / sqrt(eps0 * mu0);
RangeReso=c/2.0/Br;

%---------------------------------------------
%读取图像数据
fid = fopen(‘re.dat‘ ‘r‘);
z1 = fread(fid ‘double‘);
fclose(fid);
fid = fopen(‘im.dat‘ ‘r‘);
z2 = fread(fid ‘double‘);
fclose(fid);

cz = cj * z2(1 : Nr * Na);
clear z2;
cz = cz + z1(1 : Nr * Na);
clear z1;

cim = reshape(cz Nr Na);      %到这里cim和BP成像程序里输出的echo1图像数据一样
clear cz;
%---------------------------------------------

%---------------------------------------------
%对图像数据插值
[xy] = meshgrid(1:1:Nr);
[x1y1] = meshgrid(1:0.1:Nr);
cim = interp2(x y cim x1 y1);
%这个函数的功能是利用(x y)对应网格点的已知数据cim 对(x1y1)对应的更密网格上的未知数据进行插值,使图像更加平滑;
im = abs(cim);
im = db( im / (max(max(im))+1.0e-8) );
%---------------------------------------------

%---------------------------------------------
%计算坐标轴
temp=(Nr-1)*5+1;   %插值后总点数
x = linspace(1 temp temp);
x=int16(x);
x=x-int16(temp)/2;
xaxis=RangeReso/5.0*double(x);      %坐标轴
%---------------------------------------------

%---------------------------------------------
%画图
figure(1);
clim = [-50];                         %clim指定图像中数值范围与当前色图的映射,clim中指定数据会映射到整个色图范围上;
figure(1)
imagesc(xaxisxaxisim clim);

  axis([-2 2 -2 2])
colormap(jet)             %色图设置为jet型,颜色变化为蓝-黄-红,
shading interp                          %通过插值使颜色渐变
xlabel(‘距离向 (m)‘); 
ylabel(‘方位向 (m)‘);
title(‘OGSBL重构回波成像‘)
% set(gca‘FontName‘‘Times New Roman‘‘FontSize‘12);
%---------------------------------------------

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1851  2018-07-06 11:41  BP\draw_mis_new.m

     文件     143157  2018-05-21 10:58  BP\f15_fbp_imag.txt

     文件     143157  2018-05-21 10:58  BP\f15_fbp_real.txt

     文件        576  2013-03-01 11:15  BP\fighterSC.mat

     文件       3250  2018-07-02 22:49  BP\Figure4_23and24.m

     文件       4264  2018-07-05 16:34  BP\Figure4_26thru4_28.m

     文件        746  2018-06-19 17:09  BP\from_gu_shixiong\f15\cx1.m

     文件       5226  2018-06-27 21:04  BP\from_gu_shixiong\f15\DirIntA2.m

     文件     143157  2018-05-21 10:58  BP\from_gu_shixiong\f15\f15_fbp_imag.txt

     文件     143157  2018-05-21 10:58  BP\from_gu_shixiong\f15\f15_fbp_real.txt

     文件      53227  2018-06-19 16:35  BP\from_gu_shixiong\f15\f15_fft_imag.txt

     文件      53227  2018-06-19 16:35  BP\from_gu_shixiong\f15\f15_fft_real.txt

     文件      53227  2017-11-22 17:33  BP\from_gu_shixiong\f15\f15_vv_imag.txt

     文件      53227  2017-11-22 17:33  BP\from_gu_shixiong\f15\f15_vv_real.txt

     文件       4089  2018-07-06 15:33  BP\from_gu_shixiong\f15\f15_xiaodegree.m

     文件        519  2018-06-19 16:52  BP\from_gu_shixiong\f15\fft_isar.m

     文件     170299  2018-07-06 12:19  BP\from_gu_shixiong\f15.zip

     文件       3528  2018-07-06 11:38  BP\im.dat

     文件     524834  2018-07-06 10:55  BP\imag.txt

     文件        193  2013-03-01 11:15  BP\matplot2.m

     文件       2462  2018-07-06 12:15  BP\qiu_lunwen.m

     文件       3528  2018-07-06 11:38  BP\re.dat

     文件     524718  2018-07-06 10:55  BP\real.txt

     目录          0  2018-06-19 17:17  BP\from_gu_shixiong\f15

     目录          0  2018-07-06 12:21  BP\from_gu_shixiong

     目录          0  2019-01-22 15:35  BP

----------- ---------  ---------- -----  ----

              2035619                    26


评论

共有 条评论