removed global image median blur

This commit is contained in:
2024-07-10 07:45:53 +02:00
parent eba6f068b4
commit 0eb653d7c7
+1 -1
View File
@@ -385,7 +385,7 @@ if __name__ == '__main__':
cv2.putText(image_anno, "FPS : " + str(int(fps)), (20, image_anno.shape[0] - 20),
cv2.FONT_HERSHEY_SIMPLEX, 0.5, (50, 170, 50), 1)
cv2.imshow(f"Image Anno", cv2.medianBlur(image_anno, 3))
cv2.imshow(f"Image Anno", image_anno)
# Exit if ESC pressed
k = cv2.waitKey(key_wait) & 0xff