Skip to content

Instantly share code, notes, and snippets.

@monogenea
Created June 19, 2021 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monogenea/1566e73289a3b7fa7e228db6a2176ddd to your computer and use it in GitHub Desktop.
Save monogenea/1566e73289a3b7fa7e228db6a2176ddd to your computer and use it in GitHub Desktop.
#%% Imports and constants
import cv2, os
import numpy as np
import matplotlib.pyplot as plt
# Define objectness, prob and NMS thresholds
OBJ_THRESH = .6
P_THRESH = .6
NMS_THRESH = .5
# Set random seed
np.random.seed(999)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment