Files
S4-P3-Projet/gcodeextractor/utils/plotimg.py
Marc-Antoine Lafreniere 31c8ae3470 Rename modules
Rename modules with better name and move the arduino code to its own folder
2019-04-06 15:17:02 -04:00

10 lines
128 B
Python

import numpy as np
import matplotlib.pyplot as plt
def plotPath(img):
plt.matshow(img)
plt.colorbar()
plt.show()
return 1