16 lines
201 B
Python
16 lines
201 B
Python
from pathlib import Path
|
|
_ROOT = Path('..')
|
|
|
|
# Labels for classes
|
|
HOMOTOPIC = 1
|
|
ALTERNATIVE = 0
|
|
ANY = -1
|
|
|
|
# Colors for img files
|
|
WHITE = 255
|
|
BLACK = 0
|
|
|
|
# Variables for plotting
|
|
PADDING = 0.25
|
|
DPI = 50
|