Esempio n. 1
0
File: viz.py Progetto: nagyist/gala
def plot_vi(g, history, gt, fig=None):
    """Plot the VI from segmentations based on Rag and sequence of merges.
    
    Parameters
    ----------
    g : agglo.Rag object
        The region adjacency graph.

    history : list of tuples
        The merge history of the RAG.

    gt : np.ndarray
        The ground truth corresponding to the RAG.

    fig : plt.Figure, optional
        Use this figure for plotting. If not provided, a new figure is created.

    Returns
    -------
    None
    """
    v = []
    n = []
    seg = g.get_segmentation()
    for i in history:
        seg[seg == i[1]] = i[0]
        v.append(evaluate.vi(seg, gt))
        n.append(len(np.unique(seg) - 1))
    if fig is None:
        fig = plt.figure()
    plt.plot(n, v, figure=fig)
    plt.xlabel('Number of segments', figure=fig)
    plt.ylabel('vi', figure=fig)
Esempio n. 2
0
File: viz.py Progetto: NealJMD/gala
def plot_vi(g, history, gt, fig=None):
    """Plot the VI from segmentations based on Rag and sequence of merges.
    
    Parameters
    ----------
    g : agglo.Rag object
        The region adjacency graph.

    history : list of tuples
        The merge history of the RAG.

    gt : np.ndarray
        The ground truth corresponding to the RAG.

    fig : plt.Figure, optional
        Use this figure for plotting. If not provided, a new figure is created.

    Returns
    -------
    None
    """
    v = []
    n = []
    seg = g.get_segmentation()
    for i in history:
        seg[seg==i[1]] = i[0]
        v.append(evaluate.vi(seg, gt))
        n.append(len(np.unique(seg)-1))
    if fig is None:
        fig = plt.figure()
    plt.plot(n, v, figure = fig)
    plt.xlabel('Number of segments', figure = fig)
    plt.ylabel('vi', figure = fig)
Esempio n. 3
0
def plot_vi(a, history, gt, fig=None):
    """Plot the VI from segmentations based on Rag and sequence of merges."""
    v = []
    n = []
    seg = a.get_segmentation()
    for i in history:
        seg[seg==i[1]] = i[0]
        v.append(evaluate.vi(seg, gt))
        n.append(len(np.unique(seg)-1))
    if fig is None:
        fig = plt.figure()
    plt.plot(n, v, figure = fig)
    plt.xlabel('Number of segments', figure = fig)
    plt.ylabel('vi', figure = fig)
Esempio n. 4
0
def plot_vi(a, history, gt, fig=None):
    """Plot the VI from segmentations based on Rag and sequence of merges."""
    v = []
    n = []
    seg = a.get_segmentation()
    for i in history:
        seg[seg == i[1]] = i[0]
        v.append(evaluate.vi(seg, gt))
        n.append(len(np.unique(seg) - 1))
    if fig is None:
        fig = plt.figure()
    plt.plot(n, v, figure=fig)
    plt.xlabel('Number of segments', figure=fig)
    plt.ylabel('vi', figure=fig)