This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2020, Juan Altmayer Pizzorno. All Rights Reserved. MIT license applies. | |
import numpy as np | |
import cv2 | |
import time | |
from pathlib import Path | |
# This is https://github.com/jaltmayerpizzorno/d2k | |
d2k_path = Path(__file__).parent / 'd2k' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2020, Juan Altmayer Pizzorno. All Rights Reserved. MIT license applies. | |
import os | |
import argparse | |
import tensorflow as tf | |
import tensorflow.keras as keras | |
import numpy as np | |
import cv2 | |
import time |