getlhipoints.m
来自「This code can parse any image in matlab.」· M 代码 · 共 8 行
M
8 行
function [x,y] = getLHIpoints(pts)
%
% Utility function that gives the coordinates of the polygon's vertices
x = str2num(char({pts.pt.x})); % get X polygon coordinates
y = str2num(char({pts.pt.y})); % get Y polygon coordinates
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?