diff --git a/pcbdevice/utils/plotimg.py b/pcbdevice/utils/plotimg.py new file mode 100644 index 0000000..edf87fe --- /dev/null +++ b/pcbdevice/utils/plotimg.py @@ -0,0 +1,9 @@ +import numpy as np +import matplotlib.pyplot as plt + + +def plotPath(img): + plt.matshow(img) + plt.colorbar() + plt.show() + return 1