コード例 #1
0
ファイル: test_convert.py プロジェクト: surendra116083/fury
def test_convert():
    names = ['group_a', 'group_b', 'group_c']
    values = [1, 10, 100]

    fig = plt.figure(figsize=(9, 3))
    plt.subplot(131)
    plt.bar(names, values)
    plt.subplot(132)
    plt.scatter(names, values)
    plt.subplot(133)
    plt.plot(names, values)
    plt.suptitle('Categorical Plotting')
    arr2 = matplotlib_figure_to_numpy(fig,
                                      transparent=False,
                                      flip_up_down=False)

    with TemporaryDirectory() as tmpdir:
        fname = os.path.join(tmpdir, 'tmp.png')
        dpi = 100
        fig.savefig(fname,
                    transparent=False,
                    bbox_inches='tight',
                    pad_inches=0)
        arr1 = load_image(fname)
        npt.assert_array_equal(arr1, arr2)
コード例 #2
0
ファイル: test_actors.py プロジェクト: sakshiseth/fury
def test_matplotlib_figure():

    names = ['group_a', 'group_b', 'group_c']
    values = [1, 10, 100]

    fig = plt.figure(figsize=(9, 3))

    plt.subplot(131)
    plt.bar(names, values)
    plt.subplot(132)
    plt.scatter(names, values)
    plt.subplot(133)
    plt.plot(names, values)
    plt.suptitle('Categorical Plotting')

    arr = matplotlib_figure_to_numpy(fig, dpi=300, transparent=True)
    fig_actor = actor.figure(arr, 'cubic')
    fig_actor2 = actor.figure(arr, 'cubic')
    scene = window.Scene()
    scene.background((1, 1, 1.))

    ax_actor = actor.axes(scale=(1000, 1000, 1000))
    scene.add(ax_actor)
    scene.add(fig_actor)
    scene.add(fig_actor2)
    ax_actor.SetPosition(0, 500, -800)
    fig_actor2.SetPosition(500, 800, -400)
    display = window.snapshot(scene, order_transparent=True)
    res = window.analyze_snapshot(display,
                                  bg_color=(255, 255, 255.),
                                  colors=[(31, 119, 180), (255, 0, 0)],
                                  find_objects=False)
    npt.assert_equal(res.colors_found, [True, True])
コード例 #3
0
ファイル: test_actors.py プロジェクト: Dhairya3124/fury
def test_matplotlib_figure():

    names = ['group_a', 'group_b', 'group_c']
    values = [1, 10, 100]

    fig = plt.figure(figsize=(9, 3))

    plt.subplot(131)
    plt.bar(names, values)
    plt.subplot(132)
    plt.scatter(names, values)
    plt.subplot(133)
    plt.plot(names, values)
    plt.suptitle('Categorical Plotting')

    arr = matplotlib_figure_to_numpy(fig, dpi=500, transparent=True)
    plt.close('all')
    fig_actor = actor.figure(arr, 'cubic')
    fig_actor2 = actor.figure(arr, 'cubic')
    scene = window.Scene()
    scene.background((1, 1, 1.))

    ax_actor = actor.axes(scale=(1000, 1000, 1000))
    scene.add(ax_actor)
    scene.add(fig_actor)
    scene.add(fig_actor2)
    ax_actor.SetPosition(-50, 500, -800)
    fig_actor2.SetPosition(500, 800, -400)
    display = window.snapshot(scene,
                              'test_mpl.png',
                              order_transparent=False,
                              offscreen=True)
    res = window.analyze_snapshot(display,
                                  bg_color=(255, 255, 255.),
                                  colors=[(31, 119, 180)],
                                  find_objects=False)
    # omit assert from now until we know why snapshot creates
    # different colors in Github Actions but not on our computers
    # npt.assert_equal(res.colors_found, [True, True])
    # TODO: investigate further this issue with snapshot in Actions
    pass