📄 bft_focus_pixels.m
字号:
%BFT_FOCUS_PIXEL Set the coordinates of the focal pixels% This type of focusing is meant to be based on pixels not% on lines. Therefore the term "focus-time-line" is non% valid. The user will get back as many focused samples as % the number of points he/she has passed to this function.%%USAGE : bft_focus_pixel(xdc, points, line_no)%%UNPIT : xdc - Pointer to aperture.% points - Focus points. Vector with three columns (x,y,z) % and one row for each field point.% line_no - Number of line for which we set the focus. If % skipped, 'line_no' is assumed equal to '1'.%% OUTPUT : none%% VERSION: 1.0, May 2000, Svetoslav Nikolovfunction bft_focus_pixel(xdc, points, line_no)points = points';if (nargin < 3) line_no = 1; end;bft(17, xdc, points, line_no);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -