%endpoints源函数
function g=endpoints(f)
%endpoints计算一幅二维图像的端点
%g=endpoints(f)计算一幅二维图像的端点,并在二维图像g中返回
persistent lut
if isempty(lut)
lut=makelut(@endpoint_fcn,3);
end
g=applylut(f,lut)
endpoints.m
最新推荐文章于 2025-05-21 21:54:31 发布