This file contains 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
""" UI to manually class bad/good images """ | |
import os | |
import sys | |
from glob import glob | |
import cv2 as cv | |
directory = sys.argv[1] | |
if not directory: | |
sys.exit(1) |
This file contains 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
""" Train model and find bad image from a directory """ | |
import argparse | |
import os | |
import time | |
from glob import glob | |
from typing import Any | |
import numpy as np | |
from tensorflow.python.keras.layers.pooling import MaxPool2D |
This file contains 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
Based on https://gist.github.com/tadast/8827699: | |
- remove duplicates | |
- striped and no unecessary double quotes | |
- floating point values instead of strings |
This file contains 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
<html> | |
<meta charset="utf-8" /> | |
<body> | |
<pre> | |
<code> | |
# All you have to do is to prefix variables with "_change_" | |
# and let the script to manage the editable values | |
FOO="_change_thisvariable" | |
this is a command with _change_argument here |
This file contains 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
import bpy | |
import mathutils | |
# Author: Patrice Ferlet <[email protected]> | |
# License: GPL | |
# Works with Blender 2.80-2.90 | |
# To use this script: | |
# - paste this script in a "text editor" *inside* blender | |
# - name it "sun_set.py" |
This file contains 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
# DEPRECATED - please go to my complete package: | |
# pipy package https://pypi.org/project/keras-video-generators/ | |
# github sources https://github.com/metal3d/keras-video-generators | |
import keras | |
import cv2 as cv | |
import glob | |
import numpy as np | |
import os | |
import random |
This file contains 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
import keras | |
import cv2 as cv | |
import glob | |
import numpy as np | |
import os | |
import random | |
import keras_preprocessing | |
# author: Patrice Ferlet <[email protected]> | |
# licence: MIT |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
import tensorflow as tf | |
import numpy as np | |
from IPython.display import clear_output, Image, display, HTML | |
def strip_consts(graph_def, max_const_size=32): | |
"""Strip large constant values from graph_def.""" | |
strip_def = tf.GraphDef() | |
for n0 in graph_def.node: | |
n = strip_def.node.add() | |
n.MergeFrom(n0) |
This file contains 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
import cv2 as cv | |
import os | |
import glob | |
import numpy as np | |
import random | |
from tensorflow import keras | |
import keras.preprocessing.image | |
from tensorflow.python.keras.utils.data_utils import Sequence | |
class VideoFrameGenerator(Sequence): |