├── .gitignore ├── ColorTransferLib ├── Algorithms │ ├── Afifi21 │ │ ├── Afifi21.py │ │ ├── __init__.py │ │ └── third_party │ │ │ ├── LICENSE_NOTE │ │ │ └── color_aware_st.py │ ├── Afifi21_2 │ │ ├── Afifi21_2.py │ │ ├── __init__.py │ │ └── third_party │ │ │ ├── Histogram_loss.ipynb │ │ │ ├── LICENSE.md │ │ │ ├── ReHistoGAN │ │ │ ├── __init__.py │ │ │ └── rehistoGAN.py │ │ │ ├── histoGAN.py │ │ │ ├── histoGAN │ │ │ ├── __init__.py │ │ │ └── histoGAN.py │ │ │ ├── histogram_classes │ │ │ ├── LabHistBlock.py │ │ │ ├── RGBuvHistBlock.py │ │ │ ├── __init__.py │ │ │ └── rgChromaHistBlock.py │ │ │ ├── histogram_data │ │ │ └── histograms.npy │ │ │ ├── projection_gaussian.py │ │ │ ├── projection_to_latent.py │ │ │ ├── rehistoGAN.py │ │ │ ├── upsampling │ │ │ ├── BGU.m │ │ │ ├── bguFit.m │ │ │ ├── bguSlice.m │ │ │ ├── buildAffineSliceMatrix.m │ │ │ ├── buildApplyAffineModelMatrix.m │ │ │ ├── buildDerivXMatrix.m │ │ │ ├── buildDerivYMatrix.m │ │ │ ├── buildDerivZMatrix.m │ │ │ ├── buildSecondDerivZMatrix.m │ │ │ ├── buildSliceMatrix.m │ │ │ ├── columnize.m │ │ │ ├── demo_temp.m │ │ │ ├── getDefaultAffineGridSize.m │ │ │ ├── heightWidth.m │ │ │ ├── maxn.m │ │ │ ├── mse.m │ │ │ ├── rgb2luminance.m │ │ │ ├── runOnFilenames.m │ │ │ ├── showTestResults.m │ │ │ ├── testBGU.m │ │ │ └── testBGU_modified.m │ │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── color_transfer_MKL.py │ │ │ ├── diff_augment.py │ │ │ ├── face_preprocessing.py │ │ │ ├── imresize.py │ │ │ ├── pyramid_upsampling.py │ │ │ └── vggloss.py │ ├── Cao20 │ │ ├── Cao20.py │ │ ├── __init__.py │ │ └── third_party │ │ │ ├── LICENSE.txt │ │ │ ├── psnet.py │ │ │ ├── tf_ops.py │ │ │ └── utils.py │ ├── Chang03 │ │ ├── Chang03.py │ │ ├── FaissKNeighbors.py │ │ └── __init__.py │ ├── Deng22 │ │ ├── Deng22.py │ │ ├── __init__.py │ │ └── third_party │ │ │ ├── function.py │ │ │ ├── models │ │ │ ├── StyTR.py │ │ │ ├── ViT_helper.py │ │ │ ├── __init__.py │ │ │ ├── sampler.py │ │ │ └── transformer.py │ │ │ ├── readme.md │ │ │ ├── readme.txt │ │ │ ├── sampler.py │ │ │ ├── test.py │ │ │ ├── train.py │ │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── box_ops.py │ │ │ ├── misc.py │ │ │ └── plot_utils.py │ ├── Gatys15 │ │ ├── Gatys15.py │ │ ├── __init__.py │ │ └── third_party │ │ │ ├── LICENSE.txt │ │ │ └── Model.py │ ├── Goude21 │ │ ├── Goude21.py │ │ └── __init__.py │ ├── Grogan19 │ │ ├── Grogan19.py │ │ ├── __init__.py │ │ ├── l2e_tps_color_transfer.py │ │ └── third_party │ │ │ ├── LICENSE_NOTE │ │ │ ├── MATLAB │ │ │ ├── GaussTransform │ │ │ │ ├── CJianCost.c │ │ │ │ ├── GaussTransform.c │ │ │ │ ├── GaussTransform.m │ │ │ │ ├── GaussTransformCorr.m │ │ │ │ ├── memory_layout_note.h │ │ │ │ ├── mex_CJianCost.c │ │ │ │ ├── mex_GaussTransform.c │ │ │ │ ├── mex_GaussTransform.mex │ │ │ │ └── mg_initialiseMexFilesGT.m │ │ │ ├── Recolour │ │ │ │ ├── mg_recolourTarget.m │ │ │ │ └── mg_recolourTargetM.m │ │ │ ├── auxilliary │ │ │ │ ├── determine_border.m │ │ │ │ ├── set_bounds.m │ │ │ │ └── set_ctrl_pts.m │ │ │ ├── clustering │ │ │ │ ├── mg_applyKMeans.m │ │ │ │ └── mg_quantImage.m │ │ │ ├── gmmreg_L2_corr.m │ │ │ ├── gmmreg_rbf_L2.m │ │ │ ├── mg_initialize_config.m │ │ │ ├── mg_initialize_config_corr.m │ │ │ └── registration │ │ │ │ ├── compute_kernel.m │ │ │ │ ├── compute_rbf_kernel.m │ │ │ │ ├── gmmreg_L2_costfunc.m │ │ │ │ ├── gmmreg_L2_costfunc_corr.m │ │ │ │ ├── gmmreg_L2_rbf_costfunc.m │ │ │ │ ├── gmmreg_L2_tps_costfunc.m │ │ │ │ ├── gmmreg_L2_tps_costfunc_corr.m │ │ │ │ ├── quaternion2rotation.m │ │ │ │ ├── tps_compute_kernel.m │ │ │ │ ├── transform_by_affine2d.m │ │ │ │ ├── transform_by_affine3d.m │ │ │ │ ├── transform_by_rigid2d.m │ │ │ │ ├── transform_by_rigid3d.m │ │ │ │ ├── transform_by_tps.m │ │ │ │ └── transform_pointset.m │ │ │ ├── OpenMPCode │ │ │ ├── mex_mgRecolourParallelTPS.cpp │ │ │ ├── mex_mgRecolourParallelTPS.mex │ │ │ ├── mex_mgRecolourParallel_1.cpp │ │ │ ├── mex_mgRecolourParallel_1.mex │ │ │ ├── mex_mgRecolourParallel_Mask.cpp │ │ │ ├── mex_mgRecolourParallel_Mask.mex │ │ │ ├── mgRecolourPixels.m │ │ │ ├── mgRecolourPixelsRBF.m │ │ │ ├── mgRecolourPixels_Mask.m │ │ │ ├── mg_initialiseMexFilesOMP.m │ │ │ ├── mg_transform_tps_parallel.m │ │ │ └── octave-workspace │ │ │ ├── README.txt │ │ │ ├── ct_apply.m │ │ │ ├── ctfunction.m │ │ │ ├── ctfunction_corr.m │ │ │ ├── demo_test.m │ │ │ └── octave-workspace │ ├── Ji22 │ │ ├── Ji22.py │ │ ├── __init__.py │ │ └── third_party │ │ │ ├── .eggs │ │ │ ├── Cython-3.0.11-py3.10-linux-x86_64.egg │ │ │ │ ├── Cython │ │ │ │ │ ├── Build │ │ │ │ │ │ ├── BuildExecutable.py │ │ │ │ │ │ ├── Cythonize.py │ │ │ │ │ │ ├── Dependencies.py │ │ │ │ │ │ ├── Distutils.py │ │ │ │ │ │ ├── Inline.py │ │ │ │ │ │ ├── IpythonMagic.py │ │ │ │ │ │ ├── Tests │ │ │ │ │ │ │ ├── TestCyCache.py │ │ │ │ │ │ │ ├── TestCythonizeArgsParser.py │ │ │ │ │ │ │ ├── TestDependencies.py │ │ │ │ │ │ │ ├── TestInline.py │ │ │ │ │ │ │ ├── TestIpythonMagic.py │ │ │ │ │ │ │ ├── TestRecythonize.py │ │ │ │ │ │ │ ├── TestStripLiterals.py │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── CodeWriter.py │ │ │ │ │ ├── Compiler │ │ │ │ │ │ ├── AnalysedTreeTransforms.py │ │ │ │ │ │ ├── Annotate.py │ │ │ │ │ │ ├── AutoDocTransforms.py │ │ │ │ │ │ ├── Buffer.py │ │ │ │ │ │ ├── Builtin.py │ │ │ │ │ │ ├── CmdLine.py │ │ │ │ │ │ ├── Code.cpython-310-x86_64-linux-gnu.so │ │ │ │ │ │ ├── Code.pxd │ │ │ │ │ │ ├── Code.py │ │ │ │ │ │ ├── CodeGeneration.py │ │ │ │ │ │ ├── CythonScope.py │ │ │ │ │ │ ├── Dataclass.py │ │ │ │ │ │ ├── DebugFlags.py │ │ │ │ │ │ ├── Errors.py │ │ │ │ │ │ ├── ExprNodes.py │ │ │ │ │ │ ├── FlowControl.cpython-310-x86_64-linux-gnu.so │ │ │ │ │ │ ├── FlowControl.pxd │ │ │ │ │ │ ├── FlowControl.py │ │ │ │ │ │ ├── FusedNode.cpython-310-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.cpython-310-x86_64-linux-gnu.so │ │ │ │ │ │ ├── Parsing.pxd │ │ │ │ │ │ ├── Parsing.py │ │ │ │ │ │ ├── Pipeline.py │ │ │ │ │ │ ├── PyrexTypes.py │ │ │ │ │ │ ├── Pythran.py │ │ │ │ │ │ ├── Scanning.cpython-310-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 │ │ │ │ │ │ │ ├── TestScanning.py │ │ │ │ │ │ │ ├── TestSignatureMatching.py │ │ │ │ │ │ │ ├── TestStringEncoding.py │ │ │ │ │ │ │ ├── TestTreeFragment.py │ │ │ │ │ │ │ ├── TestTreePath.py │ │ │ │ │ │ │ ├── TestTypes.py │ │ │ │ │ │ │ ├── TestUtilityLoad.py │ │ │ │ │ │ │ ├── TestVisitor.py │ │ │ │ │ │ │ ├── Utils.py │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── TreeFragment.py │ │ │ │ │ │ ├── TreePath.py │ │ │ │ │ │ ├── TypeInference.py │ │ │ │ │ │ ├── TypeSlots.py │ │ │ │ │ │ ├── UFuncs.py │ │ │ │ │ │ ├── UtilNodes.py │ │ │ │ │ │ ├── UtilityCode.py │ │ │ │ │ │ ├── Version.py │ │ │ │ │ │ ├── Visitor.cpython-310-x86_64-linux-gnu.so │ │ │ │ │ │ ├── Visitor.pxd │ │ │ │ │ │ ├── Visitor.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── Coverage.py │ │ │ │ │ ├── Debugger │ │ │ │ │ │ ├── Cygdb.py │ │ │ │ │ │ ├── DebugWriter.py │ │ │ │ │ │ ├── Tests │ │ │ │ │ │ │ ├── TestLibCython.py │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── cfuncs.c │ │ │ │ │ │ │ ├── codefile │ │ │ │ │ │ │ ├── test_libcython_in_gdb.py │ │ │ │ │ │ │ └── test_libpython_in_gdb.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── libcython.py │ │ │ │ │ │ └── libpython.py │ │ │ │ │ ├── Debugging.py │ │ │ │ │ ├── Distutils │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── build_ext.py │ │ │ │ │ │ ├── extension.py │ │ │ │ │ │ └── old_build_ext.py │ │ │ │ │ ├── Includes │ │ │ │ │ │ ├── cpython │ │ │ │ │ │ │ ├── __init__.pxd │ │ │ │ │ │ │ ├── array.pxd │ │ │ │ │ │ │ ├── bool.pxd │ │ │ │ │ │ │ ├── buffer.pxd │ │ │ │ │ │ │ ├── bytearray.pxd │ │ │ │ │ │ │ ├── bytes.pxd │ │ │ │ │ │ │ ├── cellobject.pxd │ │ │ │ │ │ │ ├── ceval.pxd │ │ │ │ │ │ │ ├── cobject.pxd │ │ │ │ │ │ │ ├── codecs.pxd │ │ │ │ │ │ │ ├── complex.pxd │ │ │ │ │ │ │ ├── contextvars.pxd │ │ │ │ │ │ │ ├── conversion.pxd │ │ │ │ │ │ │ ├── datetime.pxd │ │ │ │ │ │ │ ├── descr.pxd │ │ │ │ │ │ │ ├── dict.pxd │ │ │ │ │ │ │ ├── exc.pxd │ │ │ │ │ │ │ ├── fileobject.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 │ │ │ │ │ │ │ ├── marshal.pxd │ │ │ │ │ │ │ ├── mem.pxd │ │ │ │ │ │ │ ├── memoryview.pxd │ │ │ │ │ │ │ ├── method.pxd │ │ │ │ │ │ │ ├── module.pxd │ │ │ │ │ │ │ ├── number.pxd │ │ │ │ │ │ │ ├── object.pxd │ │ │ │ │ │ │ ├── oldbuffer.pxd │ │ │ │ │ │ │ ├── pycapsule.pxd │ │ │ │ │ │ │ ├── pylifecycle.pxd │ │ │ │ │ │ │ ├── pyport.pxd │ │ │ │ │ │ │ ├── pystate.pxd │ │ │ │ │ │ │ ├── pythread.pxd │ │ │ │ │ │ │ ├── ref.pxd │ │ │ │ │ │ │ ├── sequence.pxd │ │ │ │ │ │ │ ├── set.pxd │ │ │ │ │ │ │ ├── slice.pxd │ │ │ │ │ │ │ ├── string.pxd │ │ │ │ │ │ │ ├── time.pxd │ │ │ │ │ │ │ ├── tuple.pxd │ │ │ │ │ │ │ ├── type.pxd │ │ │ │ │ │ │ ├── unicode.pxd │ │ │ │ │ │ │ ├── version.pxd │ │ │ │ │ │ │ └── weakref.pxd │ │ │ │ │ │ ├── libc │ │ │ │ │ │ │ ├── __init__.pxd │ │ │ │ │ │ │ ├── complex.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 │ │ │ │ │ │ │ ├── any.pxd │ │ │ │ │ │ │ ├── atomic.pxd │ │ │ │ │ │ │ ├── bit.pxd │ │ │ │ │ │ │ ├── cast.pxd │ │ │ │ │ │ │ ├── cmath.pxd │ │ │ │ │ │ │ ├── complex.pxd │ │ │ │ │ │ │ ├── deque.pxd │ │ │ │ │ │ │ ├── execution.pxd │ │ │ │ │ │ │ ├── forward_list.pxd │ │ │ │ │ │ │ ├── functional.pxd │ │ │ │ │ │ │ ├── iterator.pxd │ │ │ │ │ │ │ ├── limits.pxd │ │ │ │ │ │ │ ├── list.pxd │ │ │ │ │ │ │ ├── map.pxd │ │ │ │ │ │ │ ├── memory.pxd │ │ │ │ │ │ │ ├── numbers.pxd │ │ │ │ │ │ │ ├── numeric.pxd │ │ │ │ │ │ │ ├── optional.pxd │ │ │ │ │ │ │ ├── pair.pxd │ │ │ │ │ │ │ ├── queue.pxd │ │ │ │ │ │ │ ├── random.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 │ │ │ │ │ │ │ ├── uio.pxd │ │ │ │ │ │ │ ├── unistd.pxd │ │ │ │ │ │ │ └── wait.pxd │ │ │ │ │ ├── Plex │ │ │ │ │ │ ├── Actions.cpython-310-x86_64-linux-gnu.so │ │ │ │ │ │ ├── Actions.pxd │ │ │ │ │ │ ├── Actions.py │ │ │ │ │ │ ├── DFA.cpython-310-x86_64-linux-gnu.so │ │ │ │ │ │ ├── DFA.pxd │ │ │ │ │ │ ├── DFA.py │ │ │ │ │ │ ├── Errors.py │ │ │ │ │ │ ├── Lexicons.py │ │ │ │ │ │ ├── Machines.cpython-310-x86_64-linux-gnu.so │ │ │ │ │ │ ├── Machines.pxd │ │ │ │ │ │ ├── Machines.py │ │ │ │ │ │ ├── Regexps.py │ │ │ │ │ │ ├── Scanners.cpython-310-x86_64-linux-gnu.so │ │ │ │ │ │ ├── Scanners.pxd │ │ │ │ │ │ ├── Scanners.py │ │ │ │ │ │ ├── Transitions.cpython-310-x86_64-linux-gnu.so │ │ │ │ │ │ ├── Transitions.pxd │ │ │ │ │ │ ├── Transitions.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── Runtime │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── refnanny.cpython-310-x86_64-linux-gnu.so │ │ │ │ │ │ └── refnanny.pyx │ │ │ │ │ ├── Shadow.py │ │ │ │ │ ├── Shadow.pyi │ │ │ │ │ ├── StringIOTree.cpython-310-x86_64-linux-gnu.so │ │ │ │ │ ├── StringIOTree.py │ │ │ │ │ ├── Tempita │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _looper.py │ │ │ │ │ │ ├── _tempita.cpython-310-x86_64-linux-gnu.so │ │ │ │ │ │ ├── _tempita.py │ │ │ │ │ │ └── compat3.py │ │ │ │ │ ├── TestUtils.py │ │ │ │ │ ├── Tests │ │ │ │ │ │ ├── TestCodeWriter.py │ │ │ │ │ │ ├── TestCythonUtils.py │ │ │ │ │ │ ├── TestJediTyper.py │ │ │ │ │ │ ├── TestShadow.py │ │ │ │ │ │ ├── TestStringIOTree.py │ │ │ │ │ │ ├── TestTestUtils.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── xmlrunner.py │ │ │ │ │ ├── Utility │ │ │ │ │ │ ├── AsyncGen.c │ │ │ │ │ │ ├── Buffer.c │ │ │ │ │ │ ├── Builtins.c │ │ │ │ │ │ ├── CConvert.pyx │ │ │ │ │ │ ├── CMath.c │ │ │ │ │ │ ├── CommonStructures.c │ │ │ │ │ │ ├── Complex.c │ │ │ │ │ │ ├── Coroutine.c │ │ │ │ │ │ ├── CpdefEnums.pyx │ │ │ │ │ │ ├── CppConvert.pyx │ │ │ │ │ │ ├── CppSupport.cpp │ │ │ │ │ │ ├── CythonFunction.c │ │ │ │ │ │ ├── Dataclasses.c │ │ │ │ │ │ ├── Dataclasses.py │ │ │ │ │ │ ├── Embed.c │ │ │ │ │ │ ├── Exceptions.c │ │ │ │ │ │ ├── ExtensionTypes.c │ │ │ │ │ │ ├── FunctionArguments.c │ │ │ │ │ │ ├── ImportExport.c │ │ │ │ │ │ ├── MemoryView.pyx │ │ │ │ │ │ ├── MemoryView_C.c │ │ │ │ │ │ ├── ModuleSetupCode.c │ │ │ │ │ │ ├── NumpyImportArray.c │ │ │ │ │ │ ├── ObjectHandling.c │ │ │ │ │ │ ├── Optimize.c │ │ │ │ │ │ ├── Overflow.c │ │ │ │ │ │ ├── Printing.c │ │ │ │ │ │ ├── Profile.c │ │ │ │ │ │ ├── StringTools.c │ │ │ │ │ │ ├── TestCyUtilityLoader.pyx │ │ │ │ │ │ ├── TestCythonScope.pyx │ │ │ │ │ │ ├── TestUtilityLoader.c │ │ │ │ │ │ ├── TypeConversion.c │ │ │ │ │ │ ├── UFuncs.pyx │ │ │ │ │ │ ├── UFuncs_C.c │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── arrayarray.h │ │ │ │ │ ├── Utils.cpython-310-x86_64-linux-gnu.so │ │ │ │ │ ├── Utils.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── EGG-INFO │ │ │ │ │ ├── COPYING.txt │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── PKG-INFO │ │ │ │ │ ├── RECORD │ │ │ │ │ ├── WHEEL │ │ │ │ │ ├── entry_points.txt │ │ │ │ │ └── top_level.txt │ │ │ │ ├── cython.py │ │ │ │ └── pyximport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _pyximport2.py │ │ │ │ │ ├── _pyximport3.py │ │ │ │ │ ├── pyxbuild.py │ │ │ │ │ └── pyximport.py │ │ │ └── README.txt │ │ │ ├── INSTALL.md │ │ │ ├── LICENSE │ │ │ ├── LICENSE │ │ │ ├── LICENSE-NVIDIA │ │ │ ├── LICENSE-stylegan2-pytorch │ │ │ ├── LICENSE_SwinIR │ │ │ ├── LICENSE_pytorch-image-models │ │ │ └── README.md │ │ │ ├── License_ColorFormer.txt │ │ │ ├── MANIFEST.in │ │ │ ├── README.md │ │ │ ├── README_BasicSR.md │ │ │ ├── README_CN.md │ │ │ ├── VERSION │ │ │ ├── basicsr.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── not-zip-safe │ │ │ ├── requires.txt │ │ │ └── top_level.txt │ │ │ ├── basicsr │ │ │ ├── __init__.py │ │ │ ├── archs │ │ │ │ ├── GLHTransformer.py │ │ │ │ ├── __init__.py │ │ │ │ ├── arch_util.py │ │ │ │ ├── colorformer_arch.py │ │ │ │ ├── colorformer_arch_util.py │ │ │ │ ├── discriminator_arch.py │ │ │ │ └── vgg_arch.py │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── color_dataset.py │ │ │ │ ├── data_sampler.py │ │ │ │ ├── data_util.py │ │ │ │ ├── degradations.py │ │ │ │ ├── paired_image_dataset.py │ │ │ │ ├── prefetch_dataloader.py │ │ │ │ ├── transforms.py │ │ │ │ └── val_dataset.py │ │ │ ├── losses │ │ │ │ ├── __init__.py │ │ │ │ ├── loss_util.py │ │ │ │ └── losses.py │ │ │ ├── metrics │ │ │ │ ├── __init__.py │ │ │ │ ├── fid.py │ │ │ │ ├── metric_util.py │ │ │ │ ├── niqe.py │ │ │ │ ├── niqe_pris_params.npz │ │ │ │ └── psnr_ssim.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── base_model.py │ │ │ │ ├── lab_model.py │ │ │ │ ├── lr_scheduler.py │ │ │ │ └── sr_model.py │ │ │ ├── ops │ │ │ │ ├── __init__.py │ │ │ │ ├── dcn │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── deform_conv.py │ │ │ │ │ └── src │ │ │ │ │ │ ├── deform_conv_cuda.cpp │ │ │ │ │ │ ├── deform_conv_cuda_kernel.cu │ │ │ │ │ │ └── deform_conv_ext.cpp │ │ │ │ ├── fused_act │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fused_act.py │ │ │ │ │ └── src │ │ │ │ │ │ ├── fused_bias_act.cpp │ │ │ │ │ │ └── fused_bias_act_kernel.cu │ │ │ │ └── upfirdn2d │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── src │ │ │ │ │ ├── upfirdn2d.cpp │ │ │ │ │ └── upfirdn2d_kernel.cu │ │ │ │ │ └── upfirdn2d.py │ │ │ ├── test.py │ │ │ ├── train.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── diffjpeg.py │ │ │ │ ├── dist_util.py │ │ │ │ ├── download_util.py │ │ │ │ ├── face_util.py │ │ │ │ ├── file_client.py │ │ │ │ ├── flow_util.py │ │ │ │ ├── img_process_util.py │ │ │ │ ├── img_util.py │ │ │ │ ├── lmdb_util.py │ │ │ │ ├── logger.py │ │ │ │ ├── matlab_functions.py │ │ │ │ ├── misc.py │ │ │ │ ├── options.py │ │ │ │ └── registry.py │ │ │ └── version.py │ │ │ ├── figure │ │ │ └── colorformer.png │ │ │ ├── inference │ │ │ ├── __init__.py │ │ │ ├── benchmark.py │ │ │ └── inference_colorformer.py │ │ │ ├── memory_build │ │ │ ├── inference_GLH.py │ │ │ └── semantic_color_clustering.py │ │ │ ├── metric │ │ │ ├── colorful.py │ │ │ └── psnr.py │ │ │ ├── options │ │ │ └── train │ │ │ │ └── ECCV22 │ │ │ │ └── train_colorformer.yml │ │ │ ├── requirements.txt │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ └── test │ │ │ ├── in │ │ │ └── Las_Meninas.png │ │ │ └── out │ │ │ └── Las_Meninas.png │ ├── Kang23 │ │ ├── Kang23.py │ │ ├── __init__.py │ │ └── third_party │ │ │ ├── basicsr │ │ │ ├── __init__.py │ │ │ ├── archs │ │ │ │ ├── __init__.py │ │ │ │ ├── ddcolor_arch.py │ │ │ │ ├── ddcolor_arch_utils │ │ │ │ │ ├── __int__.py │ │ │ │ │ ├── convnext.py │ │ │ │ │ ├── position_encoding.py │ │ │ │ │ ├── transformer.py │ │ │ │ │ ├── transformer_utils.py │ │ │ │ │ ├── unet.py │ │ │ │ │ └── util.py │ │ │ │ ├── discriminator_arch.py │ │ │ │ └── vgg_arch.py │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── data_sampler.py │ │ │ │ ├── data_util.py │ │ │ │ ├── fmix.py │ │ │ │ ├── lab_dataset.py │ │ │ │ ├── prefetch_dataloader.py │ │ │ │ └── transforms.py │ │ │ ├── losses │ │ │ │ ├── __init__.py │ │ │ │ ├── loss_util.py │ │ │ │ └── losses.py │ │ │ ├── metrics │ │ │ │ ├── __init__.py │ │ │ │ ├── colorfulness.py │ │ │ │ ├── custom_fid.py │ │ │ │ ├── metric_util.py │ │ │ │ └── psnr_ssim.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── base_model.py │ │ │ │ ├── color_model.py │ │ │ │ └── lr_scheduler.py │ │ │ ├── train.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── color_enhance.py │ │ │ │ ├── diffjpeg.py │ │ │ │ ├── dist_util.py │ │ │ │ ├── download_util.py │ │ │ │ ├── face_util.py │ │ │ │ ├── file_client.py │ │ │ │ ├── flow_util.py │ │ │ │ ├── img_process_util.py │ │ │ │ ├── img_util.py │ │ │ │ ├── lmdb_util.py │ │ │ │ ├── logger.py │ │ │ │ ├── matlab_functions.py │ │ │ │ ├── misc.py │ │ │ │ ├── options.py │ │ │ │ └── registry.py │ │ │ ├── data_list │ │ │ └── get_meta_file.py │ │ │ ├── inference │ │ │ ├── colorization_pipeline.py │ │ │ └── colorization_pipeline_hf.py │ │ │ └── predict.py │ ├── Lee20 │ │ ├── Lee20.py │ │ ├── __init__.py │ │ └── third_party │ │ │ ├── LICENSE.txt │ │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── aligned_dataset_rand_seg_onlymap.py │ │ │ ├── base_data_loader.py │ │ │ ├── base_dataset.py │ │ │ ├── custom_dataset_data_loader.py │ │ │ ├── data_loader.py │ │ │ ├── image_folder.py │ │ │ ├── single_dataset.py │ │ │ └── unaligned_dataset.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── base_model.py │ │ │ ├── colorhistogram_model.py │ │ │ ├── models.py │ │ │ ├── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── architecture.py │ │ │ │ ├── block.py │ │ │ │ ├── iccv_model.py │ │ │ │ ├── sft_arch.py │ │ │ │ └── stdunet_woIN.py │ │ │ └── networks.py │ │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── get_data.py │ │ │ ├── html.py │ │ │ ├── image_pool.py │ │ │ ├── util.py │ │ │ └── visualizer.py │ ├── Luan17 │ │ ├── Luan17.py │ │ ├── __init__.py │ │ └── third_party │ │ │ ├── closed_form_matting.py │ │ │ ├── deep_photostyle.py │ │ │ ├── photo_style.py │ │ │ ├── smooth_local_affine.py │ │ │ └── vgg19 │ │ │ ├── __init__.py │ │ │ └── vgg.py │ ├── Pitie05 │ │ ├── Pitie05.py │ │ └── __init__.py │ ├── Qian10 │ │ ├── Qian10.py │ │ └── __init__.py │ ├── Reinhard01 │ │ ├── Reinhard01.py │ │ └── __init__.py │ ├── Reinhard07 │ │ ├── Reinhard07.py │ │ └── __init__.py │ ├── Su20 │ │ ├── Su20.py │ │ ├── __init__.py │ │ └── third_party │ │ │ ├── InstColorization.ipynb │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── README_TRAIN.md │ │ │ ├── download.py │ │ │ ├── env.yml │ │ │ ├── fusion_dataset.py │ │ │ ├── image_util.py │ │ │ ├── inference_bbox.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── base_model.py │ │ │ ├── fusion_model.py │ │ │ ├── networks.py │ │ │ └── train_model.py │ │ │ ├── options │ │ │ ├── __init__.py │ │ │ ├── base_options.py │ │ │ └── train_options.py │ │ │ ├── scripts │ │ │ ├── download_model.sh │ │ │ ├── install.sh │ │ │ ├── prepare_cocostuff.sh │ │ │ ├── prepare_train_box.sh │ │ │ ├── test_mask.sh │ │ │ └── train.sh │ │ │ ├── test_fusion.py │ │ │ ├── train.py │ │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── get_data.py │ │ │ ├── html.py │ │ │ ├── image_pool.py │ │ │ ├── util.py │ │ │ └── visualizer.py │ ├── Xiao06 │ │ ├── Xiao06.py │ │ └── __init__.py │ ├── Xiao09 │ │ ├── Xiao09.py │ │ └── __init__.py │ └── __init__.py ├── ColorTransfer.py ├── DataTypes │ ├── GaussianSplatting.py │ ├── Image.py │ ├── LightField.py │ ├── Mesh.py │ ├── Video.py │ ├── VolumetricVideo.py │ └── __init__.py ├── Evaluation │ ├── BD │ │ ├── BD.py │ │ └── __init__.py │ ├── BRISQUE │ │ ├── BRISQUE.py │ │ └── __init__.py │ ├── CF │ │ ├── CF.py │ │ └── __init__.py │ ├── CSS │ │ ├── CSS.py │ │ └── __init__.py │ ├── CTQM │ │ ├── CTQM.py │ │ └── __init__.py │ ├── Corr │ │ ├── Corr.py │ │ └── __init__.py │ ├── FSIM │ │ ├── FSIM.py │ │ └── __init__.py │ ├── GSSIM │ │ ├── GSSIM.py │ │ └── __init__.py │ ├── HI │ │ ├── HI.py │ │ └── __init__.py │ ├── IVEGSSIM │ │ ├── IVEGSSIM.py │ │ └── __init__.py │ ├── IVSSIM │ │ ├── IVSSIM.py │ │ └── __init__.py │ ├── LPIPS │ │ ├── LPIPS.py │ │ └── __init__.py │ ├── MSE │ │ ├── MSE.py │ │ └── __init__.py │ ├── MSSSIM │ │ ├── MSSSIM.py │ │ └── __init__.py │ ├── NIMA │ │ ├── LICENSE.txt │ │ ├── NIMA.py │ │ ├── __init__.py │ │ ├── predict.py │ │ └── third_party │ │ │ ├── LICENSE.txt │ │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── config_loader.py │ │ │ ├── data_generator.py │ │ │ ├── model_builder.py │ │ │ └── samples_loader.py │ │ │ ├── predict.py │ │ │ ├── tests │ │ │ ├── test_augmentation_utils.py │ │ │ ├── test_data_generator.py │ │ │ └── test_images │ │ │ │ ├── 42039.jpg │ │ │ │ ├── 42040.jpg │ │ │ │ ├── 42041.jpg │ │ │ │ ├── 42042.jpg │ │ │ │ └── 42044.jpg │ │ │ ├── trainer │ │ │ └── train.py │ │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── losses.py │ │ │ └── utils.py │ ├── NIQE │ │ ├── NIQE.py │ │ └── __init__.py │ ├── PSNR │ │ ├── PSNR.py │ │ └── __init__.py │ ├── RMSE │ │ ├── RMSE.py │ │ └── __init__.py │ ├── SSIM │ │ ├── SSIM.py │ │ └── __init__.py │ ├── VSI │ │ ├── VSI.py │ │ ├── __init__.py │ │ └── third_party │ │ │ ├── gbvs │ │ │ ├── algsrc │ │ │ │ ├── connectMatrix.m │ │ │ │ ├── distanceMatrix.m │ │ │ │ ├── formMapPyramid.m │ │ │ │ ├── getDims.m │ │ │ │ ├── graphsalapply.m │ │ │ │ ├── graphsalinit.m │ │ │ │ ├── indexmatrix.m │ │ │ │ ├── initGBVS.m │ │ │ │ ├── makeLocationMap.m │ │ │ │ ├── mexArrangeLinear.cc │ │ │ │ ├── mexArrangeLinear.mex │ │ │ │ ├── mexArrangeLinear.mexa64 │ │ │ │ ├── mexArrangeLinear.mexglx │ │ │ │ ├── mexArrangeLinear.mexmaci │ │ │ │ ├── mexArrangeLinear.mexmaci64 │ │ │ │ ├── mexArrangeLinear.mexw32 │ │ │ │ ├── mexArrangeLinear.mexw64 │ │ │ │ ├── mexAssignWeights.cc │ │ │ │ ├── mexAssignWeights.mex │ │ │ │ ├── mexAssignWeights.mexa64 │ │ │ │ ├── mexAssignWeights.mexglx │ │ │ │ ├── mexAssignWeights.mexmaci │ │ │ │ ├── mexAssignWeights.mexmaci64 │ │ │ │ ├── mexAssignWeights.mexw32 │ │ │ │ ├── mexAssignWeights.mexw64 │ │ │ │ ├── mexColumnNormalize.cc │ │ │ │ ├── mexColumnNormalize.mex │ │ │ │ ├── mexColumnNormalize.mexa64 │ │ │ │ ├── mexColumnNormalize.mexglx │ │ │ │ ├── mexColumnNormalize.mexmaci │ │ │ │ ├── mexColumnNormalize.mexmaci64 │ │ │ │ ├── mexColumnNormalize.mexw32 │ │ │ │ ├── mexColumnNormalize.mexw64 │ │ │ │ ├── mexSumOverScales.cc │ │ │ │ ├── mexSumOverScales.mex │ │ │ │ ├── mexSumOverScales.mexa64 │ │ │ │ ├── mexSumOverScales.mexglx │ │ │ │ ├── mexSumOverScales.mexmaci │ │ │ │ ├── mexSumOverScales.mexmaci64 │ │ │ │ ├── mexSumOverScales.mexw32 │ │ │ │ ├── mexSumOverScales.mexw64 │ │ │ │ ├── mexVectorToMap.cc │ │ │ │ ├── mexVectorToMap.mex │ │ │ │ ├── mexVectorToMap.mexa64 │ │ │ │ ├── mexVectorToMap.mexglx │ │ │ │ ├── mexVectorToMap.mexmaci │ │ │ │ ├── mexVectorToMap.mexmaci64 │ │ │ │ ├── mexVectorToMap.mexw32 │ │ │ │ ├── mexVectorToMap.mexw64 │ │ │ │ ├── namenodes.m │ │ │ │ ├── octave-workspace │ │ │ │ ├── partitionindex.m │ │ │ │ ├── principalEigenvectorRaw.m │ │ │ │ ├── simpledistance.m │ │ │ │ └── sparseness.m │ │ │ ├── compile │ │ │ │ ├── cleanmex.m │ │ │ │ ├── gbvs_compile.m │ │ │ │ └── gbvs_compile2.m │ │ │ ├── demo │ │ │ │ ├── demonstration.m │ │ │ │ ├── flicker_motion_demo.m │ │ │ │ └── simplest_demonstration.m │ │ │ ├── gbvs.m │ │ │ ├── gbvs_fast.m │ │ │ ├── gbvs_install.m │ │ │ ├── initcache │ │ │ │ ├── 17__24__m__2.mat │ │ │ │ ├── 18__24__m__2.mat │ │ │ │ ├── 21__32__m__2.mat │ │ │ │ ├── 23__24__m__2.mat │ │ │ │ ├── 23__32__m__2.mat │ │ │ │ ├── 24__18__m__2.mat │ │ │ │ ├── 24__23__m__2.mat │ │ │ │ ├── 24__24__m__2.mat │ │ │ │ ├── 24__32__m__2.mat │ │ │ │ ├── 27__32__m__2.mat │ │ │ │ ├── 27__40__m__2.mat │ │ │ │ ├── 28__32__m__2.mat │ │ │ │ ├── 29__30__m__2.mat │ │ │ │ ├── 29__32__m__2.mat │ │ │ │ ├── 30__28__m__2.mat │ │ │ │ ├── 30__29__m__2.mat │ │ │ │ ├── 30__40__m__2.mat │ │ │ │ ├── 32__24__m__2.mat │ │ │ │ ├── 32__28__m__2.mat │ │ │ │ ├── 32__31__m__2.mat │ │ │ │ ├── 32__32__m__2.mat │ │ │ │ ├── 35__40__m__2.mat │ │ │ │ ├── 40__30__m__2.mat │ │ │ │ ├── 40__38__m__2.mat │ │ │ │ └── 40__40__m__2.mat │ │ │ ├── ittikochmap.m │ │ │ ├── makeGBVSParams.m │ │ │ ├── octave-workspace │ │ │ ├── readme.txt │ │ │ ├── saltoolbox │ │ │ │ ├── attenuateBordersGBVS.m │ │ │ │ ├── makeGaborFilterGBVS.m │ │ │ │ ├── maxNormalizeStdGBVS.m │ │ │ │ ├── mexLocalMaximaGBVS.cc │ │ │ │ ├── mexLocalMaximaGBVS.mex │ │ │ │ ├── mexLocalMaximaGBVS.mexa64 │ │ │ │ ├── mexLocalMaximaGBVS.mexglx │ │ │ │ ├── mexLocalMaximaGBVS.mexmaci │ │ │ │ ├── mexLocalMaximaGBVS.mexmaci64 │ │ │ │ ├── mexLocalMaximaGBVS.mexw32 │ │ │ │ ├── mexLocalMaximaGBVS.mexw64 │ │ │ │ ├── mySubsample.cc │ │ │ │ ├── mySubsample.mex │ │ │ │ ├── mySubsample.mexa64 │ │ │ │ ├── mySubsample.mexglx │ │ │ │ ├── mySubsample.mexmaci │ │ │ │ ├── mySubsample.mexmaci64 │ │ │ │ ├── mySubsample.mexw32 │ │ │ │ ├── mySubsample.mexw64 │ │ │ │ └── safeDivideGBVS.m │ │ │ ├── samplepics │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ └── seq │ │ │ │ │ ├── 085.jpg │ │ │ │ │ ├── 086.jpg │ │ │ │ │ ├── 087.jpg │ │ │ │ │ └── 088.jpg │ │ │ └── util │ │ │ │ ├── areaROC.m │ │ │ │ ├── featureChannels │ │ │ │ ├── C_color.m │ │ │ │ ├── D_dklcolor.m │ │ │ │ ├── F_flicker.m │ │ │ │ ├── I_intensity.m │ │ │ │ ├── M_motion.m │ │ │ │ ├── O_orientation.m │ │ │ │ └── R_contrast.m │ │ │ │ ├── getBestRows.m │ │ │ │ ├── getFeatureMaps.m │ │ │ │ ├── getIntelligentThresholds.m │ │ │ │ ├── heatmap_overlay.m │ │ │ │ ├── invCenterBias.mat │ │ │ │ ├── linearmap.m │ │ │ │ ├── makeFixationMask.m │ │ │ │ ├── myContrast.cc │ │ │ │ ├── myContrast.mex │ │ │ │ ├── myContrast.mexa64 │ │ │ │ ├── myContrast.mexglx │ │ │ │ ├── myContrast.mexmaci │ │ │ │ ├── myContrast.mexmaci64 │ │ │ │ ├── myContrast.mexw32 │ │ │ │ ├── myContrast.mexw64 │ │ │ │ ├── mycombnk.m │ │ │ │ ├── myconv2.m │ │ │ │ ├── mygausskernel.m │ │ │ │ ├── mygetrgb.m │ │ │ │ ├── mymessage.m │ │ │ │ ├── mypath.mat │ │ │ │ ├── octave-workspace │ │ │ │ ├── padImage.m │ │ │ │ ├── padImageOld.m │ │ │ │ ├── rankimg.m │ │ │ │ ├── rgb2dkl.m │ │ │ │ ├── rocSal.m │ │ │ │ ├── rocScoreSaliencyVsFixations.m │ │ │ │ ├── shiftImage.m │ │ │ │ ├── show_imgnmap.m │ │ │ │ └── show_imgnmap2.m │ │ │ └── saliency_models │ │ │ ├── __init__.py │ │ │ ├── gbvs.py │ │ │ ├── helpers │ │ │ ├── __init__.py │ │ │ ├── colorFeatureMaps.py │ │ │ ├── gaborKernelCalculator.py │ │ │ ├── graphBasedActivation.py │ │ │ ├── ittiColorFeatureMaps.py │ │ │ ├── ittiKochCenterSurroundFeatures.py │ │ │ ├── localMaximas.py │ │ │ ├── markovChain.py │ │ │ └── orientationFeatureMaps.py │ │ │ ├── ittikochneibur.py │ │ │ └── resources │ │ │ └── 28__32__m__2.mat │ └── __init__.py ├── MANIFEST.in ├── Options │ ├── Afifi21.json │ ├── Afifi21_2.json │ ├── Cao20.json │ ├── Chang03.json │ ├── Deng22.json │ ├── Gatys15.json │ ├── Goude21.json │ ├── Grogan19.json │ ├── Ji22.json │ ├── Kang23.json │ ├── Lee20.json │ ├── Luan17.json │ ├── Pitie05.json │ ├── Qian10.json │ ├── Reinhard01.json │ ├── Reinhard07.json │ ├── Su20.json │ ├── Xiao06.json │ └── Xiao09.json ├── Utils │ ├── BaseOptions.py │ ├── ColorSpaces.py │ ├── Helper.py │ ├── Math.py │ └── __init__.py └── __init__.py ├── LICENSE ├── README.md ├── main.py ├── requirements ├── constraints.txt ├── requirements.txt └── requirements_old.txt ├── setup.py ├── test.py └── testdata ├── eval_test ├── GLO_Image_Image.png ├── Mona_Lisa.png └── The_Scream.png ├── gaussiansplatting └── plush.splat ├── images ├── 256_interior-00.png ├── 256_interior-01.png ├── 256_interior-02.png ├── 256_interior-03.png ├── 256_interior-04.png ├── 256_interior-05.png ├── 256_interior-06.png ├── 256_interior-07.png ├── 256_interior-08.png ├── 256_interior-09.png ├── Mona_Lisa.png ├── The_Kiss.png ├── The_Scream.png └── The_Starry_Night.png ├── lightfields └── legolow_reduced.mp4 ├── meshes ├── $mesh$Amethyst │ ├── Amethyst.mtl │ ├── Amethyst.obj │ └── Amethyst.png └── $mesh$Apple │ ├── Apple.mtl │ ├── Apple.obj │ └── Apple.png ├── pointclouds ├── Orange.ply └── Statue_Athena.ply ├── videos └── test_vid_00.mp4 └── volumetricvideos └── $volumetric$human ├── human.json ├── human_00000.jpg ├── human_00000.mtl ├── human_00000.obj ├── human_00001.jpg ├── human_00001.mtl └── human_00001.obj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/.gitignore -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21/Afifi21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21/Afifi21.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21/third_party/LICENSE_NOTE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21/third_party/LICENSE_NOTE -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21/third_party/color_aware_st.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21/third_party/color_aware_st.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/Afifi21_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/Afifi21_2.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/Histogram_loss.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/Histogram_loss.ipynb -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/LICENSE.md -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/ReHistoGAN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/ReHistoGAN/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/ReHistoGAN/rehistoGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/ReHistoGAN/rehistoGAN.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/histoGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/histoGAN.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/histoGAN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/histoGAN/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/histoGAN/histoGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/histoGAN/histoGAN.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/histogram_classes/LabHistBlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/histogram_classes/LabHistBlock.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/histogram_classes/RGBuvHistBlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/histogram_classes/RGBuvHistBlock.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/histogram_classes/__init__.py: -------------------------------------------------------------------------------- 1 | from . import RGBuvHistBlock -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/histogram_classes/rgChromaHistBlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/histogram_classes/rgChromaHistBlock.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/histogram_data/histograms.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/histogram_data/histograms.npy -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/projection_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/projection_gaussian.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/projection_to_latent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/projection_to_latent.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/rehistoGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/rehistoGAN.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/BGU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/BGU.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/bguFit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/bguFit.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/bguSlice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/bguSlice.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildAffineSliceMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildAffineSliceMatrix.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildApplyAffineModelMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildApplyAffineModelMatrix.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildDerivXMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildDerivXMatrix.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildDerivYMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildDerivYMatrix.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildDerivZMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildDerivZMatrix.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildSecondDerivZMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildSecondDerivZMatrix.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildSliceMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/buildSliceMatrix.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/columnize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/columnize.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/demo_temp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/demo_temp.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/getDefaultAffineGridSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/getDefaultAffineGridSize.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/heightWidth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/heightWidth.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/maxn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/maxn.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/mse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/mse.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/rgb2luminance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/rgb2luminance.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/runOnFilenames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/runOnFilenames.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/showTestResults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/showTestResults.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/testBGU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/testBGU.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/testBGU_modified.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/upsampling/testBGU_modified.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from . import face_preprocessing -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/utils/color_transfer_MKL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/utils/color_transfer_MKL.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/utils/diff_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/utils/diff_augment.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/utils/face_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/utils/face_preprocessing.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/utils/imresize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/utils/imresize.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/utils/pyramid_upsampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/utils/pyramid_upsampling.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Afifi21_2/third_party/utils/vggloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Afifi21_2/third_party/utils/vggloss.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Cao20/Cao20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Cao20/Cao20.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Cao20/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Cao20/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Cao20/third_party/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Cao20/third_party/LICENSE.txt -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Cao20/third_party/psnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Cao20/third_party/psnet.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Cao20/third_party/tf_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Cao20/third_party/tf_ops.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Cao20/third_party/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Cao20/third_party/utils.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Chang03/Chang03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Chang03/Chang03.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Chang03/FaissKNeighbors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Chang03/FaissKNeighbors.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Chang03/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Chang03/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/Deng22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/Deng22.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/third_party/function.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/models/StyTR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/third_party/models/StyTR.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/models/ViT_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/third_party/models/ViT_helper.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/models/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/third_party/models/sampler.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/models/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/third_party/models/transformer.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/third_party/readme.md -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/third_party/readme.txt -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/third_party/sampler.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/third_party/test.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/third_party/train.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/util/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/util/box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/third_party/util/box_ops.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/util/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/third_party/util/misc.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Deng22/third_party/util/plot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Deng22/third_party/util/plot_utils.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Gatys15/Gatys15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Gatys15/Gatys15.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Gatys15/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Gatys15/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Gatys15/third_party/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Gatys15/third_party/LICENSE.txt -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Gatys15/third_party/Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Gatys15/third_party/Model.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Goude21/Goude21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Goude21/Goude21.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Goude21/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Goude21/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/Grogan19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/Grogan19.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/l2e_tps_color_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/l2e_tps_color_transfer.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/LICENSE_NOTE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/LICENSE_NOTE -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/CJianCost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/CJianCost.c -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/GaussTransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/GaussTransform.c -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/GaussTransform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/GaussTransform.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/GaussTransformCorr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/GaussTransformCorr.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/memory_layout_note.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/memory_layout_note.h -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/mex_CJianCost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/mex_CJianCost.c -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/mex_GaussTransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/mex_GaussTransform.c -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/mex_GaussTransform.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/mex_GaussTransform.mex -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/mg_initialiseMexFilesGT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/GaussTransform/mg_initialiseMexFilesGT.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/Recolour/mg_recolourTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/Recolour/mg_recolourTarget.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/Recolour/mg_recolourTargetM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/Recolour/mg_recolourTargetM.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/auxilliary/determine_border.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/auxilliary/determine_border.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/auxilliary/set_bounds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/auxilliary/set_bounds.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/auxilliary/set_ctrl_pts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/auxilliary/set_ctrl_pts.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/clustering/mg_applyKMeans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/clustering/mg_applyKMeans.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/clustering/mg_quantImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/clustering/mg_quantImage.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/gmmreg_L2_corr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/gmmreg_L2_corr.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/gmmreg_rbf_L2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/gmmreg_rbf_L2.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/mg_initialize_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/mg_initialize_config.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/mg_initialize_config_corr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/mg_initialize_config_corr.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/compute_kernel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/compute_kernel.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/compute_rbf_kernel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/compute_rbf_kernel.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/gmmreg_L2_costfunc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/gmmreg_L2_costfunc.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/gmmreg_L2_costfunc_corr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/gmmreg_L2_costfunc_corr.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/gmmreg_L2_rbf_costfunc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/gmmreg_L2_rbf_costfunc.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/gmmreg_L2_tps_costfunc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/gmmreg_L2_tps_costfunc.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/gmmreg_L2_tps_costfunc_corr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/gmmreg_L2_tps_costfunc_corr.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/quaternion2rotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/quaternion2rotation.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/tps_compute_kernel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/tps_compute_kernel.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/transform_by_affine2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/transform_by_affine2d.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/transform_by_affine3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/transform_by_affine3d.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/transform_by_rigid2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/transform_by_rigid2d.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/transform_by_rigid3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/transform_by_rigid3d.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/transform_by_tps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/transform_by_tps.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/transform_pointset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/MATLAB/registration/transform_pointset.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mex_mgRecolourParallelTPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mex_mgRecolourParallelTPS.cpp -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mex_mgRecolourParallelTPS.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mex_mgRecolourParallelTPS.mex -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mex_mgRecolourParallel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mex_mgRecolourParallel_1.cpp -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mex_mgRecolourParallel_1.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mex_mgRecolourParallel_1.mex -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mex_mgRecolourParallel_Mask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mex_mgRecolourParallel_Mask.cpp -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mex_mgRecolourParallel_Mask.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mex_mgRecolourParallel_Mask.mex -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mgRecolourPixels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mgRecolourPixels.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mgRecolourPixelsRBF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mgRecolourPixelsRBF.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mgRecolourPixels_Mask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mgRecolourPixels_Mask.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mg_initialiseMexFilesOMP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mg_initialiseMexFilesOMP.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mg_transform_tps_parallel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/mg_transform_tps_parallel.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/OpenMPCode/octave-workspace: -------------------------------------------------------------------------------- 1 | Octave-1-L -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/README.txt -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/ct_apply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/ct_apply.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/ctfunction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/ctfunction.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/ctfunction_corr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/ctfunction_corr.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/demo_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/demo_test.m -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Grogan19/third_party/octave-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Grogan19/third_party/octave-workspace -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/Ji22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/Ji22.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/.eggs/Cython-3.0.11-py3.10-linux-x86_64.egg/Cython/Build/Tests/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/.eggs/Cython-3.0.11-py3.10-linux-x86_64.egg/Cython/Compiler/Tests/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/.eggs/Cython-3.0.11-py3.10-linux-x86_64.egg/Cython/Compiler/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/.eggs/Cython-3.0.11-py3.10-linux-x86_64.egg/Cython/Debugger/Tests/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/.eggs/Cython-3.0.11-py3.10-linux-x86_64.egg/Cython/Debugger/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/.eggs/Cython-3.0.11-py3.10-linux-x86_64.egg/Cython/Includes/libc/__init__.pxd: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/.eggs/Cython-3.0.11-py3.10-linux-x86_64.egg/Cython/Includes/libcpp/pair.pxd: -------------------------------------------------------------------------------- 1 | from .utility cimport pair 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/.eggs/Cython-3.0.11-py3.10-linux-x86_64.egg/Cython/Includes/posix/__init__.pxd: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/.eggs/Cython-3.0.11-py3.10-linux-x86_64.egg/Cython/Runtime/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/.eggs/Cython-3.0.11-py3.10-linux-x86_64.egg/Cython/Tests/__init__.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/.eggs/Cython-3.0.11-py3.10-linux-x86_64.egg/cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/.eggs/Cython-3.0.11-py3.10-linux-x86_64.egg/cython.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/.eggs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/.eggs/README.txt -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/INSTALL.md -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/LICENSE/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/LICENSE/LICENSE -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/LICENSE/LICENSE-NVIDIA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/LICENSE/LICENSE-NVIDIA -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/LICENSE/LICENSE-stylegan2-pytorch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/LICENSE/LICENSE-stylegan2-pytorch -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/LICENSE/LICENSE_SwinIR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/LICENSE/LICENSE_SwinIR -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/LICENSE/LICENSE_pytorch-image-models: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/LICENSE/LICENSE_pytorch-image-models -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/LICENSE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/LICENSE/README.md -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/License_ColorFormer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/License_ColorFormer.txt -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/MANIFEST.in -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/README.md -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/README_BasicSR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/README_BasicSR.md -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/README_CN.md -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/VERSION: -------------------------------------------------------------------------------- 1 | 1.3.4.6 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr.egg-info/PKG-INFO -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr.egg-info/requires.txt -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | basicsr 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/GLHTransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/GLHTransformer.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/arch_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/arch_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/colorformer_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/colorformer_arch.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/colorformer_arch_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/colorformer_arch_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/discriminator_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/discriminator_arch.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/vgg_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/archs/vgg_arch.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/color_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/color_dataset.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/data_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/data_sampler.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/data_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/data_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/degradations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/degradations.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/paired_image_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/paired_image_dataset.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/prefetch_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/prefetch_dataloader.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/transforms.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/val_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/data/val_dataset.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/losses/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/losses/loss_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/losses/loss_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/losses/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/losses/losses.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/metrics/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/metrics/fid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/metrics/fid.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/metrics/metric_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/metrics/metric_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/metrics/niqe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/metrics/niqe.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/metrics/niqe_pris_params.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/metrics/niqe_pris_params.npz -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/metrics/psnr_ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/metrics/psnr_ssim.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/models/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/models/base_model.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/models/lab_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/models/lab_model.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/models/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/models/lr_scheduler.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/models/sr_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/models/sr_model.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/dcn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/dcn/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/dcn/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/dcn/deform_conv.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/dcn/src/deform_conv_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/dcn/src/deform_conv_cuda.cpp -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/dcn/src/deform_conv_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/dcn/src/deform_conv_cuda_kernel.cu -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/dcn/src/deform_conv_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/dcn/src/deform_conv_ext.cpp -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/fused_act/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/fused_act/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/fused_act/fused_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/fused_act/fused_act.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/fused_act/src/fused_bias_act.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/fused_act/src/fused_bias_act.cpp -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/fused_act/src/fused_bias_act_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/fused_act/src/fused_bias_act_kernel.cu -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/upfirdn2d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/upfirdn2d/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/upfirdn2d/src/upfirdn2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/upfirdn2d/src/upfirdn2d.cpp -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/upfirdn2d/src/upfirdn2d_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/upfirdn2d/src/upfirdn2d_kernel.cu -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/upfirdn2d/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/ops/upfirdn2d/upfirdn2d.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/test.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/train.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/diffjpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/diffjpeg.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/dist_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/dist_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/download_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/download_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/face_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/face_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/file_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/file_client.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/flow_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/flow_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/img_process_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/img_process_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/img_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/img_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/lmdb_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/lmdb_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/logger.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/matlab_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/matlab_functions.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/misc.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/options.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/utils/registry.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/basicsr/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/basicsr/version.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/figure/colorformer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/figure/colorformer.png -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/inference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/inference/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/inference/benchmark.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/inference/inference_colorformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/inference/inference_colorformer.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/memory_build/inference_GLH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/memory_build/inference_GLH.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/memory_build/semantic_color_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/memory_build/semantic_color_clustering.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/metric/colorful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/metric/colorful.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/metric/psnr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/metric/psnr.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/options/train/ECCV22/train_colorformer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/options/train/ECCV22/train_colorformer.yml -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/requirements.txt -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/setup.cfg -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/setup.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/test/in/Las_Meninas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/test/in/Las_Meninas.png -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Ji22/third_party/test/out/Las_Meninas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Ji22/third_party/test/out/Las_Meninas.png -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/Kang23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/Kang23.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/ddcolor_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/ddcolor_arch.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/ddcolor_arch_utils/__int__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/ddcolor_arch_utils/convnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/ddcolor_arch_utils/convnext.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/ddcolor_arch_utils/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/ddcolor_arch_utils/transformer.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/ddcolor_arch_utils/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/ddcolor_arch_utils/unet.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/ddcolor_arch_utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/ddcolor_arch_utils/util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/discriminator_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/discriminator_arch.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/vgg_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/archs/vgg_arch.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/data_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/data_sampler.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/data_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/data_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/fmix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/fmix.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/lab_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/lab_dataset.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/prefetch_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/prefetch_dataloader.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/data/transforms.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/losses/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/losses/loss_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/losses/loss_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/losses/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/losses/losses.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/metrics/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/metrics/colorfulness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/metrics/colorfulness.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/metrics/custom_fid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/metrics/custom_fid.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/metrics/metric_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/metrics/metric_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/metrics/psnr_ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/metrics/psnr_ssim.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/models/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/models/base_model.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/models/color_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/models/color_model.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/models/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/models/lr_scheduler.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/train.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/color_enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/color_enhance.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/diffjpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/diffjpeg.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/dist_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/dist_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/download_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/download_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/face_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/face_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/file_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/file_client.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/flow_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/flow_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/img_process_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/img_process_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/img_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/img_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/lmdb_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/lmdb_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/logger.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/matlab_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/matlab_functions.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/misc.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/options.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/basicsr/utils/registry.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/data_list/get_meta_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/data_list/get_meta_file.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/inference/colorization_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/inference/colorization_pipeline.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/inference/colorization_pipeline_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/inference/colorization_pipeline_hf.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Kang23/third_party/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Kang23/third_party/predict.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/Lee20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/Lee20.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/LICENSE.txt -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/data/aligned_dataset_rand_seg_onlymap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/data/aligned_dataset_rand_seg_onlymap.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/data/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/data/base_data_loader.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/data/base_dataset.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/data/custom_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/data/custom_dataset_data_loader.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/data/data_loader.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/data/image_folder.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/data/single_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/data/single_dataset.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/data/unaligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/data/unaligned_dataset.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/models/base_model.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/models/colorhistogram_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/models/colorhistogram_model.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/models/models.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/models/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/models/modules/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/models/modules/architecture.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/models/modules/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/models/modules/block.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/models/modules/iccv_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/models/modules/iccv_model.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/models/modules/sft_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/models/modules/sft_arch.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/models/modules/stdunet_woIN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/models/modules/stdunet_woIN.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/models/networks.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/util/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/util/get_data.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/util/html.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/util/image_pool.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/util/util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Lee20/third_party/util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Lee20/third_party/util/visualizer.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Luan17/Luan17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Luan17/Luan17.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Luan17/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Luan17/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Luan17/third_party/closed_form_matting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Luan17/third_party/closed_form_matting.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Luan17/third_party/deep_photostyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Luan17/third_party/deep_photostyle.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Luan17/third_party/photo_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Luan17/third_party/photo_style.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Luan17/third_party/smooth_local_affine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Luan17/third_party/smooth_local_affine.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Luan17/third_party/vgg19/__init__.py: -------------------------------------------------------------------------------- 1 | from . import vgg 2 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Luan17/third_party/vgg19/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Luan17/third_party/vgg19/vgg.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Pitie05/Pitie05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Pitie05/Pitie05.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Pitie05/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Pitie05/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Qian10/Qian10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Qian10/Qian10.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Qian10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Qian10/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Reinhard01/Reinhard01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Reinhard01/Reinhard01.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Reinhard01/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Reinhard01/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Reinhard07/Reinhard07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Reinhard07/Reinhard07.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Reinhard07/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Reinhard07/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/Su20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/Su20.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/InstColorization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/InstColorization.ipynb -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/LICENSE -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/README.md -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/README_TRAIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/README_TRAIN.md -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/download.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/env.yml -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/fusion_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/fusion_dataset.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/image_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/image_util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/inference_bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/inference_bbox.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/models/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/models/base_model.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/models/fusion_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/models/fusion_model.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/models/networks.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/models/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/models/train_model.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/options/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/options/base_options.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/options/train_options.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/scripts/download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/scripts/download_model.sh -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/scripts/install.sh -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/scripts/prepare_cocostuff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/scripts/prepare_cocostuff.sh -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/scripts/prepare_train_box.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/scripts/prepare_train_box.sh -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/scripts/test_mask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/scripts/test_mask.sh -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/scripts/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/scripts/train.sh -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/test_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/test_fusion.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/train.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/util/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/util/get_data.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/util/html.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/util/image_pool.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/util/util.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Su20/third_party/util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Su20/third_party/util/visualizer.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Xiao06/Xiao06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Xiao06/Xiao06.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Xiao06/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Xiao06/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Xiao09/Xiao09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Xiao09/Xiao09.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/Xiao09/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/Xiao09/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Algorithms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Algorithms/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/ColorTransfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/ColorTransfer.py -------------------------------------------------------------------------------- /ColorTransferLib/DataTypes/GaussianSplatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/DataTypes/GaussianSplatting.py -------------------------------------------------------------------------------- /ColorTransferLib/DataTypes/Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/DataTypes/Image.py -------------------------------------------------------------------------------- /ColorTransferLib/DataTypes/LightField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/DataTypes/LightField.py -------------------------------------------------------------------------------- /ColorTransferLib/DataTypes/Mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/DataTypes/Mesh.py -------------------------------------------------------------------------------- /ColorTransferLib/DataTypes/Video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/DataTypes/Video.py -------------------------------------------------------------------------------- /ColorTransferLib/DataTypes/VolumetricVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/DataTypes/VolumetricVideo.py -------------------------------------------------------------------------------- /ColorTransferLib/DataTypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/BD/BD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/BD/BD.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/BD/__init__.py: -------------------------------------------------------------------------------- 1 | from . import BD -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/BRISQUE/BRISQUE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/BRISQUE/BRISQUE.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/BRISQUE/__init__.py: -------------------------------------------------------------------------------- 1 | from . import BRISQUE -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/CF/CF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/CF/CF.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/CF/__init__.py: -------------------------------------------------------------------------------- 1 | from . import CF -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/CSS/CSS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/CSS/CSS.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/CSS/__init__.py: -------------------------------------------------------------------------------- 1 | from . import CSS -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/CTQM/CTQM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/CTQM/CTQM.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/CTQM/__init__.py: -------------------------------------------------------------------------------- 1 | from . import CTQM -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/Corr/Corr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/Corr/Corr.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/Corr/__init__.py: -------------------------------------------------------------------------------- 1 | from . import Corr -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/FSIM/FSIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/FSIM/FSIM.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/FSIM/__init__.py: -------------------------------------------------------------------------------- 1 | from . import FSIM -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/GSSIM/GSSIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/GSSIM/GSSIM.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/GSSIM/__init__.py: -------------------------------------------------------------------------------- 1 | from . import GSSIM -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/HI/HI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/HI/HI.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/HI/__init__.py: -------------------------------------------------------------------------------- 1 | from . import HI -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/IVEGSSIM/IVEGSSIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/IVEGSSIM/IVEGSSIM.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/IVEGSSIM/__init__.py: -------------------------------------------------------------------------------- 1 | from . import IVEGSSIM -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/IVSSIM/IVSSIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/IVSSIM/IVSSIM.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/IVSSIM/__init__.py: -------------------------------------------------------------------------------- 1 | from . import IVSSIM -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/LPIPS/LPIPS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/LPIPS/LPIPS.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/LPIPS/__init__.py: -------------------------------------------------------------------------------- 1 | from . import LPIPS -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/MSE/MSE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/MSE/MSE.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/MSE/__init__.py: -------------------------------------------------------------------------------- 1 | from . import MSE -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/MSSSIM/MSSSIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/MSSSIM/MSSSIM.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/MSSSIM/__init__.py: -------------------------------------------------------------------------------- 1 | from . import MSSSIM -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/LICENSE.txt -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/NIMA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/NIMA.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/__init__.py: -------------------------------------------------------------------------------- 1 | from . import NIMA -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/predict.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/LICENSE.txt -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/handlers/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/handlers/config_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/handlers/config_loader.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/handlers/data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/handlers/data_generator.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/handlers/model_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/handlers/model_builder.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/handlers/samples_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/handlers/samples_loader.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/predict.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/tests/test_augmentation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/tests/test_augmentation_utils.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/tests/test_data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/tests/test_data_generator.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/tests/test_images/42039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/tests/test_images/42039.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/tests/test_images/42040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/tests/test_images/42040.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/tests/test_images/42041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/tests/test_images/42041.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/tests/test_images/42042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/tests/test_images/42042.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/tests/test_images/42044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/tests/test_images/42044.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/trainer/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/trainer/train.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from . import utils, losses -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/utils/losses.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIMA/third_party/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIMA/third_party/utils/utils.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIQE/NIQE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/NIQE/NIQE.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/NIQE/__init__.py: -------------------------------------------------------------------------------- 1 | from . import NIQE -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/PSNR/PSNR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/PSNR/PSNR.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/PSNR/__init__.py: -------------------------------------------------------------------------------- 1 | from . import PSNR -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/RMSE/RMSE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/RMSE/RMSE.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/RMSE/__init__.py: -------------------------------------------------------------------------------- 1 | from . import RMSE -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/SSIM/SSIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/SSIM/SSIM.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/SSIM/__init__.py: -------------------------------------------------------------------------------- 1 | from . import SSIM -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/VSI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/VSI.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/__init__.py: -------------------------------------------------------------------------------- 1 | from . import VSI -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/connectMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/connectMatrix.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/distanceMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/distanceMatrix.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/formMapPyramid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/formMapPyramid.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/getDims.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/getDims.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/graphsalapply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/graphsalapply.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/graphsalinit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/graphsalinit.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/indexmatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/indexmatrix.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/initGBVS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/initGBVS.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/makeLocationMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/makeLocationMap.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.cc -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mex -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mexa64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mexglx -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mexmaci -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mexmaci64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mexw32 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexArrangeLinear.mexw64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.cc -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mex -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mexa64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mexglx -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mexmaci -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mexmaci64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mexw32 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexAssignWeights.mexw64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.cc -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mex -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mexa64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mexglx -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mexmaci -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mexmaci64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mexw32 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexColumnNormalize.mexw64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.cc -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mex -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mexa64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mexglx -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mexmaci -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mexmaci64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mexw32 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexSumOverScales.mexw64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.cc -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mex -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mexa64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mexglx -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mexmaci -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mexmaci64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mexw32 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/mexVectorToMap.mexw64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/namenodes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/namenodes.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/octave-workspace: -------------------------------------------------------------------------------- 1 | Octave-1-L -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/partitionindex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/partitionindex.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/principalEigenvectorRaw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/principalEigenvectorRaw.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/simpledistance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/simpledistance.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/sparseness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/algsrc/sparseness.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/compile/cleanmex.m: -------------------------------------------------------------------------------- 1 | !rm */*.mex* -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/compile/gbvs_compile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/compile/gbvs_compile.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/compile/gbvs_compile2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/compile/gbvs_compile2.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/demo/demonstration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/demo/demonstration.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/demo/flicker_motion_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/demo/flicker_motion_demo.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/demo/simplest_demonstration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/demo/simplest_demonstration.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/gbvs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/gbvs.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/gbvs_fast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/gbvs_fast.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/gbvs_install.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/gbvs_install.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/17__24__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/17__24__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/18__24__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/18__24__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/21__32__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/21__32__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/23__24__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/23__24__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/23__32__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/23__32__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/24__18__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/24__18__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/24__23__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/24__23__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/24__24__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/24__24__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/24__32__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/24__32__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/27__32__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/27__32__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/27__40__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/27__40__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/28__32__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/28__32__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/29__30__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/29__30__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/29__32__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/29__32__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/30__28__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/30__28__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/30__29__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/30__29__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/30__40__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/30__40__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/32__24__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/32__24__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/32__28__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/32__28__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/32__31__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/32__31__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/32__32__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/32__32__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/35__40__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/35__40__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/40__30__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/40__30__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/40__38__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/40__38__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/40__40__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/initcache/40__40__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/ittikochmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/ittikochmap.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/makeGBVSParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/makeGBVSParams.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/octave-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/octave-workspace -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/readme.txt -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/attenuateBordersGBVS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/attenuateBordersGBVS.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/makeGaborFilterGBVS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/makeGaborFilterGBVS.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/maxNormalizeStdGBVS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/maxNormalizeStdGBVS.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.cc -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mex -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mexa64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mexglx -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mexmaci -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mexmaci64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mexw32 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mexLocalMaximaGBVS.mexw64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.cc -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mex -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mexa64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mexglx -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mexmaci -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mexmaci64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mexw32 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/mySubsample.mexw64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/safeDivideGBVS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/saltoolbox/safeDivideGBVS.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/1.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/2.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/3.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/4.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/5.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/seq/085.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/seq/085.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/seq/086.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/seq/086.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/seq/087.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/seq/087.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/seq/088.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/samplepics/seq/088.jpg -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/areaROC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/areaROC.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/C_color.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/C_color.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/D_dklcolor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/D_dklcolor.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/F_flicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/F_flicker.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/I_intensity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/I_intensity.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/M_motion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/M_motion.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/O_orientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/O_orientation.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/R_contrast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/featureChannels/R_contrast.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/getBestRows.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/getBestRows.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/getFeatureMaps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/getFeatureMaps.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/getIntelligentThresholds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/getIntelligentThresholds.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/heatmap_overlay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/heatmap_overlay.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/invCenterBias.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/invCenterBias.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/linearmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/linearmap.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/makeFixationMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/makeFixationMask.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.cc -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mex -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mexa64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mexglx -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mexmaci -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mexmaci64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mexw32 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myContrast.mexw64 -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/mycombnk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/mycombnk.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myconv2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/myconv2.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/mygausskernel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/mygausskernel.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/mygetrgb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/mygetrgb.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/mymessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/mymessage.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/mypath.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/mypath.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/octave-workspace: -------------------------------------------------------------------------------- 1 | Octave-1-L -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/padImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/padImage.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/padImageOld.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/padImageOld.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/rankimg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/rankimg.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/rgb2dkl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/rgb2dkl.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/rocSal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/rocSal.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/rocScoreSaliencyVsFixations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/rocScoreSaliencyVsFixations.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/shiftImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/shiftImage.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/show_imgnmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/show_imgnmap.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/show_imgnmap2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/gbvs/util/show_imgnmap2.m -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/saliency_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/saliency_models/gbvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/saliency_models/gbvs.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/colorFeatureMaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/colorFeatureMaps.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/gaborKernelCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/gaborKernelCalculator.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/graphBasedActivation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/graphBasedActivation.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/ittiColorFeatureMaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/ittiColorFeatureMaps.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/localMaximas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/localMaximas.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/markovChain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/markovChain.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/orientationFeatureMaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/saliency_models/helpers/orientationFeatureMaps.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/saliency_models/ittikochneibur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/saliency_models/ittikochneibur.py -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/VSI/third_party/saliency_models/resources/28__32__m__2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/VSI/third_party/saliency_models/resources/28__32__m__2.mat -------------------------------------------------------------------------------- /ColorTransferLib/Evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Evaluation/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/MANIFEST.in -------------------------------------------------------------------------------- /ColorTransferLib/Options/Afifi21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Afifi21.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Afifi21_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Afifi21_2.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Cao20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Cao20.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Chang03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Chang03.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Deng22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Deng22.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Gatys15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Gatys15.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Goude21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Goude21.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Grogan19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Grogan19.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Ji22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Ji22.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Kang23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Kang23.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Lee20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Lee20.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Luan17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Luan17.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Pitie05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Pitie05.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Qian10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Qian10.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Reinhard01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Reinhard01.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Reinhard07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Reinhard07.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Su20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Su20.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Xiao06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Xiao06.json -------------------------------------------------------------------------------- /ColorTransferLib/Options/Xiao09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Options/Xiao09.json -------------------------------------------------------------------------------- /ColorTransferLib/Utils/BaseOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Utils/BaseOptions.py -------------------------------------------------------------------------------- /ColorTransferLib/Utils/ColorSpaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Utils/ColorSpaces.py -------------------------------------------------------------------------------- /ColorTransferLib/Utils/Helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Utils/Helper.py -------------------------------------------------------------------------------- /ColorTransferLib/Utils/Math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Utils/Math.py -------------------------------------------------------------------------------- /ColorTransferLib/Utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/Utils/__init__.py -------------------------------------------------------------------------------- /ColorTransferLib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/ColorTransferLib/__init__.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/main.py -------------------------------------------------------------------------------- /requirements/constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/requirements/constraints.txt -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /requirements/requirements_old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/requirements/requirements_old.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/test.py -------------------------------------------------------------------------------- /testdata/eval_test/GLO_Image_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/eval_test/GLO_Image_Image.png -------------------------------------------------------------------------------- /testdata/eval_test/Mona_Lisa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/eval_test/Mona_Lisa.png -------------------------------------------------------------------------------- /testdata/eval_test/The_Scream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/eval_test/The_Scream.png -------------------------------------------------------------------------------- /testdata/gaussiansplatting/plush.splat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/gaussiansplatting/plush.splat -------------------------------------------------------------------------------- /testdata/images/256_interior-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/256_interior-00.png -------------------------------------------------------------------------------- /testdata/images/256_interior-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/256_interior-01.png -------------------------------------------------------------------------------- /testdata/images/256_interior-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/256_interior-02.png -------------------------------------------------------------------------------- /testdata/images/256_interior-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/256_interior-03.png -------------------------------------------------------------------------------- /testdata/images/256_interior-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/256_interior-04.png -------------------------------------------------------------------------------- /testdata/images/256_interior-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/256_interior-05.png -------------------------------------------------------------------------------- /testdata/images/256_interior-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/256_interior-06.png -------------------------------------------------------------------------------- /testdata/images/256_interior-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/256_interior-07.png -------------------------------------------------------------------------------- /testdata/images/256_interior-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/256_interior-08.png -------------------------------------------------------------------------------- /testdata/images/256_interior-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/256_interior-09.png -------------------------------------------------------------------------------- /testdata/images/Mona_Lisa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/Mona_Lisa.png -------------------------------------------------------------------------------- /testdata/images/The_Kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/The_Kiss.png -------------------------------------------------------------------------------- /testdata/images/The_Scream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/The_Scream.png -------------------------------------------------------------------------------- /testdata/images/The_Starry_Night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/images/The_Starry_Night.png -------------------------------------------------------------------------------- /testdata/lightfields/legolow_reduced.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/lightfields/legolow_reduced.mp4 -------------------------------------------------------------------------------- /testdata/meshes/$mesh$Amethyst/Amethyst.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/meshes/$mesh$Amethyst/Amethyst.mtl -------------------------------------------------------------------------------- /testdata/meshes/$mesh$Amethyst/Amethyst.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/meshes/$mesh$Amethyst/Amethyst.obj -------------------------------------------------------------------------------- /testdata/meshes/$mesh$Amethyst/Amethyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/meshes/$mesh$Amethyst/Amethyst.png -------------------------------------------------------------------------------- /testdata/meshes/$mesh$Apple/Apple.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/meshes/$mesh$Apple/Apple.mtl -------------------------------------------------------------------------------- /testdata/meshes/$mesh$Apple/Apple.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/meshes/$mesh$Apple/Apple.obj -------------------------------------------------------------------------------- /testdata/meshes/$mesh$Apple/Apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/meshes/$mesh$Apple/Apple.png -------------------------------------------------------------------------------- /testdata/pointclouds/Orange.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/pointclouds/Orange.ply -------------------------------------------------------------------------------- /testdata/pointclouds/Statue_Athena.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/pointclouds/Statue_Athena.ply -------------------------------------------------------------------------------- /testdata/videos/test_vid_00.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/videos/test_vid_00.mp4 -------------------------------------------------------------------------------- /testdata/volumetricvideos/$volumetric$human/human.json: -------------------------------------------------------------------------------- 1 | { 2 | "num_frames": 2 3 | } -------------------------------------------------------------------------------- /testdata/volumetricvideos/$volumetric$human/human_00000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/volumetricvideos/$volumetric$human/human_00000.jpg -------------------------------------------------------------------------------- /testdata/volumetricvideos/$volumetric$human/human_00000.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/volumetricvideos/$volumetric$human/human_00000.mtl -------------------------------------------------------------------------------- /testdata/volumetricvideos/$volumetric$human/human_00000.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/volumetricvideos/$volumetric$human/human_00000.obj -------------------------------------------------------------------------------- /testdata/volumetricvideos/$volumetric$human/human_00001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/volumetricvideos/$volumetric$human/human_00001.jpg -------------------------------------------------------------------------------- /testdata/volumetricvideos/$volumetric$human/human_00001.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/volumetricvideos/$volumetric$human/human_00001.mtl -------------------------------------------------------------------------------- /testdata/volumetricvideos/$volumetric$human/human_00001.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpotechius/ColorTransferLib/HEAD/testdata/volumetricvideos/$volumetric$human/human_00001.obj --------------------------------------------------------------------------------