- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
超声概论作业
超声概论作业
实验所得图像·如下:
图中的点并没有显示清楚,如果需要显示清楚,可以修改sim_img程序,得到图像如下:
为了使边界更加清晰,可以修改显示范围image_width的参数,得到的图像如下:
上一步的图像需要在原文件的基础上添加添加make_tables文件,make_interpolation文件,并用GCC编译器将fast_int,c文件编译成mex64文件。最后运行make_image文件可得图像。
比较地奇怪。
上一步的函数全范围的图像为:
若使用原先make_image函数,则显示图像为
可见图像边缘出现扭曲。故将make_image修改为下面所示函数,得到第一个图像,显示效果较好。
本次实验在调试凸阵函数花了不少功夫,安装C编译器也是一个曲折的故事,完成·所有后收获确实挺大的
sim_image文件修改如下:
% Phased array B-mode scan of a human kidney
%
% This script assumes that the field_init procedure has been called
% Here the field simulation is performed and the data is stored
% in rf-files; one for each rf-line done. The data must then
% subsequently be processed to yield the image. The data for the
% scatteres are read from the file pht_data.mat, so that the procedure
% can be started again or run for a number of workstations.
%
% Example by Joergen Arendt Jensen and Peter Munk,
% Version 1.1, April 1, 1998, JAJ.
% Ver. 1.1: 1/4-98: Procedure xdc_focus_center inserted to use the new
% focusing scheme for the Field II program
% Generate the transducer apertures for send and receive
f0=7e6; % Transducer center frequency [Hz]
fs=100e6; % Sampling frequency [Hz]
c=1540; % Speed of sound [m/s]
lambda=c/f0; % Wavelength [m]
width=lambda/2; % Width of element
element_height=5/1000; % Height of element [m]
kerf=lambda/10; % Kerf [m]
focus=[0 0 90]/1000; % Fixed focal point [m]
N_elements=128; % Number of physical elements
% Set the sampling frequency
set_sampling(fs);
set_field (show_times, 5)
% Generate aperture for emission
xmit_aperture = xdc_convex_array (N_elements, width, element_height, kerf, 1, 1, 5, focus);
% Set the impulse response and excitation of the xmit aperture
impulse_response=sin(2*pi*f0*(0:1/fs:2/f0));
impulse_response=impulse_response.*hanning(max(size(impulse_response)));
xdc_impulse (xmit_aperture, impulse_respons
文档评论(0)