handled the function with callbacks

This commit is contained in:
Vighnesh Birodkar
2015-01-27 21:33:22 +05:30
parent e41b34314a
commit 4c4d7108e1
4 changed files with 67 additions and 20 deletions
+2 -1
View File
@@ -2,7 +2,7 @@ from .spath import shortest_path
from .mcp import MCP, MCP_Geometric, MCP_Connect, MCP_Flexible, route_through_array
from .graph_cut import cut_threshold, cut_normalized
from .rag import rag_mean_color, RAG, draw_rag
from .graph_merge import merge_hierarchical
from .graph_merge import merge_hierarchical, merge_hierarchical_mean_color
ncut = cut_normalized
@@ -18,4 +18,5 @@ __all__ = ['shortest_path',
'ncut',
'draw_rag',
'merge_hierarchical',
'merge_hierarchical_mean_color',
'RAG']