a3ff917fc04ae0199b051b1d0cc2f75c3700191a,deeplabcut/utils/visualization.py,,make_labeled_images_from_dataframe,#Any#Any#Any#Any#Any#Any#Any#Any#,195

Before Change


                coll.set_segments(segs[ind])
            scat.set_offsets(coords)
            imagename = os.path.basename(filename)
            fig.tight_layout()
            fig.savefig(
                os.path.join(tmpfolder, imagename.replace(".png", f"_{color_by}.png")),
                dpi=dpi,
            )

After Change


    segs = xy[:, ind_bones].swapaxes(1, 2)

    s = cfg["dotsize"]
    alpha = cfg["alphavalue"]
    if all_same_shape:  // Very efficient, avoid re-drawing the whole plot
        fig, ax = prepare_figure_axes(w, h, scale, dpi)
        im = ax.imshow(np.zeros((h, w)), "gray")
        pts = [ax.plot([], [], keypoint, ms=s, alpha=alpha, color=c)[0] for c in colors]
        coll = LineCollection([], colors=cfg["skeleton_color"], alpha=alpha)
        ax.add_collection(coll)
        for i in trange(len(ic)):
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: AlexEMG/DeepLabCut
Commit Name: a3ff917fc04ae0199b051b1d0cc2f75c3700191a
Time: 2020-09-01
Author: 30733203+jeylau@users.noreply.github.com
File Name: deeplabcut/utils/visualization.py
Class Name:
Method Name: make_labeled_images_from_dataframe


Project Name: freelunchtheorem/Conditional_Density_Estimation
Commit Name: 60a3f7d496800f41c6a1cff4cc1adfdfc0eb042c
Time: 2019-07-08
Author: jonas.rothfuss@gmx.de
File Name: cde/evaluation/simulation_eval/plotting/question7_plots.py
Class Name:
Method Name:


Project Name: matplotlib/matplotlib
Commit Name: 64ac509a6cec89592c6140eebcd9058cb87044f0
Time: 2019-02-13
Author: elch.rz@ruetz-online.de
File Name: examples/statistics/barchart_demo.py
Class Name:
Method Name: