HomeSort by relevance Sort by last modified time
    Searched refs:edgeCount (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/imgproc/src/
gcgraph.hpp 49 GCGraph( unsigned int vtxCount, unsigned int edgeCount );
51 void create( unsigned int vtxCount, unsigned int edgeCount );
88 GCGraph<TWeight>::GCGraph( unsigned int vtxCount, unsigned int edgeCount )
90 create( vtxCount, edgeCount );
97 void GCGraph<TWeight>::create( unsigned int vtxCount, unsigned int edgeCount )
100 edges.reserve( edgeCount + 2 );
grabcut.cpp 451 edgeCount = 2*(4*img.cols*img.rows - 3*(img.cols + img.rows) + 2);
452 graph.create(vtxCount, edgeCount);

Completed in 5664 milliseconds