# HG changeset patch # User Nicolas Saunier # Date 1668804909 18000 # Node ID 6a6a4d5958f7e05b670bb4abcc745054d3680a8b # Parent fa07a78b29f64eda198a45d9b55204985fe587e1 adding explicit choice of matplotlib backend diff -r fa07a78b29f6 -r 6a6a4d5958f7 scripts/compute-homography.py --- 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