| 364 | } |
| 365 | |
| 366 | FaceBitSet segmentByGraphCut( const MeshTopology& topology, const FaceBitSet& source, const FaceBitSet& sink, const EdgeMetric& metric, const ProgressCallback& progress ) |
| 367 | { |
| 368 | MR_TIMER; |
| 369 | GraphCut filler( topology, metric ); |
| 370 | filler.addFaces( source, sink ); |
| 371 | return filler.fillLeft( progress ); |
| 372 | } |
| 373 | |
| 374 | } // namespace MR |
no test coverage detected