changeset 1199:6a6a4d5958f7

adding explicit choice of matplotlib backend
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 18 Nov 2022 15:55:09 -0500
parents fa07a78b29f6
children 4356065ed3ca 28bf2420c412
files scripts/compute-homography.py
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/compute-homography.py	Sat Oct 08 13:17:35 2022 -0400
+++ b/scripts/compute-homography.py	Fri Nov 18 15:55:09 2022 -0500
@@ -2,6 +2,9 @@
 
 import sys, argparse
 
+import matplotlib
+matplotlib.use('TkAgg')
+
 import matplotlib.pyplot as plt
 import numpy as np
 import cv2