Call detect_with_input_tensor instead of DetectWithInputTensor

DetectWithInputTensor is deprecated and generates a warning each inference.

Change-Id: I1dc0d85a4428912e99033ec0a76612073bde3a5b
diff --git a/edgetpuvision/detect.py b/edgetpuvision/detect.py
index 7e38be7..c02199a 100644
--- a/edgetpuvision/detect.py
+++ b/edgetpuvision/detect.py
@@ -161,7 +161,7 @@
         inference_rate = next(fps_counter)
         if draw_overlay:
             start = time.monotonic()
-            objs = engine .DetectWithInputTensor(tensor, threshold=args.threshold, top_k=args.top_k)
+            objs = engine .detect_with_input_tensor(tensor, threshold=args.threshold, top_k=args.top_k)
             inference_time = time.monotonic() - start
             objs = [convert(obj, labels) for obj in objs]