├── LICENSE ├── NOTES.md ├── README.md ├── books ├── 9781787125490_opencv_computer_vision_projects_with_python_2f59.pdf ├── Introduction_to_Computer_Vision_in_Python.pdf ├── ProgrammingComputerVision_CCdraft.pdf ├── [Packt Publishing] OpenCV Computer Vision with Python.pdf ├── computer-vision-python-3.pdf ├── edge_detection.pdf └── prejects_ideas_with_computer_vision.pdf ├── cascades ├── haarcascade_eye.xml ├── haarcascade_eye_tree_eyeglasses.xml ├── haarcascade_frontalcatface.xml ├── haarcascade_frontalcatface_extended.xml ├── haarcascade_frontalface_alt.xml ├── haarcascade_frontalface_alt2.xml ├── haarcascade_frontalface_alt_tree.xml ├── haarcascade_frontalface_default.xml ├── haarcascade_fullbody.xml ├── haarcascade_lefteye_2splits.xml ├── haarcascade_licence_plate_rus_16stages.xml ├── haarcascade_lowerbody.xml ├── haarcascade_mcs_mouth.xml ├── haarcascade_profileface.xml ├── haarcascade_righteye_2splits.xml ├── haarcascade_russian_plate_number.xml ├── haarcascade_smile.xml ├── haarcascade_smile1.xml ├── haarcascade_upperbody.xml └── haarcascade_wallclock.xml ├── color_detection ├── extract_contours.py ├── normalized_graph_cut.py ├── superpixels.py └── watershed_algorithm.py ├── corner_detection └── harry_corner_detector.py ├── edge_detection ├── canny_algorithm.py └── sobel_algorithm.py ├── env ├── bin │ ├── Activate.ps1 │ ├── activate │ ├── activate.csh │ ├── activate.fish │ ├── cygdb │ ├── cython │ ├── cythonize │ ├── easy_install │ ├── easy_install-3.8 │ ├── pip │ ├── pip3 │ ├── pip3.8 │ ├── pytesseract │ ├── python │ └── python3 ├── lib │ └── python3.8 │ │ └── site-packages │ │ ├── Cython-0.29.20.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── Cython │ │ ├── Build │ │ │ ├── BuildExecutable.py │ │ │ ├── Cythonize.py │ │ │ ├── Dependencies.py │ │ │ ├── Distutils.py │ │ │ ├── Inline.py │ │ │ ├── IpythonMagic.py │ │ │ ├── Tests │ │ │ │ ├── TestCyCache.py │ │ │ │ ├── TestInline.py │ │ │ │ ├── TestIpythonMagic.py │ │ │ │ ├── TestStripLiterals.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── TestCyCache.cpython-38.pyc │ │ │ │ │ ├── TestInline.cpython-38.pyc │ │ │ │ │ ├── TestIpythonMagic.cpython-38.pyc │ │ │ │ │ ├── TestStripLiterals.cpython-38.pyc │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── BuildExecutable.cpython-38.pyc │ │ │ │ ├── Cythonize.cpython-38.pyc │ │ │ │ ├── Dependencies.cpython-38.pyc │ │ │ │ ├── Distutils.cpython-38.pyc │ │ │ │ ├── Inline.cpython-38.pyc │ │ │ │ ├── IpythonMagic.cpython-38.pyc │ │ │ │ └── __init__.cpython-38.pyc │ │ ├── CodeWriter.py │ │ ├── Compiler │ │ │ ├── AnalysedTreeTransforms.py │ │ │ ├── Annotate.py │ │ │ ├── AutoDocTransforms.py │ │ │ ├── Buffer.py │ │ │ ├── Builtin.py │ │ │ ├── CmdLine.py │ │ │ ├── Code.pxd │ │ │ ├── Code.py │ │ │ ├── CodeGeneration.py │ │ │ ├── CythonScope.py │ │ │ ├── DebugFlags.py │ │ │ ├── Errors.py │ │ │ ├── ExprNodes.py │ │ │ ├── FlowControl.cpython-38-x86_64-linux-gnu.so │ │ │ ├── FlowControl.pxd │ │ │ ├── FlowControl.py │ │ │ ├── FusedNode.cpython-38-x86_64-linux-gnu.so │ │ │ ├── FusedNode.py │ │ │ ├── Future.py │ │ │ ├── Interpreter.py │ │ │ ├── Lexicon.py │ │ │ ├── Main.py │ │ │ ├── MemoryView.py │ │ │ ├── ModuleNode.py │ │ │ ├── Naming.py │ │ │ ├── Nodes.py │ │ │ ├── Optimize.py │ │ │ ├── Options.py │ │ │ ├── ParseTreeTransforms.pxd │ │ │ ├── ParseTreeTransforms.py │ │ │ ├── Parsing.pxd │ │ │ ├── Parsing.py │ │ │ ├── Pipeline.py │ │ │ ├── PyrexTypes.py │ │ │ ├── Pythran.py │ │ │ ├── Scanning.cpython-38-x86_64-linux-gnu.so │ │ │ ├── Scanning.pxd │ │ │ ├── Scanning.py │ │ │ ├── StringEncoding.py │ │ │ ├── Symtab.py │ │ │ ├── Tests │ │ │ │ ├── TestBuffer.py │ │ │ │ ├── TestCmdLine.py │ │ │ │ ├── TestFlowControl.py │ │ │ │ ├── TestGrammar.py │ │ │ │ ├── TestMemView.py │ │ │ │ ├── TestParseTreeTransforms.py │ │ │ │ ├── TestSignatureMatching.py │ │ │ │ ├── TestTreeFragment.py │ │ │ │ ├── TestTreePath.py │ │ │ │ ├── TestTypes.py │ │ │ │ ├── TestUtilityLoad.py │ │ │ │ ├── TestVisitor.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── TestBuffer.cpython-38.pyc │ │ │ │ │ ├── TestCmdLine.cpython-38.pyc │ │ │ │ │ ├── TestFlowControl.cpython-38.pyc │ │ │ │ │ ├── TestGrammar.cpython-38.pyc │ │ │ │ │ ├── TestMemView.cpython-38.pyc │ │ │ │ │ ├── TestParseTreeTransforms.cpython-38.pyc │ │ │ │ │ ├── TestSignatureMatching.cpython-38.pyc │ │ │ │ │ ├── TestTreeFragment.cpython-38.pyc │ │ │ │ │ ├── TestTreePath.cpython-38.pyc │ │ │ │ │ ├── TestTypes.cpython-38.pyc │ │ │ │ │ ├── TestUtilityLoad.cpython-38.pyc │ │ │ │ │ ├── TestVisitor.cpython-38.pyc │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── TreeFragment.py │ │ │ ├── TreePath.py │ │ │ ├── TypeInference.py │ │ │ ├── TypeSlots.py │ │ │ ├── UtilNodes.py │ │ │ ├── UtilityCode.py │ │ │ ├── Version.py │ │ │ ├── Visitor.cpython-38-x86_64-linux-gnu.so │ │ │ ├── Visitor.pxd │ │ │ ├── Visitor.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── AnalysedTreeTransforms.cpython-38.pyc │ │ │ │ ├── Annotate.cpython-38.pyc │ │ │ │ ├── AutoDocTransforms.cpython-38.pyc │ │ │ │ ├── Buffer.cpython-38.pyc │ │ │ │ ├── Builtin.cpython-38.pyc │ │ │ │ ├── CmdLine.cpython-38.pyc │ │ │ │ ├── Code.cpython-38.pyc │ │ │ │ ├── CodeGeneration.cpython-38.pyc │ │ │ │ ├── CythonScope.cpython-38.pyc │ │ │ │ ├── DebugFlags.cpython-38.pyc │ │ │ │ ├── Errors.cpython-38.pyc │ │ │ │ ├── ExprNodes.cpython-38.pyc │ │ │ │ ├── FlowControl.cpython-38.pyc │ │ │ │ ├── FusedNode.cpython-38.pyc │ │ │ │ ├── Future.cpython-38.pyc │ │ │ │ ├── Interpreter.cpython-38.pyc │ │ │ │ ├── Lexicon.cpython-38.pyc │ │ │ │ ├── Main.cpython-38.pyc │ │ │ │ ├── MemoryView.cpython-38.pyc │ │ │ │ ├── ModuleNode.cpython-38.pyc │ │ │ │ ├── Naming.cpython-38.pyc │ │ │ │ ├── Nodes.cpython-38.pyc │ │ │ │ ├── Optimize.cpython-38.pyc │ │ │ │ ├── Options.cpython-38.pyc │ │ │ │ ├── ParseTreeTransforms.cpython-38.pyc │ │ │ │ ├── Parsing.cpython-38.pyc │ │ │ │ ├── Pipeline.cpython-38.pyc │ │ │ │ ├── PyrexTypes.cpython-38.pyc │ │ │ │ ├── Pythran.cpython-38.pyc │ │ │ │ ├── Scanning.cpython-38.pyc │ │ │ │ ├── StringEncoding.cpython-38.pyc │ │ │ │ ├── Symtab.cpython-38.pyc │ │ │ │ ├── TreeFragment.cpython-38.pyc │ │ │ │ ├── TreePath.cpython-38.pyc │ │ │ │ ├── TypeInference.cpython-38.pyc │ │ │ │ ├── TypeSlots.cpython-38.pyc │ │ │ │ ├── UtilNodes.cpython-38.pyc │ │ │ │ ├── UtilityCode.cpython-38.pyc │ │ │ │ ├── Version.cpython-38.pyc │ │ │ │ ├── Visitor.cpython-38.pyc │ │ │ │ └── __init__.cpython-38.pyc │ │ ├── Coverage.py │ │ ├── Debugger │ │ │ ├── Cygdb.py │ │ │ ├── DebugWriter.py │ │ │ ├── Tests │ │ │ │ ├── TestLibCython.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── TestLibCython.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── test_libcython_in_gdb.cpython-38.pyc │ │ │ │ │ └── test_libpython_in_gdb.cpython-38.pyc │ │ │ │ ├── cfuncs.c │ │ │ │ ├── codefile │ │ │ │ ├── test_libcython_in_gdb.py │ │ │ │ └── test_libpython_in_gdb.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── Cygdb.cpython-38.pyc │ │ │ │ ├── DebugWriter.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── libcython.cpython-38.pyc │ │ │ │ └── libpython.cpython-38.pyc │ │ │ ├── libcython.py │ │ │ └── libpython.py │ │ ├── Debugging.py │ │ ├── Distutils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── build_ext.cpython-38.pyc │ │ │ │ ├── extension.cpython-38.pyc │ │ │ │ └── old_build_ext.cpython-38.pyc │ │ │ ├── build_ext.py │ │ │ ├── extension.py │ │ │ └── old_build_ext.py │ │ ├── Includes │ │ │ ├── Deprecated │ │ │ │ ├── python.pxd │ │ │ │ ├── python_bool.pxd │ │ │ │ ├── python_buffer.pxd │ │ │ │ ├── python_bytes.pxd │ │ │ │ ├── python_cobject.pxd │ │ │ │ ├── python_complex.pxd │ │ │ │ ├── python_dict.pxd │ │ │ │ ├── python_exc.pxd │ │ │ │ ├── python_float.pxd │ │ │ │ ├── python_function.pxd │ │ │ │ ├── python_getargs.pxd │ │ │ │ ├── python_instance.pxd │ │ │ │ ├── python_int.pxd │ │ │ │ ├── python_iterator.pxd │ │ │ │ ├── python_list.pxd │ │ │ │ ├── python_long.pxd │ │ │ │ ├── python_mapping.pxd │ │ │ │ ├── python_mem.pxd │ │ │ │ ├── python_method.pxd │ │ │ │ ├── python_module.pxd │ │ │ │ ├── python_number.pxd │ │ │ │ ├── python_object.pxd │ │ │ │ ├── python_oldbuffer.pxd │ │ │ │ ├── python_pycapsule.pxd │ │ │ │ ├── python_ref.pxd │ │ │ │ ├── python_sequence.pxd │ │ │ │ ├── python_set.pxd │ │ │ │ ├── python_string.pxd │ │ │ │ ├── python_tuple.pxd │ │ │ │ ├── python_type.pxd │ │ │ │ ├── python_unicode.pxd │ │ │ │ ├── python_version.pxd │ │ │ │ ├── python_weakref.pxd │ │ │ │ ├── stdio.pxd │ │ │ │ ├── stdlib.pxd │ │ │ │ └── stl.pxd │ │ │ ├── cpython │ │ │ │ ├── __init__.pxd │ │ │ │ ├── array.pxd │ │ │ │ ├── bool.pxd │ │ │ │ ├── buffer.pxd │ │ │ │ ├── bytearray.pxd │ │ │ │ ├── bytes.pxd │ │ │ │ ├── ceval.pxd │ │ │ │ ├── cobject.pxd │ │ │ │ ├── complex.pxd │ │ │ │ ├── datetime.pxd │ │ │ │ ├── dict.pxd │ │ │ │ ├── exc.pxd │ │ │ │ ├── float.pxd │ │ │ │ ├── function.pxd │ │ │ │ ├── genobject.pxd │ │ │ │ ├── getargs.pxd │ │ │ │ ├── instance.pxd │ │ │ │ ├── int.pxd │ │ │ │ ├── iterator.pxd │ │ │ │ ├── iterobject.pxd │ │ │ │ ├── list.pxd │ │ │ │ ├── long.pxd │ │ │ │ ├── longintrepr.pxd │ │ │ │ ├── mapping.pxd │ │ │ │ ├── mem.pxd │ │ │ │ ├── memoryview.pxd │ │ │ │ ├── method.pxd │ │ │ │ ├── module.pxd │ │ │ │ ├── number.pxd │ │ │ │ ├── object.pxd │ │ │ │ ├── oldbuffer.pxd │ │ │ │ ├── pycapsule.pxd │ │ │ │ ├── pylifecycle.pxd │ │ │ │ ├── pystate.pxd │ │ │ │ ├── pythread.pxd │ │ │ │ ├── ref.pxd │ │ │ │ ├── sequence.pxd │ │ │ │ ├── set.pxd │ │ │ │ ├── slice.pxd │ │ │ │ ├── string.pxd │ │ │ │ ├── tuple.pxd │ │ │ │ ├── type.pxd │ │ │ │ ├── unicode.pxd │ │ │ │ ├── version.pxd │ │ │ │ └── weakref.pxd │ │ │ ├── libc │ │ │ │ ├── __init__.pxd │ │ │ │ ├── errno.pxd │ │ │ │ ├── float.pxd │ │ │ │ ├── limits.pxd │ │ │ │ ├── locale.pxd │ │ │ │ ├── math.pxd │ │ │ │ ├── setjmp.pxd │ │ │ │ ├── signal.pxd │ │ │ │ ├── stddef.pxd │ │ │ │ ├── stdint.pxd │ │ │ │ ├── stdio.pxd │ │ │ │ ├── stdlib.pxd │ │ │ │ ├── string.pxd │ │ │ │ └── time.pxd │ │ │ ├── libcpp │ │ │ │ ├── __init__.pxd │ │ │ │ ├── algorithm.pxd │ │ │ │ ├── cast.pxd │ │ │ │ ├── complex.pxd │ │ │ │ ├── deque.pxd │ │ │ │ ├── forward_list.pxd │ │ │ │ ├── functional.pxd │ │ │ │ ├── iterator.pxd │ │ │ │ ├── limits.pxd │ │ │ │ ├── list.pxd │ │ │ │ ├── map.pxd │ │ │ │ ├── memory.pxd │ │ │ │ ├── pair.pxd │ │ │ │ ├── queue.pxd │ │ │ │ ├── set.pxd │ │ │ │ ├── stack.pxd │ │ │ │ ├── string.pxd │ │ │ │ ├── typeindex.pxd │ │ │ │ ├── typeinfo.pxd │ │ │ │ ├── unordered_map.pxd │ │ │ │ ├── unordered_set.pxd │ │ │ │ ├── utility.pxd │ │ │ │ └── vector.pxd │ │ │ ├── numpy │ │ │ │ ├── __init__.pxd │ │ │ │ └── math.pxd │ │ │ ├── openmp.pxd │ │ │ └── posix │ │ │ │ ├── __init__.pxd │ │ │ │ ├── dlfcn.pxd │ │ │ │ ├── fcntl.pxd │ │ │ │ ├── ioctl.pxd │ │ │ │ ├── mman.pxd │ │ │ │ ├── resource.pxd │ │ │ │ ├── select.pxd │ │ │ │ ├── signal.pxd │ │ │ │ ├── stat.pxd │ │ │ │ ├── stdio.pxd │ │ │ │ ├── stdlib.pxd │ │ │ │ ├── strings.pxd │ │ │ │ ├── time.pxd │ │ │ │ ├── types.pxd │ │ │ │ ├── unistd.pxd │ │ │ │ └── wait.pxd │ │ ├── Plex │ │ │ ├── Actions.cpython-38-x86_64-linux-gnu.so │ │ │ ├── Actions.pxd │ │ │ ├── Actions.py │ │ │ ├── DFA.py │ │ │ ├── Errors.py │ │ │ ├── Lexicons.py │ │ │ ├── Machines.py │ │ │ ├── Regexps.py │ │ │ ├── Scanners.cpython-38-x86_64-linux-gnu.so │ │ │ ├── Scanners.pxd │ │ │ ├── Scanners.py │ │ │ ├── Timing.py │ │ │ ├── Traditional.py │ │ │ ├── Transitions.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── Actions.cpython-38.pyc │ │ │ │ ├── DFA.cpython-38.pyc │ │ │ │ ├── Errors.cpython-38.pyc │ │ │ │ ├── Lexicons.cpython-38.pyc │ │ │ │ ├── Machines.cpython-38.pyc │ │ │ │ ├── Regexps.cpython-38.pyc │ │ │ │ ├── Scanners.cpython-38.pyc │ │ │ │ ├── Timing.cpython-38.pyc │ │ │ │ ├── Traditional.cpython-38.pyc │ │ │ │ ├── Transitions.cpython-38.pyc │ │ │ │ └── __init__.cpython-38.pyc │ │ ├── Runtime │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── refnanny.cpython-38-x86_64-linux-gnu.so │ │ │ └── refnanny.pyx │ │ ├── Shadow.py │ │ ├── StringIOTree.py │ │ ├── Tempita │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _looper.cpython-38.pyc │ │ │ │ ├── _tempita.cpython-38.pyc │ │ │ │ └── compat3.cpython-38.pyc │ │ │ ├── _looper.py │ │ │ ├── _tempita.cpython-38-x86_64-linux-gnu.so │ │ │ ├── _tempita.py │ │ │ └── compat3.py │ │ ├── TestUtils.py │ │ ├── Tests │ │ │ ├── TestCodeWriter.py │ │ │ ├── TestCythonUtils.py │ │ │ ├── TestJediTyper.py │ │ │ ├── TestStringIOTree.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── TestCodeWriter.cpython-38.pyc │ │ │ │ ├── TestCythonUtils.cpython-38.pyc │ │ │ │ ├── TestJediTyper.cpython-38.pyc │ │ │ │ ├── TestStringIOTree.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── xmlrunner.cpython-38.pyc │ │ │ └── xmlrunner.py │ │ ├── Utility │ │ │ ├── AsyncGen.c │ │ │ ├── Buffer.c │ │ │ ├── Builtins.c │ │ │ ├── CConvert.pyx │ │ │ ├── CMath.c │ │ │ ├── Capsule.c │ │ │ ├── CommonStructures.c │ │ │ ├── Complex.c │ │ │ ├── Coroutine.c │ │ │ ├── CpdefEnums.pyx │ │ │ ├── CppConvert.pyx │ │ │ ├── CppSupport.cpp │ │ │ ├── CythonFunction.c │ │ │ ├── Embed.c │ │ │ ├── Exceptions.c │ │ │ ├── ExtensionTypes.c │ │ │ ├── FunctionArguments.c │ │ │ ├── ImportExport.c │ │ │ ├── MemoryView.pyx │ │ │ ├── MemoryView_C.c │ │ │ ├── ModuleSetupCode.c │ │ │ ├── ObjectHandling.c │ │ │ ├── Optimize.c │ │ │ ├── Overflow.c │ │ │ ├── Printing.c │ │ │ ├── Profile.c │ │ │ ├── StringTools.c │ │ │ ├── TestCyUtilityLoader.pyx │ │ │ ├── TestCythonScope.pyx │ │ │ ├── TestUtilityLoader.c │ │ │ ├── TypeConversion.c │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ └── arrayarray.h │ │ ├── Utils.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── CodeWriter.cpython-38.pyc │ │ │ ├── Coverage.cpython-38.pyc │ │ │ ├── Debugging.cpython-38.pyc │ │ │ ├── Shadow.cpython-38.pyc │ │ │ ├── StringIOTree.cpython-38.pyc │ │ │ ├── TestUtils.cpython-38.pyc │ │ │ ├── Utils.cpython-38.pyc │ │ │ └── __init__.cpython-38.pyc │ │ ├── PIL │ │ ├── BdfFontFile.py │ │ ├── BlpImagePlugin.py │ │ ├── BmpImagePlugin.py │ │ ├── BufrStubImagePlugin.py │ │ ├── ContainerIO.py │ │ ├── CurImagePlugin.py │ │ ├── DcxImagePlugin.py │ │ ├── DdsImagePlugin.py │ │ ├── EpsImagePlugin.py │ │ ├── ExifTags.py │ │ ├── FitsStubImagePlugin.py │ │ ├── FliImagePlugin.py │ │ ├── FontFile.py │ │ ├── FpxImagePlugin.py │ │ ├── FtexImagePlugin.py │ │ ├── GbrImagePlugin.py │ │ ├── GdImageFile.py │ │ ├── GifImagePlugin.py │ │ ├── GimpGradientFile.py │ │ ├── GimpPaletteFile.py │ │ ├── GribStubImagePlugin.py │ │ ├── Hdf5StubImagePlugin.py │ │ ├── IcnsImagePlugin.py │ │ ├── IcoImagePlugin.py │ │ ├── ImImagePlugin.py │ │ ├── Image.py │ │ ├── ImageChops.py │ │ ├── ImageCms.py │ │ ├── ImageColor.py │ │ ├── ImageDraw.py │ │ ├── ImageDraw2.py │ │ ├── ImageEnhance.py │ │ ├── ImageFile.py │ │ ├── ImageFilter.py │ │ ├── ImageFont.py │ │ ├── ImageGrab.py │ │ ├── ImageMath.py │ │ ├── ImageMode.py │ │ ├── ImageMorph.py │ │ ├── ImageOps.py │ │ ├── ImagePalette.py │ │ ├── ImagePath.py │ │ ├── ImageQt.py │ │ ├── ImageSequence.py │ │ ├── ImageShow.py │ │ ├── ImageStat.py │ │ ├── ImageTk.py │ │ ├── ImageTransform.py │ │ ├── ImageWin.py │ │ ├── ImtImagePlugin.py │ │ ├── IptcImagePlugin.py │ │ ├── Jpeg2KImagePlugin.py │ │ ├── JpegImagePlugin.py │ │ ├── JpegPresets.py │ │ ├── McIdasImagePlugin.py │ │ ├── MicImagePlugin.py │ │ ├── MpegImagePlugin.py │ │ ├── MpoImagePlugin.py │ │ ├── MspImagePlugin.py │ │ ├── PSDraw.py │ │ ├── PaletteFile.py │ │ ├── PalmImagePlugin.py │ │ ├── PcdImagePlugin.py │ │ ├── PcfFontFile.py │ │ ├── PcxImagePlugin.py │ │ ├── PdfImagePlugin.py │ │ ├── PdfParser.py │ │ ├── PixarImagePlugin.py │ │ ├── PngImagePlugin.py │ │ ├── PpmImagePlugin.py │ │ ├── PsdImagePlugin.py │ │ ├── PyAccess.py │ │ ├── SgiImagePlugin.py │ │ ├── SpiderImagePlugin.py │ │ ├── SunImagePlugin.py │ │ ├── TarIO.py │ │ ├── TgaImagePlugin.py │ │ ├── TiffImagePlugin.py │ │ ├── TiffTags.py │ │ ├── WalImageFile.py │ │ ├── WebPImagePlugin.py │ │ ├── WmfImagePlugin.py │ │ ├── XVThumbImagePlugin.py │ │ ├── XbmImagePlugin.py │ │ ├── XpmImagePlugin.py │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── BdfFontFile.cpython-38.pyc │ │ │ ├── BlpImagePlugin.cpython-38.pyc │ │ │ ├── BmpImagePlugin.cpython-38.pyc │ │ │ ├── BufrStubImagePlugin.cpython-38.pyc │ │ │ ├── ContainerIO.cpython-38.pyc │ │ │ ├── CurImagePlugin.cpython-38.pyc │ │ │ ├── DcxImagePlugin.cpython-38.pyc │ │ │ ├── DdsImagePlugin.cpython-38.pyc │ │ │ ├── EpsImagePlugin.cpython-38.pyc │ │ │ ├── ExifTags.cpython-38.pyc │ │ │ ├── FitsStubImagePlugin.cpython-38.pyc │ │ │ ├── FliImagePlugin.cpython-38.pyc │ │ │ ├── FontFile.cpython-38.pyc │ │ │ ├── FpxImagePlugin.cpython-38.pyc │ │ │ ├── FtexImagePlugin.cpython-38.pyc │ │ │ ├── GbrImagePlugin.cpython-38.pyc │ │ │ ├── GdImageFile.cpython-38.pyc │ │ │ ├── GifImagePlugin.cpython-38.pyc │ │ │ ├── GimpGradientFile.cpython-38.pyc │ │ │ ├── GimpPaletteFile.cpython-38.pyc │ │ │ ├── GribStubImagePlugin.cpython-38.pyc │ │ │ ├── Hdf5StubImagePlugin.cpython-38.pyc │ │ │ ├── IcnsImagePlugin.cpython-38.pyc │ │ │ ├── IcoImagePlugin.cpython-38.pyc │ │ │ ├── ImImagePlugin.cpython-38.pyc │ │ │ ├── Image.cpython-38.pyc │ │ │ ├── ImageChops.cpython-38.pyc │ │ │ ├── ImageCms.cpython-38.pyc │ │ │ ├── ImageColor.cpython-38.pyc │ │ │ ├── ImageDraw.cpython-38.pyc │ │ │ ├── ImageDraw2.cpython-38.pyc │ │ │ ├── ImageEnhance.cpython-38.pyc │ │ │ ├── ImageFile.cpython-38.pyc │ │ │ ├── ImageFilter.cpython-38.pyc │ │ │ ├── ImageFont.cpython-38.pyc │ │ │ ├── ImageGrab.cpython-38.pyc │ │ │ ├── ImageMath.cpython-38.pyc │ │ │ ├── ImageMode.cpython-38.pyc │ │ │ ├── ImageMorph.cpython-38.pyc │ │ │ ├── ImageOps.cpython-38.pyc │ │ │ ├── ImagePalette.cpython-38.pyc │ │ │ ├── ImagePath.cpython-38.pyc │ │ │ ├── ImageQt.cpython-38.pyc │ │ │ ├── ImageSequence.cpython-38.pyc │ │ │ ├── ImageShow.cpython-38.pyc │ │ │ ├── ImageStat.cpython-38.pyc │ │ │ ├── ImageTk.cpython-38.pyc │ │ │ ├── ImageTransform.cpython-38.pyc │ │ │ ├── ImageWin.cpython-38.pyc │ │ │ ├── ImtImagePlugin.cpython-38.pyc │ │ │ ├── IptcImagePlugin.cpython-38.pyc │ │ │ ├── Jpeg2KImagePlugin.cpython-38.pyc │ │ │ ├── JpegImagePlugin.cpython-38.pyc │ │ │ ├── JpegPresets.cpython-38.pyc │ │ │ ├── McIdasImagePlugin.cpython-38.pyc │ │ │ ├── MicImagePlugin.cpython-38.pyc │ │ │ ├── MpegImagePlugin.cpython-38.pyc │ │ │ ├── MpoImagePlugin.cpython-38.pyc │ │ │ ├── MspImagePlugin.cpython-38.pyc │ │ │ ├── PSDraw.cpython-38.pyc │ │ │ ├── PaletteFile.cpython-38.pyc │ │ │ ├── PalmImagePlugin.cpython-38.pyc │ │ │ ├── PcdImagePlugin.cpython-38.pyc │ │ │ ├── PcfFontFile.cpython-38.pyc │ │ │ ├── PcxImagePlugin.cpython-38.pyc │ │ │ ├── PdfImagePlugin.cpython-38.pyc │ │ │ ├── PdfParser.cpython-38.pyc │ │ │ ├── PixarImagePlugin.cpython-38.pyc │ │ │ ├── PngImagePlugin.cpython-38.pyc │ │ │ ├── PpmImagePlugin.cpython-38.pyc │ │ │ ├── PsdImagePlugin.cpython-38.pyc │ │ │ ├── PyAccess.cpython-38.pyc │ │ │ ├── SgiImagePlugin.cpython-38.pyc │ │ │ ├── SpiderImagePlugin.cpython-38.pyc │ │ │ ├── SunImagePlugin.cpython-38.pyc │ │ │ ├── TarIO.cpython-38.pyc │ │ │ ├── TgaImagePlugin.cpython-38.pyc │ │ │ ├── TiffImagePlugin.cpython-38.pyc │ │ │ ├── TiffTags.cpython-38.pyc │ │ │ ├── WalImageFile.cpython-38.pyc │ │ │ ├── WebPImagePlugin.cpython-38.pyc │ │ │ ├── WmfImagePlugin.cpython-38.pyc │ │ │ ├── XVThumbImagePlugin.cpython-38.pyc │ │ │ ├── XbmImagePlugin.cpython-38.pyc │ │ │ ├── XpmImagePlugin.cpython-38.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __main__.cpython-38.pyc │ │ │ ├── _binary.cpython-38.pyc │ │ │ ├── _tkinter_finder.cpython-38.pyc │ │ │ ├── _util.cpython-38.pyc │ │ │ ├── _version.cpython-38.pyc │ │ │ └── features.cpython-38.pyc │ │ ├── _binary.py │ │ ├── _imaging.cpython-38-x86_64-linux-gnu.so │ │ ├── _imagingcms.cpython-38-x86_64-linux-gnu.so │ │ ├── _imagingft.cpython-38-x86_64-linux-gnu.so │ │ ├── _imagingmath.cpython-38-x86_64-linux-gnu.so │ │ ├── _imagingmorph.cpython-38-x86_64-linux-gnu.so │ │ ├── _imagingtk.cpython-38-x86_64-linux-gnu.so │ │ ├── _tkinter_finder.py │ │ ├── _util.py │ │ ├── _version.py │ │ ├── _webp.cpython-38-x86_64-linux-gnu.so │ │ └── features.py │ │ ├── Pillow-7.2.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── top_level.txt │ │ └── zip-safe │ │ ├── Pillow.libs │ │ ├── libXau-312dbc56.so.6.0.0 │ │ ├── libXdmcp-e15573e7.so.6.0.0 │ │ ├── libfreetype-b35627f5.so.6.17.2 │ │ ├── libjpeg-ba7bf5af.so.9.4.0 │ │ ├── liblcms2-db671c5b.so.2.0.10 │ │ ├── liblzma-99449165.so.5.2.5 │ │ ├── libopenjp2-b3d7668a.so.2.3.1 │ │ ├── libpng16-bedcb7ea.so.16.37.0 │ │ ├── libtiff-41910f6d.so.5.5.0 │ │ ├── libwebp-122bd20b.so.7.1.0 │ │ ├── libwebpdemux-2db559e5.so.2.0.6 │ │ ├── libwebpmux-ec1d5c76.so.3.0.5 │ │ ├── libxcb-2dfad6c3.so.1.1.0 │ │ └── libz-a147dcb0.so.1.2.3 │ │ ├── __pycache__ │ │ ├── cython.cpython-38.pyc │ │ └── easy_install.cpython-38.pyc │ │ ├── cython.py │ │ ├── easy_install.py │ │ ├── pip-20.0.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── pip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── __main__.cpython-38.pyc │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── build_env.cpython-38.pyc │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ ├── legacy_resolve.cpython-38.pyc │ │ │ │ ├── locations.cpython-38.pyc │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ ├── pep425tags.cpython-38.pyc │ │ │ │ ├── pyproject.cpython-38.pyc │ │ │ │ ├── self_outdated_check.cpython-38.pyc │ │ │ │ └── wheel_builder.cpython-38.pyc │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── autocompletion.cpython-38.pyc │ │ │ │ │ ├── base_command.cpython-38.pyc │ │ │ │ │ ├── cmdoptions.cpython-38.pyc │ │ │ │ │ ├── command_context.cpython-38.pyc │ │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ │ ├── main_parser.cpython-38.pyc │ │ │ │ │ ├── parser.cpython-38.pyc │ │ │ │ │ ├── req_command.cpython-38.pyc │ │ │ │ │ └── status_codes.cpython-38.pyc │ │ │ │ ├── autocompletion.py │ │ │ │ ├── base_command.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── command_context.py │ │ │ │ ├── main.py │ │ │ │ ├── main_parser.py │ │ │ │ ├── parser.py │ │ │ │ ├── req_command.py │ │ │ │ └── status_codes.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ ├── completion.cpython-38.pyc │ │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ ├── hash.cpython-38.pyc │ │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ │ ├── list.cpython-38.pyc │ │ │ │ │ ├── search.cpython-38.pyc │ │ │ │ │ ├── show.cpython-38.pyc │ │ │ │ │ ├── uninstall.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── check.py │ │ │ │ ├── completion.py │ │ │ │ ├── configuration.py │ │ │ │ ├── debug.py │ │ │ │ ├── download.py │ │ │ │ ├── freeze.py │ │ │ │ ├── hash.py │ │ │ │ ├── help.py │ │ │ │ ├── install.py │ │ │ │ ├── list.py │ │ │ │ ├── search.py │ │ │ │ ├── show.py │ │ │ │ ├── uninstall.py │ │ │ │ └── wheel.py │ │ │ ├── configuration.py │ │ │ ├── distributions │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── installed.cpython-38.pyc │ │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── base.py │ │ │ │ ├── installed.py │ │ │ │ ├── sdist.py │ │ │ │ └── wheel.py │ │ │ ├── exceptions.py │ │ │ ├── index │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── collector.cpython-38.pyc │ │ │ │ │ └── package_finder.cpython-38.pyc │ │ │ │ ├── collector.py │ │ │ │ └── package_finder.py │ │ │ ├── legacy_resolve.py │ │ │ ├── locations.py │ │ │ ├── main.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── candidate.cpython-38.pyc │ │ │ │ │ ├── format_control.cpython-38.pyc │ │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ │ ├── link.cpython-38.pyc │ │ │ │ │ ├── scheme.cpython-38.pyc │ │ │ │ │ ├── search_scope.cpython-38.pyc │ │ │ │ │ ├── selection_prefs.cpython-38.pyc │ │ │ │ │ ├── target_python.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── candidate.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ ├── link.py │ │ │ │ ├── scheme.py │ │ │ │ ├── search_scope.py │ │ │ │ ├── selection_prefs.py │ │ │ │ ├── target_python.py │ │ │ │ └── wheel.py │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ ├── session.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── xmlrpc.cpython-38.pyc │ │ │ │ ├── auth.py │ │ │ │ ├── cache.py │ │ │ │ ├── download.py │ │ │ │ ├── session.py │ │ │ │ ├── utils.py │ │ │ │ └── xmlrpc.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ └── prepare.cpython-38.pyc │ │ │ │ ├── build │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ │ ├── metadata_legacy.cpython-38.pyc │ │ │ │ │ │ ├── wheel.cpython-38.pyc │ │ │ │ │ │ └── wheel_legacy.cpython-38.pyc │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ ├── wheel.py │ │ │ │ │ └── wheel_legacy.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ ├── install │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── editable_legacy.cpython-38.pyc │ │ │ │ │ │ ├── legacy.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ ├── legacy.py │ │ │ │ │ └── wheel.py │ │ │ │ └── prepare.py │ │ │ ├── pep425tags.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── constructors.cpython-38.pyc │ │ │ │ │ ├── req_file.cpython-38.pyc │ │ │ │ │ ├── req_install.cpython-38.pyc │ │ │ │ │ ├── req_set.cpython-38.pyc │ │ │ │ │ ├── req_tracker.cpython-38.pyc │ │ │ │ │ └── req_uninstall.cpython-38.pyc │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── self_outdated_check.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── deprecation.cpython-38.pyc │ │ │ │ │ ├── distutils_args.cpython-38.pyc │ │ │ │ │ ├── encoding.cpython-38.pyc │ │ │ │ │ ├── entrypoints.cpython-38.pyc │ │ │ │ │ ├── filesystem.cpython-38.pyc │ │ │ │ │ ├── filetypes.cpython-38.pyc │ │ │ │ │ ├── glibc.cpython-38.pyc │ │ │ │ │ ├── hashes.cpython-38.pyc │ │ │ │ │ ├── inject_securetransport.cpython-38.pyc │ │ │ │ │ ├── logging.cpython-38.pyc │ │ │ │ │ ├── marker_files.cpython-38.pyc │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ ├── packaging.cpython-38.pyc │ │ │ │ │ ├── pkg_resources.cpython-38.pyc │ │ │ │ │ ├── setuptools_build.cpython-38.pyc │ │ │ │ │ ├── subprocess.cpython-38.pyc │ │ │ │ │ ├── temp_dir.cpython-38.pyc │ │ │ │ │ ├── typing.cpython-38.pyc │ │ │ │ │ ├── ui.cpython-38.pyc │ │ │ │ │ ├── unpacking.cpython-38.pyc │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ ├── virtualenv.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── compat.py │ │ │ │ ├── deprecation.py │ │ │ │ ├── distutils_args.py │ │ │ │ ├── encoding.py │ │ │ │ ├── entrypoints.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── filetypes.py │ │ │ │ ├── glibc.py │ │ │ │ ├── hashes.py │ │ │ │ ├── inject_securetransport.py │ │ │ │ ├── logging.py │ │ │ │ ├── marker_files.py │ │ │ │ ├── misc.py │ │ │ │ ├── models.py │ │ │ │ ├── packaging.py │ │ │ │ ├── pkg_resources.py │ │ │ │ ├── setuptools_build.py │ │ │ │ ├── subprocess.py │ │ │ │ ├── temp_dir.py │ │ │ │ ├── typing.py │ │ │ │ ├── ui.py │ │ │ │ ├── unpacking.py │ │ │ │ ├── urls.py │ │ │ │ ├── virtualenv.py │ │ │ │ └── wheel.py │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── bazaar.cpython-38.pyc │ │ │ │ │ ├── git.cpython-38.pyc │ │ │ │ │ ├── mercurial.cpython-38.pyc │ │ │ │ │ ├── subversion.cpython-38.pyc │ │ │ │ │ └── versioncontrol.cpython-38.pyc │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ ├── subversion.py │ │ │ │ └── versioncontrol.py │ │ │ └── wheel_builder.py │ │ └── _vendor │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ │ ├── pkg_resources-0.0.0.dist-info │ │ ├── AUTHORS.txt │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ └── WHEEL │ │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── py31compat.cpython-38.pyc │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ └── six.cpython-38.pyc │ │ │ ├── appdirs.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── six.py │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ └── py31compat.py │ │ ├── pytesseract-0.3.4.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── pytesseract │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── pytesseract.cpython-38.pyc │ │ └── pytesseract.py │ │ ├── pyximport │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── pyxbuild.cpython-38.pyc │ │ │ └── pyximport.cpython-38.pyc │ │ ├── pyxbuild.py │ │ └── pyximport.py │ │ ├── setuptools-44.0.0.dist-info │ │ ├── AUTHORS.txt │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── top_level.txt │ │ └── zip-safe │ │ ├── setuptools │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _deprecation_warning.cpython-38.pyc │ │ │ ├── _imp.cpython-38.pyc │ │ │ ├── archive_util.cpython-38.pyc │ │ │ ├── build_meta.cpython-38.pyc │ │ │ ├── config.cpython-38.pyc │ │ │ ├── dep_util.cpython-38.pyc │ │ │ ├── depends.cpython-38.pyc │ │ │ ├── dist.cpython-38.pyc │ │ │ ├── errors.cpython-38.pyc │ │ │ ├── extension.cpython-38.pyc │ │ │ ├── glob.cpython-38.pyc │ │ │ ├── installer.cpython-38.pyc │ │ │ ├── launch.cpython-38.pyc │ │ │ ├── lib2to3_ex.cpython-38.pyc │ │ │ ├── monkey.cpython-38.pyc │ │ │ ├── msvc.cpython-38.pyc │ │ │ ├── namespaces.cpython-38.pyc │ │ │ ├── package_index.cpython-38.pyc │ │ │ ├── py27compat.cpython-38.pyc │ │ │ ├── py31compat.cpython-38.pyc │ │ │ ├── py33compat.cpython-38.pyc │ │ │ ├── py34compat.cpython-38.pyc │ │ │ ├── sandbox.cpython-38.pyc │ │ │ ├── site-patch.cpython-38.pyc │ │ │ ├── ssl_support.cpython-38.pyc │ │ │ ├── unicode_utils.cpython-38.pyc │ │ │ ├── version.cpython-38.pyc │ │ │ ├── wheel.cpython-38.pyc │ │ │ └── windows_support.cpython-38.pyc │ │ ├── _deprecation_warning.py │ │ ├── _imp.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── ordered_set.cpython-38.pyc │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ └── six.cpython-38.pyc │ │ │ ├── ordered_set.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── six.py │ │ ├── archive_util.py │ │ ├── build_meta.py │ │ ├── cli-32.exe │ │ ├── cli-64.exe │ │ ├── cli.exe │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── alias.cpython-38.pyc │ │ │ │ ├── bdist_egg.cpython-38.pyc │ │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ │ ├── bdist_wininst.cpython-38.pyc │ │ │ │ ├── build_clib.cpython-38.pyc │ │ │ │ ├── build_ext.cpython-38.pyc │ │ │ │ ├── build_py.cpython-38.pyc │ │ │ │ ├── develop.cpython-38.pyc │ │ │ │ ├── dist_info.cpython-38.pyc │ │ │ │ ├── easy_install.cpython-38.pyc │ │ │ │ ├── egg_info.cpython-38.pyc │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ │ ├── install_lib.cpython-38.pyc │ │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ │ ├── py36compat.cpython-38.pyc │ │ │ │ ├── register.cpython-38.pyc │ │ │ │ ├── rotate.cpython-38.pyc │ │ │ │ ├── saveopts.cpython-38.pyc │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ ├── setopt.cpython-38.pyc │ │ │ │ ├── test.cpython-38.pyc │ │ │ │ ├── upload.cpython-38.pyc │ │ │ │ └── upload_docs.cpython-38.pyc │ │ │ ├── alias.py │ │ │ ├── bdist_egg.py │ │ │ ├── bdist_rpm.py │ │ │ ├── bdist_wininst.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── develop.py │ │ │ ├── dist_info.py │ │ │ ├── easy_install.py │ │ │ ├── egg_info.py │ │ │ ├── install.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── launcher manifest.xml │ │ │ ├── py36compat.py │ │ │ ├── register.py │ │ │ ├── rotate.py │ │ │ ├── saveopts.py │ │ │ ├── sdist.py │ │ │ ├── setopt.py │ │ │ ├── test.py │ │ │ ├── upload.py │ │ │ └── upload_docs.py │ │ ├── config.py │ │ ├── dep_util.py │ │ ├── depends.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ ├── glob.py │ │ ├── gui-32.exe │ │ ├── gui-64.exe │ │ ├── gui.exe │ │ ├── installer.py │ │ ├── launch.py │ │ ├── lib2to3_ex.py │ │ ├── monkey.py │ │ ├── msvc.py │ │ ├── namespaces.py │ │ ├── package_index.py │ │ ├── py27compat.py │ │ ├── py31compat.py │ │ ├── py33compat.py │ │ ├── py34compat.py │ │ ├── sandbox.py │ │ ├── script (dev).tmpl │ │ ├── script.tmpl │ │ ├── site-patch.py │ │ ├── ssl_support.py │ │ ├── unicode_utils.py │ │ ├── version.py │ │ ├── wheel.py │ │ └── windows_support.py │ │ ├── tesseract_ocr-0.0.1.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt │ │ └── tesseract_ocr.cpython-38-x86_64-linux-gnu.so ├── lib64 ├── pyvenv.cfg └── share │ └── python-wheels │ ├── CacheControl-0.12.6-py2.py3-none-any.whl │ ├── appdirs-1.4.3-py2.py3-none-any.whl │ ├── certifi-2019.11.28-py2.py3-none-any.whl │ ├── chardet-3.0.4-py2.py3-none-any.whl │ ├── colorama-0.4.3-py2.py3-none-any.whl │ ├── contextlib2-0.6.0-py2.py3-none-any.whl │ ├── distlib-0.3.0-py2.py3-none-any.whl │ ├── distro-1.4.0-py2.py3-none-any.whl │ ├── html5lib-1.0.1-py2.py3-none-any.whl │ ├── idna-2.8-py2.py3-none-any.whl │ ├── ipaddr-2.2.0-py2.py3-none-any.whl │ ├── lockfile-0.12.2-py2.py3-none-any.whl │ ├── msgpack-0.6.2-py2.py3-none-any.whl │ ├── packaging-20.3-py2.py3-none-any.whl │ ├── pep517-0.8.2-py2.py3-none-any.whl │ ├── pip-20.0.2-py2.py3-none-any.whl │ ├── pkg_resources-0.0.0-py2.py3-none-any.whl │ ├── progress-1.5-py2.py3-none-any.whl │ ├── pyparsing-2.4.6-py2.py3-none-any.whl │ ├── pytoml-0.1.21-py2.py3-none-any.whl │ ├── requests-2.22.0-py2.py3-none-any.whl │ ├── retrying-1.3.3-py2.py3-none-any.whl │ ├── setuptools-44.0.0-py2.py3-none-any.whl │ ├── six-1.14.0-py2.py3-none-any.whl │ ├── urllib3-1.25.8-py2.py3-none-any.whl │ ├── webencodings-0.5.1-py2.py3-none-any.whl │ └── wheel-0.34.2-py2.py3-none-any.whl ├── face_manipulation ├── README.md ├── face_detection.py └── get_roi_face.py ├── face_recognition ├── 7.png ├── README.md ├── Thumbs.db ├── base.py ├── cascades │ └── data │ │ ├── __init__.py │ │ ├── haarcascade_eye.xml │ │ ├── haarcascade_eye_tree_eyeglasses.xml │ │ ├── haarcascade_frontalcatface.xml │ │ ├── haarcascade_frontalcatface_extended.xml │ │ ├── haarcascade_frontalface_alt.xml │ │ ├── haarcascade_frontalface_alt2.xml │ │ ├── haarcascade_frontalface_alt_tree.xml │ │ ├── haarcascade_frontalface_default.xml │ │ ├── haarcascade_fullbody.xml │ │ ├── haarcascade_lefteye_2splits.xml │ │ ├── haarcascade_licence_plate_rus_16stages.xml │ │ ├── haarcascade_lowerbody.xml │ │ ├── haarcascade_profileface.xml │ │ ├── haarcascade_righteye_2splits.xml │ │ ├── haarcascade_russian_plate_number.xml │ │ ├── haarcascade_smile.xml │ │ └── haarcascade_upperbody.xml ├── faces-recognition.py ├── faces-train.py ├── filter.py ├── glasses_and_stash.py ├── images │ ├── benedict_cumberbatch │ │ ├── 1.jpeg │ │ ├── 2.jpeg │ │ ├── 3.jpeg │ │ ├── 4.jpeg │ │ ├── 5.jpeg │ │ └── 6.jpeg │ ├── davide │ │ ├── 9 │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 11.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 3jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.jpg │ │ └── 9.png │ └── pietro │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ └── 5.jpg ├── lessons │ ├── filter_lesson.py │ └── record-video.py ├── pickles │ └── face-labels.pickle ├── recognizers │ └── face-trainner.yml └── record.py ├── filters ├── erosion.py ├── gaussian_blur_with_pillow.py ├── guassian_blu.py └── median_filter.py ├── image_transformations ├── ROI.py ├── brightness_enhancement.py ├── convertToGray.py ├── geometric.py └── rgb_to_grapy_cv2.py ├── logistic_regression └── recognise_number.py ├── media ├── animal.jpeg ├── bwm.jpeg ├── crop.jpg ├── crop.png ├── digit.png ├── enhanced.sample5.png ├── gray_image.jpeg ├── image_cropped_cv2.jpeg ├── palermo.jpg ├── palermo2.jpeg └── ragusa.jpeg ├── open-cv ├── capture_video.py ├── crooping.py ├── dilation.py ├── dilation_result.jpg ├── erosion_opencv.py ├── face-detection.py ├── fetch_images_with_cv.py ├── haarcascade_eye.xml ├── haarcascade_eye_tree_eyeglasses.xml ├── haarcascade_frontalface_default.xml ├── haarcascade_smile.xml ├── matplotlib.py ├── sobel_edge_detection_cv2.py └── thresholding_cv2.py ├── openCVNotes.md ├── strich └── string.py ├── text-extraction ├── README.MD ├── test.png └── text-from-image.py ├── tutorial_medias ├── canny_edge.png ├── convulation.png ├── convulation_result.png ├── cropped_with_opencv.png ├── edge_detection.png ├── gaussianAppliation.png ├── harrisCorners.png ├── medianResult.png ├── superpixel.png └── types_of_thresholding.png └── videos ├── check_camera_availability.py └── get_video_from_camera.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/NOTES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/README.md -------------------------------------------------------------------------------- /books/Introduction_to_Computer_Vision_in_Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/books/Introduction_to_Computer_Vision_in_Python.pdf -------------------------------------------------------------------------------- /books/ProgrammingComputerVision_CCdraft.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/books/ProgrammingComputerVision_CCdraft.pdf -------------------------------------------------------------------------------- /books/[Packt Publishing] OpenCV Computer Vision with Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/books/[Packt Publishing] OpenCV Computer Vision with Python.pdf -------------------------------------------------------------------------------- /books/computer-vision-python-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/books/computer-vision-python-3.pdf -------------------------------------------------------------------------------- /books/edge_detection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/books/edge_detection.pdf -------------------------------------------------------------------------------- /books/prejects_ideas_with_computer_vision.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/books/prejects_ideas_with_computer_vision.pdf -------------------------------------------------------------------------------- /cascades/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_eye.xml -------------------------------------------------------------------------------- /cascades/haarcascade_eye_tree_eyeglasses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_eye_tree_eyeglasses.xml -------------------------------------------------------------------------------- /cascades/haarcascade_frontalcatface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_frontalcatface.xml -------------------------------------------------------------------------------- /cascades/haarcascade_frontalcatface_extended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_frontalcatface_extended.xml -------------------------------------------------------------------------------- /cascades/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /cascades/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /cascades/haarcascade_frontalface_alt_tree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_frontalface_alt_tree.xml -------------------------------------------------------------------------------- /cascades/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /cascades/haarcascade_fullbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_fullbody.xml -------------------------------------------------------------------------------- /cascades/haarcascade_lefteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_lefteye_2splits.xml -------------------------------------------------------------------------------- /cascades/haarcascade_licence_plate_rus_16stages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_licence_plate_rus_16stages.xml -------------------------------------------------------------------------------- /cascades/haarcascade_lowerbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_lowerbody.xml -------------------------------------------------------------------------------- /cascades/haarcascade_mcs_mouth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_mcs_mouth.xml -------------------------------------------------------------------------------- /cascades/haarcascade_profileface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_profileface.xml -------------------------------------------------------------------------------- /cascades/haarcascade_righteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_righteye_2splits.xml -------------------------------------------------------------------------------- /cascades/haarcascade_russian_plate_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_russian_plate_number.xml -------------------------------------------------------------------------------- /cascades/haarcascade_smile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_smile.xml -------------------------------------------------------------------------------- /cascades/haarcascade_smile1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_smile1.xml -------------------------------------------------------------------------------- /cascades/haarcascade_upperbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_upperbody.xml -------------------------------------------------------------------------------- /cascades/haarcascade_wallclock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/cascades/haarcascade_wallclock.xml -------------------------------------------------------------------------------- /color_detection/extract_contours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/color_detection/extract_contours.py -------------------------------------------------------------------------------- /color_detection/normalized_graph_cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/color_detection/normalized_graph_cut.py -------------------------------------------------------------------------------- /color_detection/superpixels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/color_detection/superpixels.py -------------------------------------------------------------------------------- /color_detection/watershed_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/color_detection/watershed_algorithm.py -------------------------------------------------------------------------------- /corner_detection/harry_corner_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/corner_detection/harry_corner_detector.py -------------------------------------------------------------------------------- /edge_detection/canny_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/edge_detection/canny_algorithm.py -------------------------------------------------------------------------------- /edge_detection/sobel_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/edge_detection/sobel_algorithm.py -------------------------------------------------------------------------------- /env/bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/bin/Activate.ps1 -------------------------------------------------------------------------------- /env/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/bin/activate -------------------------------------------------------------------------------- /env/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/bin/activate.csh -------------------------------------------------------------------------------- /env/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/bin/activate.fish -------------------------------------------------------------------------------- /env/bin/cygdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/bin/cygdb -------------------------------------------------------------------------------- /env/bin/cython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/bin/cython -------------------------------------------------------------------------------- /env/bin/cythonize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/bin/cythonize -------------------------------------------------------------------------------- /env/bin/easy_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/bin/easy_install -------------------------------------------------------------------------------- /env/bin/easy_install-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/bin/easy_install-3.8 -------------------------------------------------------------------------------- /env/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/bin/pip -------------------------------------------------------------------------------- /env/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/bin/pip3 -------------------------------------------------------------------------------- /env/bin/pip3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/bin/pip3.8 -------------------------------------------------------------------------------- /env/bin/pytesseract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/bin/pytesseract -------------------------------------------------------------------------------- /env/bin/python: -------------------------------------------------------------------------------- 1 | python3 -------------------------------------------------------------------------------- /env/bin/python3: -------------------------------------------------------------------------------- 1 | /usr/bin/python3 -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython-0.29.20.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython-0.29.20.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython-0.29.20.dist-info/METADATA -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython-0.29.20.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython-0.29.20.dist-info/RECORD -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython-0.29.20.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython-0.29.20.dist-info/WHEEL -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Build/BuildExecutable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Build/BuildExecutable.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Build/Cythonize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Build/Cythonize.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Build/Dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Build/Dependencies.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Build/Distutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Build/Distutils.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Build/Inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Build/Inline.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Build/IpythonMagic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Build/IpythonMagic.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Build/Tests/TestCyCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Build/Tests/TestCyCache.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Build/Tests/TestInline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Build/Tests/TestInline.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Build/Tests/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Build/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/CodeWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/CodeWriter.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Annotate.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/AutoDocTransforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/AutoDocTransforms.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Buffer.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Builtin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/CmdLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/CmdLine.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Code.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Code.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Code.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/CodeGeneration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/CodeGeneration.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/CythonScope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/CythonScope.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/DebugFlags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/DebugFlags.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Errors.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/ExprNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/ExprNodes.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/FlowControl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/FlowControl.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/FlowControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/FlowControl.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/FusedNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/FusedNode.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Future.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Interpreter.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Lexicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Lexicon.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Main.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/MemoryView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/MemoryView.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/ModuleNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/ModuleNode.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Naming.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Nodes.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Optimize.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Options.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Parsing.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Parsing.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Parsing.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Pipeline.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/PyrexTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/PyrexTypes.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Pythran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Pythran.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Scanning.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Scanning.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Scanning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Scanning.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/StringEncoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/StringEncoding.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Symtab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Symtab.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Tests/TestBuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Tests/TestBuffer.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Tests/TestCmdLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Tests/TestCmdLine.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Tests/TestGrammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Tests/TestGrammar.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Tests/TestMemView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Tests/TestMemView.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Tests/TestTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Tests/TestTypes.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Tests/TestVisitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Tests/TestVisitor.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Tests/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/TreeFragment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/TreeFragment.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/TreePath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/TreePath.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/TypeInference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/TypeInference.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/TypeSlots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/TypeSlots.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/UtilNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/UtilNodes.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/UtilityCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/UtilityCode.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Version.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Visitor.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Visitor.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/Visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Compiler/Visitor.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Compiler/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Coverage.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Debugger/Cygdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Debugger/Cygdb.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Debugger/DebugWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Debugger/DebugWriter.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Debugger/Tests/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Debugger/Tests/cfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Debugger/Tests/cfuncs.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Debugger/Tests/codefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Debugger/Tests/codefile -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Debugger/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Debugger/libcython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Debugger/libcython.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Debugger/libpython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Debugger/libpython.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Debugging.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Distutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Distutils/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Distutils/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Distutils/build_ext.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Distutils/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Distutils/extension.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Distutils/old_build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Distutils/old_build_ext.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_bool.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.bool cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_buffer.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.buffer cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_bytes.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.bytes cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_complex.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.complex cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_dict.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.dict cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_exc.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.exc cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_float.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.float cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_getargs.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.getargs cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_int.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.int cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_list.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.list cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_long.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.long cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_mem.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.mem cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_method.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.method cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_module.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.module cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_number.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.number cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_ref.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.ref cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_set.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.set cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_tuple.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.tuple cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/python_type.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from cpython.type cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/stdio.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from libc.stdio cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/stdlib.pxd: -------------------------------------------------------------------------------- 1 | # Present for backwards compatibility 2 | from libc.stdlib cimport * 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/Deprecated/stl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/Deprecated/stl.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/__init__.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/array.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/array.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/bool.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/bool.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/buffer.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/buffer.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/bytes.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/bytes.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/ceval.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/ceval.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/cobject.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/cobject.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/complex.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/complex.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/datetime.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/datetime.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/dict.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/dict.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/exc.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/exc.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/float.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/float.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/function.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/function.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/getargs.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/getargs.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/instance.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/instance.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/int.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/int.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/iterator.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/iterator.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/list.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/list.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/long.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/long.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/mapping.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/mapping.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/mem.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/mem.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/method.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/method.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/module.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/module.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/number.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/number.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/object.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/object.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/pystate.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/pystate.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/pythread.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/pythread.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/ref.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/ref.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/sequence.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/sequence.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/set.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/set.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/slice.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/slice.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/string.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/string.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/tuple.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/tuple.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/type.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/type.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/unicode.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/unicode.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/version.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/version.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/cpython/weakref.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/cpython/weakref.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/__init__.pxd: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/errno.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libc/errno.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/float.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libc/float.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/limits.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libc/limits.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/locale.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libc/locale.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/math.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libc/math.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/setjmp.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libc/setjmp.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/signal.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libc/signal.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/stddef.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libc/stddef.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/stdint.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libc/stdint.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/stdio.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libc/stdio.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/stdlib.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libc/stdlib.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/string.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libc/string.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libc/time.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libc/time.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/__init__.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/algorithm.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/algorithm.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/cast.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/cast.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/complex.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/complex.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/deque.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/deque.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/iterator.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/iterator.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/limits.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/limits.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/list.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/list.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/map.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/map.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/memory.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/memory.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/pair.pxd: -------------------------------------------------------------------------------- 1 | from .utility cimport pair 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/queue.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/queue.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/set.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/set.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/stack.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/stack.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/string.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/string.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/typeindex.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/typeindex.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/typeinfo.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/typeinfo.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/utility.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/utility.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/libcpp/vector.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/libcpp/vector.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/numpy/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/numpy/__init__.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/numpy/math.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/numpy/math.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/openmp.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/openmp.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/__init__.pxd: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/dlfcn.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/dlfcn.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/fcntl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/fcntl.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/ioctl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/ioctl.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/mman.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/mman.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/resource.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/resource.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/select.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/select.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/signal.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/signal.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/stat.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/stat.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/stdio.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/stdio.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/stdlib.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/stdlib.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/strings.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/strings.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/time.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/time.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/types.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/types.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/unistd.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/unistd.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Includes/posix/wait.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Includes/posix/wait.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Plex/Actions.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Plex/Actions.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Plex/Actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Plex/Actions.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Plex/DFA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Plex/DFA.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Plex/Errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Plex/Errors.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Plex/Lexicons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Plex/Lexicons.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Plex/Machines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Plex/Machines.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Plex/Regexps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Plex/Regexps.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Plex/Scanners.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Plex/Scanners.pxd -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Plex/Scanners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Plex/Scanners.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Plex/Timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Plex/Timing.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Plex/Traditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Plex/Traditional.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Plex/Transitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Plex/Transitions.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Plex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Plex/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Runtime/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Runtime/refnanny.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Runtime/refnanny.pyx -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Shadow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Shadow.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/StringIOTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/StringIOTree.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Tempita/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Tempita/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Tempita/_looper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Tempita/_looper.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Tempita/_tempita.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Tempita/_tempita.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Tempita/compat3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Tempita/compat3.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/TestUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/TestUtils.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Tests/TestCodeWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Tests/TestCodeWriter.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Tests/TestCythonUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Tests/TestCythonUtils.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Tests/TestJediTyper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Tests/TestJediTyper.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Tests/TestStringIOTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Tests/TestStringIOTree.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Tests/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Tests/xmlrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Tests/xmlrunner.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/AsyncGen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/AsyncGen.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/Buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/Buffer.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/Builtins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/Builtins.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/CConvert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/CConvert.pyx -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/CMath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/CMath.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/Capsule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/Capsule.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/CommonStructures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/CommonStructures.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/Complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/Complex.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/Coroutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/Coroutine.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/CpdefEnums.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/CpdefEnums.pyx -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/CppConvert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/CppConvert.pyx -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/CppSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/CppSupport.cpp -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/CythonFunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/CythonFunction.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/Embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/Embed.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/Exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/Exceptions.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/ExtensionTypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/ExtensionTypes.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/FunctionArguments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/FunctionArguments.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/ImportExport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/ImportExport.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/MemoryView.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/MemoryView.pyx -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/MemoryView_C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/MemoryView_C.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/ModuleSetupCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/ModuleSetupCode.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/ObjectHandling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/ObjectHandling.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/Optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/Optimize.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/Overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/Overflow.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/Printing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/Printing.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/Profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/Profile.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/StringTools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/StringTools.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/TestCythonScope.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/TestCythonScope.pyx -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/TestUtilityLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/TestUtilityLoader.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/TypeConversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/TypeConversion.c -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utility/arrayarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utility/arrayarray.h -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/Utils.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Cython/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Cython/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/BdfFontFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/BdfFontFile.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/BlpImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/BlpImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/BmpImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/BmpImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/BufrStubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/BufrStubImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ContainerIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ContainerIO.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/CurImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/CurImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/DcxImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/DcxImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/DdsImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/DdsImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/EpsImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/EpsImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ExifTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ExifTags.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/FitsStubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/FitsStubImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/FliImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/FliImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/FontFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/FontFile.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/FpxImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/FpxImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/FtexImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/FtexImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/GbrImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/GbrImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/GdImageFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/GdImageFile.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/GifImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/GifImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/GimpGradientFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/GimpGradientFile.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/GimpPaletteFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/GimpPaletteFile.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/GribStubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/GribStubImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/Hdf5StubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/Hdf5StubImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/IcnsImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/IcnsImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/IcoImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/IcoImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/Image.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageChops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageChops.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageCms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageCms.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageColor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageColor.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageDraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageDraw.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageDraw2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageDraw2.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageEnhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageEnhance.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageFile.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageFilter.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageFont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageFont.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageGrab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageGrab.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageMath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageMath.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageMode.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageMorph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageMorph.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageOps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageOps.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImagePalette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImagePalette.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImagePath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImagePath.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageQt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageQt.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageSequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageSequence.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageShow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageShow.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageStat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageStat.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageTk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageTk.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageTransform.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImageWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImageWin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/ImtImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/ImtImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/IptcImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/IptcImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/Jpeg2KImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/Jpeg2KImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/JpegImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/JpegImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/JpegPresets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/JpegPresets.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/McIdasImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/McIdasImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/MicImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/MicImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/MpegImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/MpegImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/MpoImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/MpoImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/MspImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/MspImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/PSDraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/PSDraw.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/PaletteFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/PaletteFile.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/PalmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/PalmImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/PcdImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/PcdImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/PcfFontFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/PcfFontFile.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/PcxImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/PcxImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/PdfImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/PdfImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/PdfParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/PdfParser.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/PixarImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/PixarImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/PngImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/PngImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/PpmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/PpmImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/PsdImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/PsdImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/PyAccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/PyAccess.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/SgiImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/SgiImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/SpiderImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/SpiderImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/SunImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/SunImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/TarIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/TarIO.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/TgaImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/TgaImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/TiffImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/TiffImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/TiffTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/TiffTags.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/WalImageFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/WalImageFile.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/WebPImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/WebPImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/WmfImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/WmfImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/XVThumbImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/XVThumbImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/XbmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/XbmImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/XpmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/XpmImagePlugin.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/__main__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/__pycache__/Image.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/__pycache__/Image.cpython-38.pyc -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/__pycache__/TarIO.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/__pycache__/TarIO.cpython-38.pyc -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/__pycache__/_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/__pycache__/_util.cpython-38.pyc -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/_binary.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/_tkinter_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/_tkinter_finder.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/_util.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/_version.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/PIL/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/PIL/features.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Pillow-7.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Pillow-7.2.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Pillow-7.2.0.dist-info/LICENSE -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Pillow-7.2.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Pillow-7.2.0.dist-info/METADATA -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Pillow-7.2.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Pillow-7.2.0.dist-info/RECORD -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Pillow-7.2.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Pillow-7.2.0.dist-info/WHEEL -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Pillow-7.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PIL 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Pillow-7.2.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Pillow.libs/libXau-312dbc56.so.6.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Pillow.libs/libXau-312dbc56.so.6.0.0 -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Pillow.libs/libxcb-2dfad6c3.so.1.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Pillow.libs/libxcb-2dfad6c3.so.1.1.0 -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/Pillow.libs/libz-a147dcb0.so.1.2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/Pillow.libs/libz-a147dcb0.so.1.2.3 -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/__pycache__/cython.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/__pycache__/cython.cpython-38.pyc -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/cython.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/easy_install.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip-20.0.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip-20.0.2.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip-20.0.2.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip-20.0.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip-20.0.2.dist-info/METADATA -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip-20.0.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip-20.0.2.dist-info/RECORD -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip-20.0.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip-20.0.2.dist-info/WHEEL -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip-20.0.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/cli/autocompletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/cli/autocompletion.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/cli/base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/cli/base_command.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/cli/command_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/cli/command_context.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/cli/req_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/cli/req_command.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/cli/status_codes.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/completion.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/debug.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/download.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/install.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/uninstall.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/configuration.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/distributions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/distributions/base.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/distributions/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/distributions/sdist.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/distributions/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/distributions/wheel.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/index/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/index/collector.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/legacy_resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/legacy_resolve.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/locations.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/models/candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/models/candidate.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/models/index.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/models/scheme.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/models/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/models/wheel.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/network/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/network/auth.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/network/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/network/cache.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/network/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/network/download.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/network/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/network/session.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/network/utils.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/operations/check.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/pep425tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/pep425tags.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/req/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/req/constructors.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/req/req_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/req/req_tracker.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/filesystem.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/filetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/filetypes.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/packaging.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/typing.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/ui.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/unpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/unpacking.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_internal/wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_internal/wheel_builder.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pkg_resources-0.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pkg_resources/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pkg_resources/_vendor/appdirs.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pkg_resources/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pkg_resources/_vendor/six.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pkg_resources/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pkg_resources/extern/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pkg_resources/py31compat.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pytesseract-0.3.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pytesseract-0.3.4.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pytesseract-0.3.4.dist-info/WHEEL -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pytesseract-0.3.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pytesseract 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pytesseract/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pytesseract/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pytesseract/pytesseract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pytesseract/pytesseract.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pyximport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pyximport/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pyximport/pyxbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pyximport/pyxbuild.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/pyximport/pyximport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/pyximport/pyximport.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools-44.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools-44.0.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools-44.0.0.dist-info/WHEEL -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools-44.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools-44.0.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/_vendor/ordered_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/_vendor/ordered_set.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/_vendor/pyparsing.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/_vendor/six.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/bdist_egg.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/bdist_rpm.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/build_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/build_clib.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/build_ext.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/build_py.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/develop.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/dist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/dist_info.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/egg_info.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/install.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/install_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/install_lib.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/py36compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/py36compat.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/register.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/rotate.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/saveopts.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/setopt.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/upload.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/command/upload_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/command/upload_docs.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/extern/__init__.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/lib2to3_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/lib2to3_ex.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/py27compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/py27compat.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/py31compat.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/py33compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/py33compat.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/py34compat.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/site-patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/site-patch.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/ssl_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/ssl_support.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/lib/python3.8/site-packages/setuptools/windows_support.py -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/tesseract_ocr-0.0.1.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/tesseract_ocr-0.0.1.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/tesseract_ocr-0.0.1.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | cython 2 | -------------------------------------------------------------------------------- /env/lib/python3.8/site-packages/tesseract_ocr-0.0.1.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | tesseract_ocr 2 | -------------------------------------------------------------------------------- /env/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /env/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/pyvenv.cfg -------------------------------------------------------------------------------- /env/share/python-wheels/CacheControl-0.12.6-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/CacheControl-0.12.6-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/appdirs-1.4.3-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/appdirs-1.4.3-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/certifi-2019.11.28-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/certifi-2019.11.28-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/chardet-3.0.4-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/chardet-3.0.4-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/colorama-0.4.3-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/colorama-0.4.3-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/contextlib2-0.6.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/contextlib2-0.6.0-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/distlib-0.3.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/distlib-0.3.0-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/distro-1.4.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/distro-1.4.0-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/html5lib-1.0.1-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/html5lib-1.0.1-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/idna-2.8-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/idna-2.8-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/ipaddr-2.2.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/ipaddr-2.2.0-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/lockfile-0.12.2-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/lockfile-0.12.2-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/msgpack-0.6.2-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/msgpack-0.6.2-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/packaging-20.3-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/packaging-20.3-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/pep517-0.8.2-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/pep517-0.8.2-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/pip-20.0.2-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/pip-20.0.2-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/pkg_resources-0.0.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/pkg_resources-0.0.0-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/progress-1.5-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/progress-1.5-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/pyparsing-2.4.6-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/pyparsing-2.4.6-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/pytoml-0.1.21-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/pytoml-0.1.21-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/requests-2.22.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/requests-2.22.0-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/retrying-1.3.3-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/retrying-1.3.3-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/setuptools-44.0.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/setuptools-44.0.0-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/six-1.14.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/six-1.14.0-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/urllib3-1.25.8-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/urllib3-1.25.8-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/webencodings-0.5.1-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/webencodings-0.5.1-py2.py3-none-any.whl -------------------------------------------------------------------------------- /env/share/python-wheels/wheel-0.34.2-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/env/share/python-wheels/wheel-0.34.2-py2.py3-none-any.whl -------------------------------------------------------------------------------- /face_manipulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_manipulation/README.md -------------------------------------------------------------------------------- /face_manipulation/face_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_manipulation/face_detection.py -------------------------------------------------------------------------------- /face_manipulation/get_roi_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_manipulation/get_roi_face.py -------------------------------------------------------------------------------- /face_recognition/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/7.png -------------------------------------------------------------------------------- /face_recognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/README.md -------------------------------------------------------------------------------- /face_recognition/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/Thumbs.db -------------------------------------------------------------------------------- /face_recognition/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/base.py -------------------------------------------------------------------------------- /face_recognition/cascades/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/cascades/data/__init__.py -------------------------------------------------------------------------------- /face_recognition/cascades/data/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/cascades/data/haarcascade_eye.xml -------------------------------------------------------------------------------- /face_recognition/cascades/data/haarcascade_frontalcatface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/cascades/data/haarcascade_frontalcatface.xml -------------------------------------------------------------------------------- /face_recognition/cascades/data/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/cascades/data/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /face_recognition/cascades/data/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/cascades/data/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /face_recognition/cascades/data/haarcascade_fullbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/cascades/data/haarcascade_fullbody.xml -------------------------------------------------------------------------------- /face_recognition/cascades/data/haarcascade_lefteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/cascades/data/haarcascade_lefteye_2splits.xml -------------------------------------------------------------------------------- /face_recognition/cascades/data/haarcascade_lowerbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/cascades/data/haarcascade_lowerbody.xml -------------------------------------------------------------------------------- /face_recognition/cascades/data/haarcascade_profileface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/cascades/data/haarcascade_profileface.xml -------------------------------------------------------------------------------- /face_recognition/cascades/data/haarcascade_righteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/cascades/data/haarcascade_righteye_2splits.xml -------------------------------------------------------------------------------- /face_recognition/cascades/data/haarcascade_smile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/cascades/data/haarcascade_smile.xml -------------------------------------------------------------------------------- /face_recognition/cascades/data/haarcascade_upperbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/cascades/data/haarcascade_upperbody.xml -------------------------------------------------------------------------------- /face_recognition/faces-recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/faces-recognition.py -------------------------------------------------------------------------------- /face_recognition/faces-train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/faces-train.py -------------------------------------------------------------------------------- /face_recognition/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/filter.py -------------------------------------------------------------------------------- /face_recognition/glasses_and_stash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/glasses_and_stash.py -------------------------------------------------------------------------------- /face_recognition/images/benedict_cumberbatch/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/benedict_cumberbatch/1.jpeg -------------------------------------------------------------------------------- /face_recognition/images/benedict_cumberbatch/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/benedict_cumberbatch/2.jpeg -------------------------------------------------------------------------------- /face_recognition/images/benedict_cumberbatch/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/benedict_cumberbatch/3.jpeg -------------------------------------------------------------------------------- /face_recognition/images/benedict_cumberbatch/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/benedict_cumberbatch/4.jpeg -------------------------------------------------------------------------------- /face_recognition/images/benedict_cumberbatch/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/benedict_cumberbatch/5.jpeg -------------------------------------------------------------------------------- /face_recognition/images/benedict_cumberbatch/6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/benedict_cumberbatch/6.jpeg -------------------------------------------------------------------------------- /face_recognition/images/davide/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/1.jpg -------------------------------------------------------------------------------- /face_recognition/images/davide/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/10.jpg -------------------------------------------------------------------------------- /face_recognition/images/davide/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/11.jpg -------------------------------------------------------------------------------- /face_recognition/images/davide/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/11.png -------------------------------------------------------------------------------- /face_recognition/images/davide/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/13.png -------------------------------------------------------------------------------- /face_recognition/images/davide/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/14.png -------------------------------------------------------------------------------- /face_recognition/images/davide/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/15.png -------------------------------------------------------------------------------- /face_recognition/images/davide/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/2.jpg -------------------------------------------------------------------------------- /face_recognition/images/davide/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/3.jpg -------------------------------------------------------------------------------- /face_recognition/images/davide/3jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/3jpg -------------------------------------------------------------------------------- /face_recognition/images/davide/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/4.jpg -------------------------------------------------------------------------------- /face_recognition/images/davide/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/5.jpg -------------------------------------------------------------------------------- /face_recognition/images/davide/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/6.jpg -------------------------------------------------------------------------------- /face_recognition/images/davide/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/7.png -------------------------------------------------------------------------------- /face_recognition/images/davide/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/8.png -------------------------------------------------------------------------------- /face_recognition/images/davide/9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/9 -------------------------------------------------------------------------------- /face_recognition/images/davide/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/9.jpg -------------------------------------------------------------------------------- /face_recognition/images/davide/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/davide/9.png -------------------------------------------------------------------------------- /face_recognition/images/pietro/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/pietro/3.jpg -------------------------------------------------------------------------------- /face_recognition/images/pietro/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/pietro/4.jpg -------------------------------------------------------------------------------- /face_recognition/images/pietro/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/images/pietro/5.jpg -------------------------------------------------------------------------------- /face_recognition/lessons/filter_lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/lessons/filter_lesson.py -------------------------------------------------------------------------------- /face_recognition/lessons/record-video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/lessons/record-video.py -------------------------------------------------------------------------------- /face_recognition/pickles/face-labels.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/pickles/face-labels.pickle -------------------------------------------------------------------------------- /face_recognition/recognizers/face-trainner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/recognizers/face-trainner.yml -------------------------------------------------------------------------------- /face_recognition/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/face_recognition/record.py -------------------------------------------------------------------------------- /filters/erosion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/filters/erosion.py -------------------------------------------------------------------------------- /filters/gaussian_blur_with_pillow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/filters/gaussian_blur_with_pillow.py -------------------------------------------------------------------------------- /filters/guassian_blu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/filters/guassian_blu.py -------------------------------------------------------------------------------- /filters/median_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/filters/median_filter.py -------------------------------------------------------------------------------- /image_transformations/ROI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/image_transformations/ROI.py -------------------------------------------------------------------------------- /image_transformations/brightness_enhancement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/image_transformations/brightness_enhancement.py -------------------------------------------------------------------------------- /image_transformations/convertToGray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/image_transformations/convertToGray.py -------------------------------------------------------------------------------- /image_transformations/geometric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/image_transformations/geometric.py -------------------------------------------------------------------------------- /image_transformations/rgb_to_grapy_cv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/image_transformations/rgb_to_grapy_cv2.py -------------------------------------------------------------------------------- /logistic_regression/recognise_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/logistic_regression/recognise_number.py -------------------------------------------------------------------------------- /media/animal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/media/animal.jpeg -------------------------------------------------------------------------------- /media/bwm.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/media/bwm.jpeg -------------------------------------------------------------------------------- /media/crop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/media/crop.jpg -------------------------------------------------------------------------------- /media/crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/media/crop.png -------------------------------------------------------------------------------- /media/digit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/media/digit.png -------------------------------------------------------------------------------- /media/enhanced.sample5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/media/enhanced.sample5.png -------------------------------------------------------------------------------- /media/gray_image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/media/gray_image.jpeg -------------------------------------------------------------------------------- /media/image_cropped_cv2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/media/image_cropped_cv2.jpeg -------------------------------------------------------------------------------- /media/palermo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/media/palermo.jpg -------------------------------------------------------------------------------- /media/palermo2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/media/palermo2.jpeg -------------------------------------------------------------------------------- /media/ragusa.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/media/ragusa.jpeg -------------------------------------------------------------------------------- /open-cv/capture_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/capture_video.py -------------------------------------------------------------------------------- /open-cv/crooping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/crooping.py -------------------------------------------------------------------------------- /open-cv/dilation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/dilation.py -------------------------------------------------------------------------------- /open-cv/dilation_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/dilation_result.jpg -------------------------------------------------------------------------------- /open-cv/erosion_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/erosion_opencv.py -------------------------------------------------------------------------------- /open-cv/face-detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/face-detection.py -------------------------------------------------------------------------------- /open-cv/fetch_images_with_cv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/fetch_images_with_cv.py -------------------------------------------------------------------------------- /open-cv/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/haarcascade_eye.xml -------------------------------------------------------------------------------- /open-cv/haarcascade_eye_tree_eyeglasses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/haarcascade_eye_tree_eyeglasses.xml -------------------------------------------------------------------------------- /open-cv/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /open-cv/haarcascade_smile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/haarcascade_smile.xml -------------------------------------------------------------------------------- /open-cv/matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/matplotlib.py -------------------------------------------------------------------------------- /open-cv/sobel_edge_detection_cv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/sobel_edge_detection_cv2.py -------------------------------------------------------------------------------- /open-cv/thresholding_cv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/open-cv/thresholding_cv2.py -------------------------------------------------------------------------------- /openCVNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/openCVNotes.md -------------------------------------------------------------------------------- /strich/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/strich/string.py -------------------------------------------------------------------------------- /text-extraction/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/text-extraction/README.MD -------------------------------------------------------------------------------- /text-extraction/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/text-extraction/test.png -------------------------------------------------------------------------------- /text-extraction/text-from-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/text-extraction/text-from-image.py -------------------------------------------------------------------------------- /tutorial_medias/canny_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/tutorial_medias/canny_edge.png -------------------------------------------------------------------------------- /tutorial_medias/convulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/tutorial_medias/convulation.png -------------------------------------------------------------------------------- /tutorial_medias/convulation_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/tutorial_medias/convulation_result.png -------------------------------------------------------------------------------- /tutorial_medias/cropped_with_opencv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/tutorial_medias/cropped_with_opencv.png -------------------------------------------------------------------------------- /tutorial_medias/edge_detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/tutorial_medias/edge_detection.png -------------------------------------------------------------------------------- /tutorial_medias/gaussianAppliation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/tutorial_medias/gaussianAppliation.png -------------------------------------------------------------------------------- /tutorial_medias/harrisCorners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/tutorial_medias/harrisCorners.png -------------------------------------------------------------------------------- /tutorial_medias/medianResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/tutorial_medias/medianResult.png -------------------------------------------------------------------------------- /tutorial_medias/superpixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/tutorial_medias/superpixel.png -------------------------------------------------------------------------------- /tutorial_medias/types_of_thresholding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/tutorial_medias/types_of_thresholding.png -------------------------------------------------------------------------------- /videos/check_camera_availability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/videos/check_camera_availability.py -------------------------------------------------------------------------------- /videos/get_video_from_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omonimus1/super-computer-vision/HEAD/videos/get_video_from_camera.py --------------------------------------------------------------------------------