make_interpolation.m
来自「FIELD II 是B超的matlab仿真程序。 执行 先运行 fie」· M 代码 · 共 22 行
M
22 行
% Function for making the interpolation of an ultrasound image.% The routine make_tables must have been called previously.%% Input parameters: %% envelope_data - The envelope detected and log-compressed data as% an integer array as 8 bits values%% Output: img_data - The final image as 8 bits values%% Calling: img_data = img_datamake_interpolation (envelope_data); %% Version 1.0, 14/2-1999, JAJfunction img_data = make_interpolation (envelope_data)% Call the appropriate functionimg_data = fast_int (2, envelope_data);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?