Active Figure Zoom for Selecting Points

Select points at a user-specified zoom level that moves around the image as you click.

您现在正在关注此提交

Tristan Ursell
November 2013
Active zoom for polyline selection.

[X,Y]=getline_zoom(Im1);
[X,Y]=getline_zoom(Im1,'plot');
[X,Y]=getline_zoom(Im1,'loop_path');
[X,Y]=getline_zoom(Im1,'stationary');
[X,Y]=getline_zoom(Im1,'interp',res);
[X,Y]=getline_zoom(Im1,'interp',res,'method',mt1);

Have you ever wanted to carefully select points from an image but could not get close enough to see where you wanted to select? Have you ever wanted to create a smooth, evenly spaced set of parametric contour points from a minimum of user-selected points? Then this function is for you -- it allows the user to select points from an image at a user specified zoom level that moves along with the points selected in a centered frame of reference. The resulting contour can then be interpolated to constant arc-length resolution, smoothed, and even closed into a loop.

Im1 is the input image (matrix) from which points will be selected.

The optional parameter 'interp' creates evenly spaced X Y points with the resolution 'res', where res = 1, will space the X,Y points one pixel apart in arc length. The secondary option 'method' selects between a 'linear' and 'spline' interpolation, the latter being a differentially smooth curve. The default method is 'linear'.

The optional parameter 'loop_path' will loop the path so that the last point is the same as the first point. If the method is 'spline', then the looped path will also be smoothed such that the derivatives match at the beginning and ending points.

The optional parameter 'stationary' will keep the zoom and image position fixed, but all other options will be active.

Hold 'shift' or 'control' and then click to end polyline selection.

This script requires the 'ginput' function.

This script will generate its own figure handle.

SEE ALSO: getpts, getline, getrect, zoom

Credit to John D'Errico for writing the useful 'interparc' function included within this function.

Example:

Im1=imread('rice.png');

[X0,Y0] = getline_zoom(Im1,'plot');
[X1,Y1] = getline_zoom(Im1,'plot','interp',0.5,'method','spline');
[X2,Y2] = getline_zoom(Im1,'plot','interp',0.5,'method','spline','loop_path');

引用格式

Tristan Ursell (2026). Active Figure Zoom for Selecting Points (https://ww2.mathworks.cn/matlabcentral/fileexchange/38959-active-figure-zoom-for-selecting-points), MATLAB Central File Exchange. 检索时间: .

致谢

参考作品: interparc

类别

Help CenterMATLAB Answers 中查找有关 Data Exploration 的更多信息

一般信息

MATLAB 版本兼容性

  • 兼容任何版本

平台兼容性

  • Windows
  • macOS
  • Linux
版本 已发布 发行说明 Action
1.1.0.0

added smoothing, looping, fixed resolution, and other improvements.

1.0.0.0