Roman
chore: Add comments, clean unused objects and improve ridge detection
3cf0931 unverified
raw
history blame
No virus
1.14 kB
"All the constants used in this repo."
from pathlib import Path
# This repository's directory
REPO_DIR = Path(__file__).parent
# This repository's main necessary folders
FILTERS_PATH = REPO_DIR / "filters"
KEYS_PATH = REPO_DIR / ".fhe_keys"
WRONG_KEYS_PATH = REPO_DIR / ".wrong_keys"
CLIENT_TMP_PATH = REPO_DIR / "client_tmp"
SERVER_TMP_PATH = REPO_DIR / "server_tmp"
# Create the necessary folders
KEYS_PATH.mkdir(exist_ok=True)
WRONG_KEYS_PATH.mkdir(exist_ok=True)
CLIENT_TMP_PATH.mkdir(exist_ok=True)
SERVER_TMP_PATH.mkdir(exist_ok=True)
# All the filters currently available in the demo
AVAILABLE_FILTERS = [
"identity",
"inverted",
"rotate",
"black and white",
"blur",
"sharpen",
"ridge detection",
]
# The input images' shape. Images with different input shapes will be cropped and resized by Gradio
INPUT_SHAPE = (100, 100)
# Retrieve the input examples directory
INPUT_EXAMPLES_DIR = REPO_DIR / "input_examples"
# List of all image examples suggested in the demo
EXAMPLES = [str(image) for image in INPUT_EXAMPLES_DIR.glob("**/*")]
# Store the server's URL
SERVER_URL = "http://localhost:8000/"