<> === 填充空洞 === 如果有 {{{#!latex $$f_m(x,y)= \begin{cases} 1-f(x,y) & if\ (x,y)\ is\ on\ the\ border\ of\ f\\ 0 & otherwise \end{cases}$$ }}} 则下面这个操作的作用就是填充空洞 {{{#!latex $$g = [R_{f^c}(f_m)]^c$$ }}} 在matlab中可以用一个函数实现:{{{ g = imfill(f, 'holes'); }}} <>