├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS.md ├── CMakeLists.txt ├── COPYING.md ├── Dockerfile-env-python2 ├── Dockerfile-env-python3 ├── Dockerfile-python2 ├── Dockerfile-python3 ├── INSTALL-ext-fedora.md ├── INSTALL-ext-macos.md ├── INSTALL-ext-ubuntu.md ├── INSTALL-ext-windows.md ├── INSTALL.md ├── LICENSE.GPL ├── LICENSE.LGPL ├── LICENSE.TuttleOFX ├── Makefile ├── README.md ├── USAGE.md ├── applications ├── CMakeLists.txt ├── dir.doxygen ├── example │ ├── browsePlugins │ │ ├── SConscript │ │ └── src │ │ │ └── main.cpp │ ├── buffer │ │ ├── SConscript │ │ └── src │ │ │ └── main.cpp │ ├── canny │ │ ├── SConscript │ │ └── src │ │ │ └── main.cpp │ ├── cannyTerry │ │ ├── SConscript │ │ └── src │ │ │ └── main.cpp │ ├── io │ │ ├── SConscript │ │ └── src │ │ │ └── main.cpp │ ├── pythonBinding │ │ ├── README.md │ │ ├── demo_burn_timecode.py │ │ ├── demo_constant_merge.py │ │ ├── demo_progress_handle.py │ │ ├── demo_seq_to_movie.py │ │ ├── listPlugins.py │ │ ├── seq-info.py │ │ └── viewer.py │ ├── simpleInputBuffer │ │ ├── SConscript │ │ └── src │ │ │ └── main.cpp │ └── simpleNodes │ │ ├── SConscript │ │ └── src │ │ └── main.cpp ├── sam │ ├── CMakeLists.txt │ ├── common │ │ ├── samDoUtils.py │ │ └── samUtils.py │ ├── sam.py │ ├── sam_cp.py │ ├── sam_do.py │ ├── sam_ls.py │ ├── sam_mv.py │ └── sam_rm.py ├── script │ ├── CMakeLists.txt │ ├── README.md │ └── seqToMovie.py └── test │ └── samCommands.sh ├── cmake ├── FindCTL.cmake ├── FindFFmpeg.cmake ├── FindGLEW.cmake ├── FindIlmBase.cmake ├── FindLibCaca.cmake ├── FindLibRaw.cmake ├── FindNumpy.cmake ├── FindOpenColorIO.cmake ├── FindOpenEXR.cmake ├── FindOpenImageIO.cmake ├── FindOpenJpeg.cmake ├── FindSeExpr.cmake ├── FindavTranscoder.cmake ├── FindsequenceParser.cmake ├── TuttleMacros.cmake ├── UseOfxpp.cmake ├── UseTerry.cmake └── UseTuttleBoost.cmake ├── configure ├── doc ├── code │ ├── Doxyfile │ └── index.doxygen ├── header.txt ├── plugins │ ├── SConscript │ ├── checkboard.py │ ├── colorbars.py │ ├── colorcube.py │ ├── colorgradient.py │ ├── colorwheel.py │ ├── constant.py │ ├── generateFPSTestSequence.py │ ├── generators │ │ ├── __init__.py │ │ └── helper.py │ ├── movie │ │ ├── __init__.py │ │ └── movieGenerator.py │ └── ramp.py └── scripts │ ├── helpPlugins.py │ ├── img │ ├── blue.png │ ├── green.png │ ├── orange.png │ └── red.png │ ├── listPlugins.py │ ├── makePluginPage.py │ ├── plaintext2html.py │ ├── script.js │ └── style.css ├── libraries ├── boostHack │ └── boost │ │ └── gil │ │ ├── channel_algorithm.hpp │ │ ├── color_convert.hpp │ │ ├── extension │ │ ├── color │ │ │ ├── convert.hpp │ │ │ ├── gray_alpha.hpp │ │ │ ├── hsl.hpp │ │ │ ├── hsl_algorithms.hpp │ │ │ ├── hsv.hpp │ │ │ ├── lab.hpp │ │ │ ├── rgb_algorithms.hpp │ │ │ └── xyz.hpp │ │ └── toolbox │ │ │ ├── aligned.hpp │ │ │ ├── aligned.tests.cpp │ │ │ ├── blend.hpp │ │ │ ├── border.hpp │ │ │ ├── border.tests.cpp │ │ │ ├── channels.hpp │ │ │ ├── channels.tests.cpp │ │ │ ├── dynamic_images.hpp │ │ │ ├── fill.hpp │ │ │ ├── fill.tests.cpp │ │ │ ├── freegil.hpp │ │ │ ├── freegil.tests.cpp │ │ │ ├── gil_extensions.hpp │ │ │ ├── indexed_image.hpp │ │ │ ├── layers.hpp │ │ │ ├── layers.tests.cpp │ │ │ ├── lines.hpp │ │ │ ├── lines.tests.cpp │ │ │ ├── parallel_grid.hpp │ │ │ ├── parallel_grid.tests.cpp │ │ │ ├── pattern.hpp │ │ │ ├── pattern.tests.cpp │ │ │ ├── pixel_scale.hpp │ │ │ ├── rounded.hpp │ │ │ ├── rounded.tests.cpp │ │ │ ├── section.tests.cpp │ │ │ ├── sections.hpp │ │ │ ├── shrink.hpp │ │ │ ├── shrink.tests.cpp │ │ │ ├── test.cpp │ │ │ ├── wuline.hpp │ │ │ └── wuline.tests.cpp │ │ └── gil_all.hpp ├── dir.doxygen ├── openfxHack │ ├── Support │ │ ├── LICENSE │ │ ├── Library │ │ │ ├── ofxsCore.cpp │ │ │ ├── ofxsImageEffect.cpp │ │ │ ├── ofxsInteract.cpp │ │ │ ├── ofxsLog.cpp │ │ │ ├── ofxsMultiThread.cpp │ │ │ ├── ofxsParams.cpp │ │ │ ├── ofxsProperty.cpp │ │ │ ├── ofxsPropertyValidation.cpp │ │ │ └── ofxsSupportPrivate.h │ │ └── include │ │ │ ├── linuxSymbols │ │ │ ├── ofxsCore.h │ │ │ ├── ofxsImageEffect.h │ │ │ ├── ofxsInteract.h │ │ │ ├── ofxsLog.h │ │ │ ├── ofxsMemory.h │ │ │ ├── ofxsMessage.h │ │ │ ├── ofxsMultiThread.h │ │ │ ├── ofxsParam.h │ │ │ ├── ofxsUtilities.h │ │ │ └── osxSymbols │ └── include │ │ ├── extensions │ │ ├── nuke │ │ │ ├── camera.h │ │ │ └── fnPublicOfxExtensions.h │ │ └── tuttle │ │ │ ├── ofxGraphAPI.h │ │ │ ├── ofxMetadata.h │ │ │ ├── ofxParam.h │ │ │ ├── ofxParamAPI.h │ │ │ └── ofxReadWrite.h │ │ ├── ofxAttribute.h │ │ ├── ofxClip.h │ │ ├── ofxCore.h │ │ ├── ofxCore.i │ │ ├── ofxCorePlugin.h │ │ ├── ofxImageEffect.h │ │ ├── ofxInteract.h │ │ ├── ofxKeySyms.h │ │ ├── ofxMemory.h │ │ ├── ofxMessage.h │ │ ├── ofxMultiThread.h │ │ ├── ofxParam.h │ │ ├── ofxParametricParam.h │ │ ├── ofxPixels.h │ │ ├── ofxProgress.h │ │ ├── ofxProperty.h │ │ └── ofxTimeLine.h ├── terry │ ├── src │ │ └── terry │ │ │ ├── algorithm │ │ │ ├── for_each.hpp │ │ │ ├── pixel_by_channel.hpp │ │ │ ├── static_channel_recursion.hpp │ │ │ ├── transform_pixels.hpp │ │ │ └── transform_pixels_progress.hpp │ │ │ ├── basic_colors.hpp │ │ │ ├── channel.hpp │ │ │ ├── channel_view.hpp │ │ │ ├── clamp.hpp │ │ │ ├── color.hpp │ │ │ ├── color │ │ │ ├── components.hpp │ │ │ ├── gradient.hpp │ │ │ ├── invert.hpp │ │ │ ├── matrix.hpp │ │ │ ├── norm.hpp │ │ │ └── transfer.hpp │ │ │ ├── color_processed_view.hpp │ │ │ ├── colorspace │ │ │ ├── colorspace.hpp │ │ │ ├── colorspace │ │ │ │ ├── all.hpp │ │ │ │ ├── base.hpp │ │ │ │ ├── cmyk.hpp │ │ │ │ ├── hsl.hpp │ │ │ │ ├── lms.hpp │ │ │ │ ├── rgb.hpp │ │ │ │ └── xyz.hpp │ │ │ ├── gradation.hpp │ │ │ ├── layout.hpp │ │ │ ├── layout │ │ │ │ ├── XYZ.hpp │ │ │ │ ├── YPbPr.hpp │ │ │ │ ├── Yxy.hpp │ │ │ │ ├── all.hpp │ │ │ │ ├── cmyk.hpp │ │ │ │ ├── gray.hpp │ │ │ │ ├── hsl.hpp │ │ │ │ ├── hsv.hpp │ │ │ │ ├── lab.hpp │ │ │ │ ├── luv.hpp │ │ │ │ ├── rgb.hpp │ │ │ │ └── yuv.hpp │ │ │ ├── primaries.hpp │ │ │ └── temperature.hpp │ │ │ ├── copy.hpp │ │ │ ├── draw │ │ │ └── fill.hpp │ │ │ ├── filter │ │ │ ├── canny.hpp │ │ │ ├── convolve.hpp │ │ │ ├── correlate.hpp │ │ │ ├── detail │ │ │ │ ├── inner_product.hpp │ │ │ │ └── kernel.hpp │ │ │ ├── floodFill.hpp │ │ │ ├── gaussianKernel.hpp │ │ │ ├── localMaxima.hpp │ │ │ ├── motionVectors.hpp │ │ │ ├── sobel.hpp │ │ │ └── thinning.hpp │ │ │ ├── freetype │ │ │ ├── freegil.hpp │ │ │ ├── utilgil.hpp │ │ │ └── utilstl.hpp │ │ │ ├── generator │ │ │ ├── checkerboard.hpp │ │ │ ├── colorbars.hpp │ │ │ ├── colorcube.hpp │ │ │ ├── colorwheel.hpp │ │ │ ├── constant.hpp │ │ │ ├── rainbow.hpp │ │ │ └── ramp.hpp │ │ │ ├── geometry │ │ │ ├── affine.hpp │ │ │ ├── pinning.hpp │ │ │ └── subimage.hpp │ │ │ ├── globals.hpp │ │ │ ├── math.hpp │ │ │ ├── math │ │ │ ├── Matrix.hpp │ │ │ └── Rect.hpp │ │ │ ├── merge │ │ │ ├── MergeAbstractFunctor.hpp │ │ │ ├── MergeFunctors.hpp │ │ │ └── ViewsMerging.hpp │ │ │ ├── numeric │ │ │ ├── assign.hpp │ │ │ ├── assign_minmax.hpp │ │ │ ├── clamp.hpp │ │ │ ├── init.hpp │ │ │ ├── log.hpp │ │ │ ├── matrix.hpp │ │ │ ├── minmax.hpp │ │ │ ├── operations.hpp │ │ │ ├── operations_assign.hpp │ │ │ ├── pow.hpp │ │ │ ├── scalar.hpp │ │ │ ├── scale.hpp │ │ │ └── sqrt.hpp │ │ │ ├── openexr │ │ │ └── half.hpp │ │ │ ├── pixel_proxy.hpp │ │ │ ├── point │ │ │ ├── operations.hpp │ │ │ └── ostream.hpp │ │ │ ├── sampler │ │ │ ├── all.hpp │ │ │ ├── bc.hpp │ │ │ ├── bilinear.hpp │ │ │ ├── details.hpp │ │ │ ├── gaussian.hpp │ │ │ ├── lanczos.hpp │ │ │ ├── nearestNeighbor.hpp │ │ │ ├── resample.hpp │ │ │ ├── resample_progress.hpp │ │ │ ├── resample_subimage.hpp │ │ │ └── sampler.hpp │ │ │ └── typedefs.hpp │ └── tests │ │ ├── colorspace │ │ ├── SConscript │ │ └── main.cpp │ │ ├── filter │ │ ├── SConscript │ │ ├── canny.cpp │ │ ├── localMaxima.cpp │ │ ├── main.cpp │ │ ├── motionVectors.cpp │ │ └── thinning.cpp │ │ └── rect │ │ ├── SConscript │ │ └── main.cpp └── tuttle │ ├── CMakeLists.txt │ ├── pyTest │ ├── compute │ │ ├── __init__.py │ │ ├── testComputeTime.py │ │ ├── testMultipleCompute.py │ │ ├── testSimpleNodeList.py │ │ └── testThreadEnv.py │ ├── graph │ │ ├── __init__.py │ │ ├── testBigGraph.py │ │ ├── testBitDepth.py │ │ ├── testExportDot.py │ │ ├── testFps.py │ │ ├── testGraph.py │ │ ├── testGraphConnections.py │ │ └── testProcessGraph.py │ ├── hash │ │ ├── __init__.py │ │ ├── testGlobalHash.py │ │ └── testLocalHash.py │ ├── memory │ │ ├── __init__.py │ │ ├── testMemoryCache.py │ │ └── testUnusedNodes.py │ ├── numpy │ │ ├── testInputBufferCallback.py │ │ ├── testInputBufferWithNumpy.py │ │ └── testOutputBufferCallback.py │ ├── param │ │ ├── __init__.py │ │ ├── testParamProps.py │ │ ├── testParamValues.py │ │ └── testProperties.py │ └── plugin │ │ ├── __init__.py │ │ ├── testBrowsePlugins.py │ │ ├── testCheckerBlurWrite.py │ │ ├── testClamp.py │ │ ├── testGetBestPlugin.py │ │ ├── testMerge.py │ │ ├── testPluginDescription.py │ │ ├── testPluginInstance.py │ │ ├── testTimeShift.py │ │ └── testTranscodeVideo.py │ ├── src │ ├── dir.doxygen │ ├── namespace.doxygen │ └── tuttle │ │ ├── common │ │ ├── README │ │ ├── atomic.hpp │ │ ├── cbytearray.i │ │ ├── exceptions.cpp │ │ ├── exceptions.hpp │ │ ├── exceptions.i │ │ ├── global.i │ │ ├── math │ │ │ ├── minmax.hpp │ │ │ └── rectOp.hpp │ │ ├── ofx │ │ │ ├── core.cpp │ │ │ ├── core.hpp │ │ │ ├── imageEffect.cpp │ │ │ ├── imageEffect.hpp │ │ │ ├── imageEffect.i │ │ │ ├── utilities.cpp │ │ │ └── utilities.hpp │ │ ├── patterns │ │ │ ├── Singleton.hpp │ │ │ ├── Singleton.i │ │ │ └── StaticSingleton.hpp │ │ ├── system │ │ │ ├── compatibility.hpp │ │ │ ├── macos.cpp │ │ │ ├── macos.hpp │ │ │ ├── memoryInfo.cpp │ │ │ ├── memoryInfo.hpp │ │ │ ├── system.hpp │ │ │ └── windows │ │ │ │ ├── MemoryLeaks.hpp │ │ │ │ └── windows.h │ │ └── utils │ │ │ ├── FileGlobal.hpp │ │ │ ├── Formatter.cpp │ │ │ ├── Formatter.hpp │ │ │ ├── Formatter.i │ │ │ ├── applicationPath.cpp │ │ │ ├── applicationPath.hpp │ │ │ ├── backtrace.cpp │ │ │ ├── backtrace.hpp │ │ │ ├── boost_error_info_sstream.hpp │ │ │ ├── color.cpp │ │ │ ├── color.hpp │ │ │ ├── global.hpp │ │ │ └── math.hpp │ │ ├── host │ │ ├── Callback.hpp │ │ ├── Callback.i │ │ ├── ComputeOptions.cpp │ │ ├── ComputeOptions.hpp │ │ ├── ComputeOptions.i │ │ ├── Core.cpp │ │ ├── Core.hpp │ │ ├── Core.i │ │ ├── Graph.cpp │ │ ├── Graph.hpp │ │ ├── Graph.i │ │ ├── HostDescriptor.cpp │ │ ├── HostDescriptor.hpp │ │ ├── HostDescriptor.i │ │ ├── INode.cpp │ │ ├── INode.hpp │ │ ├── INode.i │ │ ├── ImageEffectNode.cpp │ │ ├── ImageEffectNode.hpp │ │ ├── ImageEffectNode.i │ │ ├── InputBufferWrapper.cpp │ │ ├── InputBufferWrapper.hpp │ │ ├── InputBufferWrapper.i │ │ ├── Node.cpp │ │ ├── Node.hpp │ │ ├── Node.i │ │ ├── NodeAtTimeKey.cpp │ │ ├── NodeAtTimeKey.hpp │ │ ├── NodeAtTimeKey.i │ │ ├── NodeHashContainer.cpp │ │ ├── NodeHashContainer.hpp │ │ ├── NodeHashContainer.i │ │ ├── NodeListArg.cpp │ │ ├── NodeListArg.hpp │ │ ├── NodeListArg.i │ │ ├── OutputBufferWrapper.cpp │ │ ├── OutputBufferWrapper.hpp │ │ ├── OutputBufferWrapper.i │ │ ├── OverlayInteract.cpp │ │ ├── OverlayInteract.hpp │ │ ├── OverlayInteract.i │ │ ├── Preferences.cpp │ │ ├── Preferences.hpp │ │ ├── Preferences.i │ │ ├── PreloadPlugins.hpp │ │ ├── ThreadEnv.cpp │ │ ├── ThreadEnv.hpp │ │ ├── ThreadEnv.i │ │ ├── attribute │ │ │ ├── AnimatedParam.hpp │ │ │ ├── AnimatedParamType.hpp │ │ │ ├── AnimatedParamType.i │ │ │ ├── Attribute.cpp │ │ │ ├── Attribute.hpp │ │ │ ├── Attribute.i │ │ │ ├── ClipImage.cpp │ │ │ ├── ClipImage.hpp │ │ │ ├── ClipImage.i │ │ │ ├── Image.cpp │ │ │ ├── Image.hpp │ │ │ ├── Image.i │ │ │ ├── Param.cpp │ │ │ ├── Param.hpp │ │ │ ├── Param.i │ │ │ ├── ParamBoolean.cpp │ │ │ ├── ParamBoolean.hpp │ │ │ ├── ParamBoolean.i │ │ │ ├── ParamChoice.cpp │ │ │ ├── ParamChoice.hpp │ │ │ ├── ParamChoice.i │ │ │ ├── ParamCustom.cpp │ │ │ ├── ParamCustom.hpp │ │ │ ├── ParamCustom.i │ │ │ ├── ParamDouble.cpp │ │ │ ├── ParamDouble.hpp │ │ │ ├── ParamDouble.i │ │ │ ├── ParamDouble2D.cpp │ │ │ ├── ParamDouble2D.hpp │ │ │ ├── ParamDouble2D.i │ │ │ ├── ParamDouble3D.cpp │ │ │ ├── ParamDouble3D.hpp │ │ │ ├── ParamDouble3D.i │ │ │ ├── ParamDoubleMultiDim.cpp │ │ │ ├── ParamDoubleMultiDim.hpp │ │ │ ├── ParamDoubleMultiDim.i │ │ │ ├── ParamGroup.cpp │ │ │ ├── ParamGroup.hpp │ │ │ ├── ParamGroup.i │ │ │ ├── ParamInteger.cpp │ │ │ ├── ParamInteger.hpp │ │ │ ├── ParamInteger.i │ │ │ ├── ParamInteger2D.cpp │ │ │ ├── ParamInteger2D.hpp │ │ │ ├── ParamInteger2D.i │ │ │ ├── ParamInteger3D.cpp │ │ │ ├── ParamInteger3D.hpp │ │ │ ├── ParamInteger3D.i │ │ │ ├── ParamPage.cpp │ │ │ ├── ParamPage.hpp │ │ │ ├── ParamPage.i │ │ │ ├── ParamPushButton.cpp │ │ │ ├── ParamPushButton.hpp │ │ │ ├── ParamPushButton.i │ │ │ ├── ParamRGB.cpp │ │ │ ├── ParamRGB.hpp │ │ │ ├── ParamRGB.i │ │ │ ├── ParamRGBA.cpp │ │ │ ├── ParamRGBA.hpp │ │ │ ├── ParamRGBA.i │ │ │ ├── ParamString.cpp │ │ │ ├── ParamString.hpp │ │ │ ├── ParamString.i │ │ │ ├── ValueInterpolator.cpp │ │ │ ├── ValueInterpolator.hpp │ │ │ ├── ValueInterpolator.i │ │ │ ├── allParams.hpp │ │ │ ├── allParams.i │ │ │ └── expression.hpp │ │ ├── diskCache │ │ │ ├── DiskCacheTranslator.cpp │ │ │ └── DiskCacheTranslator.hpp │ │ ├── exceptions.cpp │ │ ├── exceptions.hpp │ │ ├── exceptions.i │ │ ├── global.i │ │ ├── graph │ │ │ ├── GraphExporter.hpp │ │ │ ├── GraphExporter.tcc │ │ │ ├── IEdge.cpp │ │ │ ├── IEdge.hpp │ │ │ ├── IVertex.cpp │ │ │ ├── IVertex.hpp │ │ │ ├── InternalGraph.hpp │ │ │ ├── InternalGraph.tcc │ │ │ ├── ProcessEdge.cpp │ │ │ ├── ProcessEdge.hpp │ │ │ ├── ProcessEdgeAtTime.cpp │ │ │ ├── ProcessEdgeAtTime.hpp │ │ │ ├── ProcessGraph.cpp │ │ │ ├── ProcessGraph.hpp │ │ │ ├── ProcessGraph.i │ │ │ ├── ProcessVertex.cpp │ │ │ ├── ProcessVertex.hpp │ │ │ ├── ProcessVertexAtTime.cpp │ │ │ ├── ProcessVertexAtTime.hpp │ │ │ ├── ProcessVertexAtTimeData.cpp │ │ │ ├── ProcessVertexAtTimeData.hpp │ │ │ ├── ProcessVertexData.cpp │ │ │ ├── ProcessVertexData.hpp │ │ │ ├── ProcessVisitors.hpp │ │ │ ├── UEdge.cpp │ │ │ ├── UEdge.hpp │ │ │ ├── UVertex.cpp │ │ │ ├── UVertex.hpp │ │ │ └── Visitors.hpp │ │ ├── io.cpp │ │ ├── io.hpp │ │ ├── io.i │ │ ├── memory │ │ │ ├── IMemoryCache.cpp │ │ │ ├── IMemoryCache.hpp │ │ │ ├── IMemoryCache.i │ │ │ ├── IMemoryPool.cpp │ │ │ ├── IMemoryPool.hpp │ │ │ ├── IMemoryPool.i │ │ │ ├── LinkData.hpp │ │ │ ├── MemoryCache.cpp │ │ │ ├── MemoryCache.hpp │ │ │ ├── MemoryCache.i │ │ │ ├── MemoryPool.cpp │ │ │ ├── MemoryPool.hpp │ │ │ └── MemoryPool.i │ │ ├── ofx │ │ │ ├── OfxhBinary.cpp │ │ │ ├── OfxhBinary.hpp │ │ │ ├── OfxhBinary.i │ │ │ ├── OfxhCore.cpp │ │ │ ├── OfxhCore.hpp │ │ │ ├── OfxhException.hpp │ │ │ ├── OfxhException.i │ │ │ ├── OfxhHost.cpp │ │ │ ├── OfxhHost.hpp │ │ │ ├── OfxhHost.i │ │ │ ├── OfxhIObject.cpp │ │ │ ├── OfxhIObject.hpp │ │ │ ├── OfxhImage.cpp │ │ │ ├── OfxhImage.hpp │ │ │ ├── OfxhImage.i │ │ │ ├── OfxhImageEffectHost.cpp │ │ │ ├── OfxhImageEffectHost.hpp │ │ │ ├── OfxhImageEffectHost.i │ │ │ ├── OfxhImageEffectNode.cpp │ │ │ ├── OfxhImageEffectNode.hpp │ │ │ ├── OfxhImageEffectNode.i │ │ │ ├── OfxhImageEffectNodeBase.cpp │ │ │ ├── OfxhImageEffectNodeBase.hpp │ │ │ ├── OfxhImageEffectNodeBase.i │ │ │ ├── OfxhImageEffectNodeDescriptor.cpp │ │ │ ├── OfxhImageEffectNodeDescriptor.hpp │ │ │ ├── OfxhImageEffectNodeDescriptor.i │ │ │ ├── OfxhImageEffectPlugin.cpp │ │ │ ├── OfxhImageEffectPlugin.hpp │ │ │ ├── OfxhImageEffectPlugin.i │ │ │ ├── OfxhImageEffectPluginCache.cpp │ │ │ ├── OfxhImageEffectPluginCache.hpp │ │ │ ├── OfxhImageEffectPluginCache.i │ │ │ ├── OfxhImageEffectSuite.cpp │ │ │ ├── OfxhImageEffectSuite.hpp │ │ │ ├── OfxhInteract.cpp │ │ │ ├── OfxhInteract.hpp │ │ │ ├── OfxhInteract.i │ │ │ ├── OfxhInteractSuite.cpp │ │ │ ├── OfxhInteractSuite.hpp │ │ │ ├── OfxhMajorPlugin.cpp │ │ │ ├── OfxhMajorPlugin.hpp │ │ │ ├── OfxhMajorPlugin.i │ │ │ ├── OfxhMemory.cpp │ │ │ ├── OfxhMemory.hpp │ │ │ ├── OfxhMemorySuite.cpp │ │ │ ├── OfxhMemorySuite.hpp │ │ │ ├── OfxhMessage.hpp │ │ │ ├── OfxhMessageSuite.cpp │ │ │ ├── OfxhMessageSuite.hpp │ │ │ ├── OfxhMultiThreadSuite.cpp │ │ │ ├── OfxhMultiThreadSuite.hpp │ │ │ ├── OfxhParameterSuite.cpp │ │ │ ├── OfxhParameterSuite.hpp │ │ │ ├── OfxhPlugin.cpp │ │ │ ├── OfxhPlugin.hpp │ │ │ ├── OfxhPlugin.i │ │ │ ├── OfxhPluginAPICache.cpp │ │ │ ├── OfxhPluginAPICache.hpp │ │ │ ├── OfxhPluginAPICache.i │ │ │ ├── OfxhPluginBinary.cpp │ │ │ ├── OfxhPluginBinary.hpp │ │ │ ├── OfxhPluginBinary.i │ │ │ ├── OfxhPluginCache.cpp │ │ │ ├── OfxhPluginCache.hpp │ │ │ ├── OfxhPluginCache.i │ │ │ ├── OfxhPluginDesc.cpp │ │ │ ├── OfxhPluginDesc.hpp │ │ │ ├── OfxhPluginDesc.i │ │ │ ├── OfxhPluginLoadGuard.cpp │ │ │ ├── OfxhPluginLoadGuard.hpp │ │ │ ├── OfxhProgress.hpp │ │ │ ├── OfxhProgressSuite.cpp │ │ │ ├── OfxhProgressSuite.hpp │ │ │ ├── OfxhPropertySuite.cpp │ │ │ ├── OfxhPropertySuite.hpp │ │ │ ├── OfxhTimeline.hpp │ │ │ ├── OfxhTimelineSuite.cpp │ │ │ ├── OfxhTimelineSuite.hpp │ │ │ ├── OfxhUtilities.hpp │ │ │ ├── attribute │ │ │ │ ├── OfxhAttribute.cpp │ │ │ │ ├── OfxhAttribute.hpp │ │ │ │ ├── OfxhAttribute.i │ │ │ │ ├── OfxhAttributeAccessor.cpp │ │ │ │ ├── OfxhAttributeAccessor.hpp │ │ │ │ ├── OfxhAttributeAccessor.i │ │ │ │ ├── OfxhAttributeDescriptor.cpp │ │ │ │ ├── OfxhAttributeDescriptor.hpp │ │ │ │ ├── OfxhAttributeDescriptor.i │ │ │ │ ├── OfxhClip.cpp │ │ │ │ ├── OfxhClip.hpp │ │ │ │ ├── OfxhClip.i │ │ │ │ ├── OfxhClipAccessor.cpp │ │ │ │ ├── OfxhClipAccessor.hpp │ │ │ │ ├── OfxhClipAccessor.i │ │ │ │ ├── OfxhClipDescriptor.cpp │ │ │ │ ├── OfxhClipDescriptor.hpp │ │ │ │ ├── OfxhClipDescriptor.i │ │ │ │ ├── OfxhClipImage.cpp │ │ │ │ ├── OfxhClipImage.hpp │ │ │ │ ├── OfxhClipImage.i │ │ │ │ ├── OfxhClipImageAccessor.cpp │ │ │ │ ├── OfxhClipImageAccessor.hpp │ │ │ │ ├── OfxhClipImageAccessor.i │ │ │ │ ├── OfxhClipImageDescriptor.cpp │ │ │ │ ├── OfxhClipImageDescriptor.hpp │ │ │ │ ├── OfxhClipImageDescriptor.i │ │ │ │ ├── OfxhClipImageSet.cpp │ │ │ │ ├── OfxhClipImageSet.hpp │ │ │ │ ├── OfxhClipImageSet.i │ │ │ │ ├── OfxhKeyframeParam.cpp │ │ │ │ ├── OfxhKeyframeParam.hpp │ │ │ │ ├── OfxhKeyframeParam.i │ │ │ │ ├── OfxhMultiDimParam.cpp │ │ │ │ ├── OfxhMultiDimParam.hpp │ │ │ │ ├── OfxhMultiDimParam.i │ │ │ │ ├── OfxhParam.cpp │ │ │ │ ├── OfxhParam.hpp │ │ │ │ ├── OfxhParam.i │ │ │ │ ├── OfxhParamAccessor.cpp │ │ │ │ ├── OfxhParamAccessor.hpp │ │ │ │ ├── OfxhParamAccessor.i │ │ │ │ ├── OfxhParamBoolean.cpp │ │ │ │ ├── OfxhParamBoolean.hpp │ │ │ │ ├── OfxhParamBoolean.i │ │ │ │ ├── OfxhParamChoice.cpp │ │ │ │ ├── OfxhParamChoice.hpp │ │ │ │ ├── OfxhParamChoice.i │ │ │ │ ├── OfxhParamCustom.cpp │ │ │ │ ├── OfxhParamCustom.hpp │ │ │ │ ├── OfxhParamCustom.i │ │ │ │ ├── OfxhParamDescriptor.cpp │ │ │ │ ├── OfxhParamDescriptor.hpp │ │ │ │ ├── OfxhParamDescriptor.i │ │ │ │ ├── OfxhParamDouble.cpp │ │ │ │ ├── OfxhParamDouble.hpp │ │ │ │ ├── OfxhParamDouble.i │ │ │ │ ├── OfxhParamGroup.cpp │ │ │ │ ├── OfxhParamGroup.hpp │ │ │ │ ├── OfxhParamGroup.i │ │ │ │ ├── OfxhParamInteger.cpp │ │ │ │ ├── OfxhParamInteger.hpp │ │ │ │ ├── OfxhParamInteger.i │ │ │ │ ├── OfxhParamPage.cpp │ │ │ │ ├── OfxhParamPage.hpp │ │ │ │ ├── OfxhParamPage.i │ │ │ │ ├── OfxhParamPushButton.cpp │ │ │ │ ├── OfxhParamPushButton.hpp │ │ │ │ ├── OfxhParamPushButton.i │ │ │ │ ├── OfxhParamSet.cpp │ │ │ │ ├── OfxhParamSet.hpp │ │ │ │ ├── OfxhParamSet.i │ │ │ │ ├── OfxhParamSetAccessor.cpp │ │ │ │ ├── OfxhParamSetAccessor.hpp │ │ │ │ ├── OfxhParamSetAccessor.i │ │ │ │ ├── OfxhParamSetDescriptor.cpp │ │ │ │ ├── OfxhParamSetDescriptor.hpp │ │ │ │ ├── OfxhParamSetDescriptor.i │ │ │ │ ├── OfxhParamString.cpp │ │ │ │ ├── OfxhParamString.hpp │ │ │ │ └── OfxhParamString.i │ │ │ └── property │ │ │ │ ├── OfxhGetHook.cpp │ │ │ │ ├── OfxhGetHook.hpp │ │ │ │ ├── OfxhGetHook.i │ │ │ │ ├── OfxhNotifyHook.cpp │ │ │ │ ├── OfxhNotifyHook.hpp │ │ │ │ ├── OfxhNotifyHook.i │ │ │ │ ├── OfxhProperty.cpp │ │ │ │ ├── OfxhProperty.hpp │ │ │ │ ├── OfxhProperty.i │ │ │ │ ├── OfxhPropertyTemplate.cpp │ │ │ │ ├── OfxhPropertyTemplate.hpp │ │ │ │ ├── OfxhPropertyTemplate.i │ │ │ │ ├── OfxhSet.cpp │ │ │ │ ├── OfxhSet.hpp │ │ │ │ └── OfxhSet.i │ │ ├── serialization.hpp │ │ ├── thumbnail │ │ │ ├── ThumbnailDiskCache.cpp │ │ │ ├── ThumbnailDiskCache.hpp │ │ │ └── ThumbnailDiskCache.i │ │ ├── tuttle.i │ │ ├── version.hpp │ │ └── wrappers │ │ │ └── numpy.i │ │ ├── ioplugin │ │ └── context │ │ │ ├── ReaderDefinition.hpp │ │ │ ├── ReaderPlugin.cpp │ │ │ ├── ReaderPlugin.hpp │ │ │ ├── ReaderPluginFactory.hpp │ │ │ ├── WriterDefinition.hpp │ │ │ ├── WriterPlugin.cpp │ │ │ ├── WriterPlugin.hpp │ │ │ └── WriterPluginFactory.hpp │ │ ├── plugin │ │ ├── IProgress.cpp │ │ ├── IProgress.hpp │ │ ├── ImageEffectGilPlugin.cpp │ │ ├── ImageEffectGilPlugin.hpp │ │ ├── ImageEffectGilPlugin.tcc │ │ ├── ImageFilterProcessor.hpp │ │ ├── ImageGilFilterProcessor.hpp │ │ ├── ImageGilProcessor.hpp │ │ ├── ImageProcessor.hpp │ │ ├── NoProgress.cpp │ │ ├── NoProgress.hpp │ │ ├── OfxProgress.cpp │ │ ├── OfxProgress.hpp │ │ ├── Plugin.hpp │ │ ├── color │ │ │ ├── colorDefinitions.cpp │ │ │ └── colorDefinitions.hpp │ │ ├── context │ │ │ ├── Definition.hpp │ │ │ ├── GeneratorDefinition.hpp │ │ │ ├── GeneratorPlugin.cpp │ │ │ ├── GeneratorPlugin.hpp │ │ │ ├── GeneratorPluginFactory.hpp │ │ │ ├── ResolutionDefinition.hpp │ │ │ ├── SamplerDefinition.hpp │ │ │ ├── SamplerPlugin.cpp │ │ │ ├── SamplerPlugin.hpp │ │ │ └── SamplerPluginFactory.hpp │ │ ├── exceptions.cpp │ │ ├── exceptions.hpp │ │ ├── global.hpp │ │ ├── image.hpp │ │ ├── interact │ │ │ ├── Color.cpp │ │ │ ├── Color.hpp │ │ │ ├── Frame.cpp │ │ │ ├── Frame.hpp │ │ │ ├── InteractInfos.cpp │ │ │ ├── InteractInfos.hpp │ │ │ ├── InteractObject.cpp │ │ │ ├── InteractObject.hpp │ │ │ ├── InteractScene.cpp │ │ │ ├── InteractScene.hpp │ │ │ ├── IsActiveFunctor.cpp │ │ │ ├── IsActiveFunctor.hpp │ │ │ ├── ParamPoint.cpp │ │ │ ├── ParamPoint.hpp │ │ │ ├── ParamPointRelativePoint.cpp │ │ │ ├── ParamPointRelativePoint.hpp │ │ │ ├── ParamRectangleFromCenterSize.cpp │ │ │ ├── ParamRectangleFromCenterSize.hpp │ │ │ ├── ParamRectangleFromTwoCorners.cpp │ │ │ ├── ParamRectangleFromTwoCorners.hpp │ │ │ ├── ParamTangent.hpp │ │ │ ├── PointInteract.cpp │ │ │ ├── PointInteract.hpp │ │ │ ├── SelectionManipulator.cpp │ │ │ ├── SelectionManipulator.hpp │ │ │ ├── interact.hpp │ │ │ └── overlay.hpp │ │ ├── memory │ │ │ └── OfxAllocator.hpp │ │ ├── numeric │ │ │ ├── coordinateSystem.hpp │ │ │ ├── rectOp.hpp │ │ │ └── ublas │ │ │ │ └── invert_matrix.hpp │ │ ├── ofxToGil │ │ │ ├── all.hpp │ │ │ ├── color.hpp │ │ │ ├── image.hpp │ │ │ ├── point.hpp │ │ │ └── rect.hpp │ │ ├── opengl │ │ │ └── gl.h │ │ └── param │ │ │ └── gilColor.hpp │ │ └── test │ │ ├── exceptionFormatting.hpp │ │ ├── io │ │ ├── reader.hpp │ │ └── writer.hpp │ │ ├── main.hpp │ │ └── unit_test.hpp │ └── tests │ ├── CMakeLists.txt │ ├── asynchronous │ └── asynchronous.cpp │ ├── boostgraph │ └── boostGraph.cpp │ ├── graph │ └── graph.cpp │ ├── internalGraph │ └── internalGraph.cpp │ ├── memory │ └── memory.cpp │ ├── ofx │ ├── clone │ │ └── ofx_clone.cpp │ ├── plugin │ │ └── ofx_plugin.cpp │ └── properties │ │ ├── properties.cpp │ │ └── serialization.cpp │ ├── test1 │ └── test1.cpp │ └── time │ └── time.cpp ├── plugins ├── CMakeLists.txt ├── _scripts │ ├── ImageEffectApi │ │ ├── CMakeLists.txt │ │ ├── Resources │ │ │ ├── L_ProjectName_.png │ │ │ ├── L_ProjectName_.svg │ │ │ ├── _PLUGIN_UNIQUE_ID_.png │ │ │ └── _PLUGIN_UNIQUE_ID_.svg │ │ └── src │ │ │ ├── _ClassName_Algorithm.hpp_ │ │ │ ├── _ClassName_Definitions.hpp_ │ │ │ ├── _ClassName_Plugin.cpp_ │ │ │ ├── _ClassName_Plugin.hpp_ │ │ │ ├── _ClassName_PluginFactory.cpp_ │ │ │ ├── _ClassName_PluginFactory.hpp_ │ │ │ ├── _ClassName_Process.hpp_ │ │ │ ├── _ClassName_Process.tcc_ │ │ │ └── mainEntry.cpp_ │ ├── README.md │ ├── checkBrackets.py │ ├── newPlugin.py │ └── renameInDirectory.py ├── dir.doxygen ├── image │ ├── display │ │ ├── ColorCubeViewer │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.colorcubeviewer.png │ │ │ │ ├── tuttle.colorcubeviewer.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── CloudPointData.cpp │ │ │ │ ├── CloudPointData.hpp │ │ │ │ ├── ColorCubeViewerAlgorithm.hpp │ │ │ │ ├── ColorCubeViewerDefinitions.hpp │ │ │ │ ├── ColorCubeViewerOverlay.cpp │ │ │ │ ├── ColorCubeViewerOverlay.hpp │ │ │ │ ├── ColorCubeViewerPlugin.cpp │ │ │ │ ├── ColorCubeViewerPlugin.hpp │ │ │ │ ├── ColorCubeViewerPluginFactory.cpp │ │ │ │ ├── ColorCubeViewerPluginFactory.hpp │ │ │ │ ├── ColorCubeViewerProcess.hpp │ │ │ │ ├── ColorCubeViewerProcess.tcc │ │ │ │ ├── GeodesicForm.cpp │ │ │ │ ├── GeodesicForm.hpp │ │ │ │ ├── MatrixManipulation.cpp │ │ │ │ ├── MatrixManipulation.hpp │ │ │ │ ├── SelectionAverage.cpp │ │ │ │ ├── SelectionAverage.hpp │ │ │ │ └── mainEntry.cpp │ │ ├── Histogram │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.histogram.png │ │ │ │ ├── tuttle.histogram.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── HSLOverlay.cpp │ │ │ │ ├── HSLOverlay.hpp │ │ │ │ ├── HistogramAlgorithm.hpp │ │ │ │ ├── HistogramDefinitions.hpp │ │ │ │ ├── HistogramDisplay.cpp │ │ │ │ ├── HistogramDisplay.hpp │ │ │ │ ├── HistogramOverlay.cpp │ │ │ │ ├── HistogramOverlay.hpp │ │ │ │ ├── HistogramPlugin.cpp │ │ │ │ ├── HistogramPlugin.hpp │ │ │ │ ├── HistogramPluginFactory.cpp │ │ │ │ ├── HistogramPluginFactory.hpp │ │ │ │ ├── OverlayData.cpp │ │ │ │ ├── OverlayData.hpp │ │ │ │ ├── RGBOverlay.cpp │ │ │ │ ├── RGBOverlay.hpp │ │ │ │ └── mainEntry.cpp │ │ └── Viewer │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ ├── tuttle.png │ │ │ ├── tuttle.svg │ │ │ ├── tuttle.viewer.png │ │ │ └── tuttle.viewer.svg │ │ │ └── src │ │ │ ├── ViewerAlgorithm.hpp │ │ │ ├── ViewerDefinitions.hpp │ │ │ ├── ViewerPlugin.cpp │ │ │ ├── ViewerPlugin.hpp │ │ │ ├── ViewerPluginFactory.cpp │ │ │ ├── ViewerPluginFactory.hpp │ │ │ ├── ViewerProcess.hpp │ │ │ ├── ViewerProcess.tcc │ │ │ └── mainEntry.cpp │ ├── generator │ │ ├── Checkerboard │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.checkerboard.png │ │ │ │ ├── tuttle.checkerboard.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── CheckerboardDefinitions.hpp │ │ │ │ ├── CheckerboardPlugin.cpp │ │ │ │ ├── CheckerboardPlugin.hpp │ │ │ │ ├── CheckerboardPluginFactory.cpp │ │ │ │ ├── CheckerboardPluginFactory.hpp │ │ │ │ ├── CheckerboardProcess.hpp │ │ │ │ ├── CheckerboardProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── ColorBars │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.colorbars.png │ │ │ │ ├── tuttle.colorbars.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── ColorBarsAlgorithm.hpp │ │ │ │ ├── ColorBarsDefinitions.hpp │ │ │ │ ├── ColorBarsPlugin.cpp │ │ │ │ ├── ColorBarsPlugin.hpp │ │ │ │ ├── ColorBarsPluginFactory.cpp │ │ │ │ ├── ColorBarsPluginFactory.hpp │ │ │ │ ├── ColorBarsProcess.hpp │ │ │ │ ├── ColorBarsProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── ColorCube │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.colorcube.png │ │ │ │ ├── tuttle.colorcube.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── ColorCubeAlgorithm.hpp │ │ │ │ ├── ColorCubeDefinitions.hpp │ │ │ │ ├── ColorCubePlugin.cpp │ │ │ │ ├── ColorCubePlugin.hpp │ │ │ │ ├── ColorCubePluginFactory.cpp │ │ │ │ ├── ColorCubePluginFactory.hpp │ │ │ │ ├── ColorCubeProcess.hpp │ │ │ │ ├── ColorCubeProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── ColorGradient │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.colorgradient.png │ │ │ │ ├── tuttle.colorgradient.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── ColorGradientAlgorithm.hpp │ │ │ │ ├── ColorGradientDefinitions.hpp │ │ │ │ ├── ColorGradientPlugin.cpp │ │ │ │ ├── ColorGradientPlugin.hpp │ │ │ │ ├── ColorGradientPluginFactory.cpp │ │ │ │ ├── ColorGradientPluginFactory.hpp │ │ │ │ ├── ColorGradientProcess.hpp │ │ │ │ ├── ColorGradientProcess.tcc │ │ │ │ ├── algorithm │ │ │ │ ├── ColorGrandient1DLinearFunctor.hpp │ │ │ │ └── ColorGrandient2DLinearFunctor.hpp │ │ │ │ └── mainEntry.cpp │ │ ├── ColorWheel │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.colorwheel.png │ │ │ │ ├── tuttle.colorwheel.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── ColorWheelAlgorithm.hpp │ │ │ │ ├── ColorWheelDefinitions.hpp │ │ │ │ ├── ColorWheelPlugin.cpp │ │ │ │ ├── ColorWheelPlugin.hpp │ │ │ │ ├── ColorWheelPluginFactory.cpp │ │ │ │ ├── ColorWheelPluginFactory.hpp │ │ │ │ ├── ColorWheelProcess.hpp │ │ │ │ ├── ColorWheelProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── Constant │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── .directory │ │ │ │ ├── tuttle.constant.png │ │ │ │ ├── tuttle.constant.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── ConstantDefinitions.hpp │ │ │ │ ├── ConstantPlugin.cpp │ │ │ │ ├── ConstantPlugin.hpp │ │ │ │ ├── ConstantPluginFactory.cpp │ │ │ │ ├── ConstantPluginFactory.hpp │ │ │ │ ├── ConstantProcess.hpp │ │ │ │ ├── ConstantProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── Ramp │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.png │ │ │ │ ├── tuttle.ramp.png │ │ │ │ ├── tuttle.ramp.svg │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── RampAlgorithm.hpp │ │ │ │ ├── RampDefinitions.hpp │ │ │ │ ├── RampPlugin.cpp │ │ │ │ ├── RampPlugin.hpp │ │ │ │ ├── RampPluginFactory.cpp │ │ │ │ ├── RampPluginFactory.hpp │ │ │ │ ├── RampProcess.hpp │ │ │ │ ├── RampProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── SeExpr │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.png │ │ │ │ ├── tuttle.seexpr.png │ │ │ │ ├── tuttle.seexpr.svg │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── SeExprAlgorithm.hpp │ │ │ │ ├── SeExprDefinitions.hpp │ │ │ │ ├── SeExprPlugin.cpp │ │ │ │ ├── SeExprPlugin.hpp │ │ │ │ ├── SeExprPluginFactory.cpp │ │ │ │ ├── SeExprPluginFactory.hpp │ │ │ │ ├── SeExprProcess.hpp │ │ │ │ ├── SeExprProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ └── Text │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ ├── tuttle.png │ │ │ ├── tuttle.svg │ │ │ ├── tuttle.text.png │ │ │ └── tuttle.text.svg │ │ │ └── src │ │ │ ├── TextDefinitions.hpp │ │ │ ├── TextPlugin.cpp │ │ │ ├── TextPlugin.hpp │ │ │ ├── TextPluginFactory.cpp │ │ │ ├── TextPluginFactory.hpp │ │ │ ├── TextProcess.hpp │ │ │ ├── TextProcess.tcc │ │ │ └── mainEntry.cpp │ ├── io │ │ ├── AudioVideo │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.avreader.png │ │ │ │ ├── tuttle.avreader.svg │ │ │ │ ├── tuttle.avwriter.png │ │ │ │ ├── tuttle.avwriter.svg │ │ │ │ ├── tuttle.png │ │ │ │ ├── tuttle.svg │ │ │ │ ├── tuttle.swscale.png │ │ │ │ └── tuttle.swscale.svg │ │ │ └── src │ │ │ │ ├── common │ │ │ │ ├── LibAVFeaturesAvailable.cpp │ │ │ │ ├── LibAVFeaturesAvailable.hpp │ │ │ │ ├── LibAVParams.cpp │ │ │ │ └── LibAVParams.hpp │ │ │ │ ├── mainEntry.cpp │ │ │ │ ├── reader │ │ │ │ ├── AVReaderDefinitions.hpp │ │ │ │ ├── AVReaderPlugin.cpp │ │ │ │ ├── AVReaderPlugin.hpp │ │ │ │ ├── AVReaderPluginFactory.cpp │ │ │ │ ├── AVReaderPluginFactory.hpp │ │ │ │ ├── AVReaderProcess.hpp │ │ │ │ └── AVReaderProcess.tcc │ │ │ │ ├── swscale │ │ │ │ ├── SwscaleDefinitions.hpp │ │ │ │ ├── SwscalePlugin.cpp │ │ │ │ ├── SwscalePlugin.hpp │ │ │ │ ├── SwscalePluginFactory.cpp │ │ │ │ ├── SwscalePluginFactory.hpp │ │ │ │ ├── SwscaleProcess.cpp │ │ │ │ └── SwscaleProcess.hpp │ │ │ │ └── writer │ │ │ │ ├── AVWriterDefinitions.hpp │ │ │ │ ├── AVWriterPlugin.cpp │ │ │ │ ├── AVWriterPlugin.hpp │ │ │ │ ├── AVWriterPluginFactory.cpp │ │ │ │ ├── AVWriterPluginFactory.hpp │ │ │ │ ├── AVWriterProcess.hpp │ │ │ │ └── AVWriterProcess.tcc │ │ ├── Exr │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.exrreader.png │ │ │ │ ├── tuttle.exrreader.svg │ │ │ │ ├── tuttle.exrwriter.png │ │ │ │ ├── tuttle.exrwriter.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ ├── src │ │ │ │ ├── EXRDefinitions.hpp │ │ │ │ ├── mainEntry.cpp │ │ │ │ ├── reader │ │ │ │ │ ├── EXRReaderDefinitions.hpp │ │ │ │ │ ├── EXRReaderPlugin.cpp │ │ │ │ │ ├── EXRReaderPlugin.hpp │ │ │ │ │ ├── EXRReaderPluginFactory.cpp │ │ │ │ │ ├── EXRReaderPluginFactory.hpp │ │ │ │ │ ├── EXRReaderProcess.hpp │ │ │ │ │ ├── EXRReaderProcess.tcc │ │ │ │ │ └── gil_fixes │ │ │ │ │ │ ├── channel.hpp │ │ │ │ │ │ ├── packed_pixel.hpp │ │ │ │ │ │ └── readme.txt │ │ │ │ └── writer │ │ │ │ │ ├── EXRWriterDefinitions.hpp │ │ │ │ │ ├── EXRWriterPlugin.cpp │ │ │ │ │ ├── EXRWriterPlugin.hpp │ │ │ │ │ ├── EXRWriterPluginFactory.cpp │ │ │ │ │ ├── EXRWriterPluginFactory.hpp │ │ │ │ │ ├── EXRWriterProcess.hpp │ │ │ │ │ └── EXRWriterProcess.tcc │ │ │ └── tests │ │ │ │ └── plugin_io_exr.cpp │ │ ├── ImageMagick │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.imagemagickreader.png │ │ │ │ ├── tuttle.imagemagickreader.svg │ │ │ │ ├── tuttle.imagemagickwriter.png │ │ │ │ ├── tuttle.imagemagickwriter.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ ├── src │ │ │ │ ├── mainEntry.cpp │ │ │ │ ├── reader │ │ │ │ │ ├── ImageMagickReaderDefinitions.hpp │ │ │ │ │ ├── ImageMagickReaderPlugin.cpp │ │ │ │ │ ├── ImageMagickReaderPlugin.hpp │ │ │ │ │ ├── ImageMagickReaderPluginFactory.cpp │ │ │ │ │ ├── ImageMagickReaderPluginFactory.hpp │ │ │ │ │ ├── ImageMagickReaderProcess.hpp │ │ │ │ │ └── ImageMagickReaderProcess.tcc │ │ │ │ └── writer │ │ │ │ │ ├── ImageMagickWriterDefinitions.hpp │ │ │ │ │ ├── ImageMagickWriterPlugin.cpp │ │ │ │ │ ├── ImageMagickWriterPlugin.hpp │ │ │ │ │ ├── ImageMagickWriterPluginFactory.cpp │ │ │ │ │ ├── ImageMagickWriterPluginFactory.hpp │ │ │ │ │ ├── ImageMagickWriterProcess.hpp │ │ │ │ │ └── ImageMagickWriterProcess.tcc │ │ │ └── tests │ │ │ │ └── plugin_io_imageMagick.cpp │ │ ├── Jpeg2000 │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.jpeg2000reader.png │ │ │ │ ├── tuttle.jpeg2000reader.svg │ │ │ │ ├── tuttle.jpeg2000writer.png │ │ │ │ ├── tuttle.jpeg2000writer.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ ├── src │ │ │ │ ├── mainEntry.cpp │ │ │ │ ├── openjpeg │ │ │ │ │ ├── J2KCommon.cpp │ │ │ │ │ ├── J2KCommon.hpp │ │ │ │ │ ├── J2KReader.cpp │ │ │ │ │ ├── J2KReader.hpp │ │ │ │ │ ├── J2KWriter.cpp │ │ │ │ │ └── J2KWriter.hpp │ │ │ │ ├── reader │ │ │ │ │ ├── Jpeg2000ReaderDefinitions.hpp │ │ │ │ │ ├── Jpeg2000ReaderPlugin.cpp │ │ │ │ │ ├── Jpeg2000ReaderPlugin.hpp │ │ │ │ │ ├── Jpeg2000ReaderPluginFactory.cpp │ │ │ │ │ ├── Jpeg2000ReaderPluginFactory.hpp │ │ │ │ │ ├── Jpeg2000ReaderProcess.hpp │ │ │ │ │ └── Jpeg2000ReaderProcess.tcc │ │ │ │ └── writer │ │ │ │ │ ├── Jpeg2000WriterDefinitions.hpp │ │ │ │ │ ├── Jpeg2000WriterPlugin.cpp │ │ │ │ │ ├── Jpeg2000WriterPlugin.hpp │ │ │ │ │ ├── Jpeg2000WriterPluginFactory.cpp │ │ │ │ │ ├── Jpeg2000WriterPluginFactory.hpp │ │ │ │ │ ├── Jpeg2000WriterProcess.hpp │ │ │ │ │ └── Jpeg2000WriterProcess.tcc │ │ │ └── tests │ │ │ │ └── plugin_io_jpeg2000.cpp │ │ ├── MemoryBuffer │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.inputbuffer.png │ │ │ │ ├── tuttle.inputbuffer.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── inputBuffer │ │ │ │ ├── InputBufferDefinitions.hpp │ │ │ │ ├── InputBufferPlugin.cpp │ │ │ │ ├── InputBufferPlugin.hpp │ │ │ │ ├── InputBufferPluginFactory.cpp │ │ │ │ └── InputBufferPluginFactory.hpp │ │ │ │ ├── mainEntry.cpp │ │ │ │ ├── outputBuffer │ │ │ │ ├── OutputBufferDefinitions.hpp │ │ │ │ ├── OutputBufferPlugin.cpp │ │ │ │ ├── OutputBufferPlugin.hpp │ │ │ │ ├── OutputBufferPluginFactory.cpp │ │ │ │ └── OutputBufferPluginFactory.hpp │ │ │ │ ├── pointerParam.cpp │ │ │ │ └── pointerParam.hpp │ │ ├── OpenImageIO │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.oiioreader.png │ │ │ │ ├── tuttle.oiioreader.svg │ │ │ │ ├── tuttle.oiiowriter.png │ │ │ │ ├── tuttle.oiiowriter.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ ├── src │ │ │ │ ├── mainEntry.cpp │ │ │ │ ├── reader │ │ │ │ │ ├── OpenImageIOReaderDefinitions.hpp │ │ │ │ │ ├── OpenImageIOReaderPlugin.cpp │ │ │ │ │ ├── OpenImageIOReaderPlugin.hpp │ │ │ │ │ ├── OpenImageIOReaderPluginFactory.cpp │ │ │ │ │ ├── OpenImageIOReaderPluginFactory.hpp │ │ │ │ │ ├── OpenImageIOReaderProcess.hpp │ │ │ │ │ └── OpenImageIOReaderProcess.tcc │ │ │ │ └── writer │ │ │ │ │ ├── OpenImageIOWriterDefinitions.hpp │ │ │ │ │ ├── OpenImageIOWriterPlugin.cpp │ │ │ │ │ ├── OpenImageIOWriterPlugin.hpp │ │ │ │ │ ├── OpenImageIOWriterPluginFactory.cpp │ │ │ │ │ ├── OpenImageIOWriterPluginFactory.hpp │ │ │ │ │ ├── OpenImageIOWriterProcess.hpp │ │ │ │ │ └── OpenImageIOWriterProcess.tcc │ │ │ └── tests │ │ │ │ └── plugin_io_openImageIO.cpp │ │ ├── Png │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.png │ │ │ │ ├── tuttle.pngreader.png │ │ │ │ ├── tuttle.pngreader.svg │ │ │ │ ├── tuttle.pngwriter.png │ │ │ │ ├── tuttle.pngwriter.svg │ │ │ │ └── tuttle.svg │ │ │ ├── src │ │ │ │ ├── PngEngine │ │ │ │ │ ├── pngDefinitions.hpp │ │ │ │ │ └── png_adds.hpp │ │ │ │ ├── mainEntry.cpp │ │ │ │ ├── reader │ │ │ │ │ ├── PngReaderDefinitions.hpp │ │ │ │ │ ├── PngReaderPlugin.cpp │ │ │ │ │ ├── PngReaderPlugin.hpp │ │ │ │ │ ├── PngReaderPluginFactory.cpp │ │ │ │ │ ├── PngReaderPluginFactory.hpp │ │ │ │ │ ├── PngReaderProcess.hpp │ │ │ │ │ └── PngReaderProcess.tcc │ │ │ │ └── writer │ │ │ │ │ ├── PngWriterDefinitions.hpp │ │ │ │ │ ├── PngWriterPlugin.cpp │ │ │ │ │ ├── PngWriterPlugin.hpp │ │ │ │ │ ├── PngWriterPluginFactory.cpp │ │ │ │ │ ├── PngWriterPluginFactory.hpp │ │ │ │ │ ├── PngWriterProcess.hpp │ │ │ │ │ └── PngWriterProcess.tcc │ │ │ └── tests │ │ │ │ └── plugin_io_png.cpp │ │ ├── Raw │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.png │ │ │ │ ├── tuttle.rawreader.png │ │ │ │ ├── tuttle.rawreader.svg │ │ │ │ └── tuttle.svg │ │ │ ├── src │ │ │ │ ├── mainEntry.cpp │ │ │ │ └── reader │ │ │ │ │ ├── RawReaderDefinitions.hpp │ │ │ │ │ ├── RawReaderPlugin.cpp │ │ │ │ │ ├── RawReaderPlugin.hpp │ │ │ │ │ ├── RawReaderPluginFactory.cpp │ │ │ │ │ ├── RawReaderPluginFactory.hpp │ │ │ │ │ ├── RawReaderProcess.hpp │ │ │ │ │ └── RawReaderProcess.tcc │ │ │ └── tests │ │ │ │ └── plugin_io_raw.cpp │ │ └── test │ │ │ ├── checkTestImage.py │ │ │ ├── cleanTestImages.py │ │ │ └── generateTestImages.py │ └── process │ │ ├── channel │ │ ├── ChannelShuffle │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.channelshuffle.png │ │ │ │ ├── tuttle.channelshuffle.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── ChannelShuffleDefinitions.hpp │ │ │ │ ├── ChannelShufflePlugin.cpp │ │ │ │ ├── ChannelShufflePlugin.hpp │ │ │ │ ├── ChannelShufflePluginFactory.cpp │ │ │ │ ├── ChannelShufflePluginFactory.hpp │ │ │ │ ├── ChannelShuffleProcess.hpp │ │ │ │ ├── ChannelShuffleProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ └── Component │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ ├── tuttle.component.png │ │ │ ├── tuttle.component.svg │ │ │ ├── tuttle.png │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ ├── ComponentAlgorithm.hpp │ │ │ ├── ComponentDefinitions.hpp │ │ │ ├── ComponentPlugin.cpp │ │ │ ├── ComponentPlugin.hpp │ │ │ ├── ComponentPluginFactory.cpp │ │ │ ├── ComponentPluginFactory.hpp │ │ │ ├── ComponentProcess.hpp │ │ │ ├── ComponentProcess.tcc │ │ │ └── mainEntry.cpp │ │ ├── color │ │ ├── BasicKeyer │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.basickeyer.png │ │ │ │ ├── tuttle.basickeyer.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── BasicKeyerAlgorithm.hpp │ │ │ │ ├── BasicKeyerDefinitions.hpp │ │ │ │ ├── BasicKeyerPlugin.cpp │ │ │ │ ├── BasicKeyerPlugin.hpp │ │ │ │ ├── BasicKeyerPluginFactory.cpp │ │ │ │ ├── BasicKeyerPluginFactory.hpp │ │ │ │ ├── BasicKeyerProcess.hpp │ │ │ │ ├── BasicKeyerProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── BitDepth │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.bitdepth.png │ │ │ │ ├── tuttle.bitdepth.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── BitDepthDefinitions.hpp │ │ │ │ ├── BitDepthPlugin.cpp │ │ │ │ ├── BitDepthPlugin.hpp │ │ │ │ ├── BitDepthPluginFactory.cpp │ │ │ │ ├── BitDepthPluginFactory.hpp │ │ │ │ ├── BitDepthProcess.hpp │ │ │ │ ├── BitDepthProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── CTL │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.ctl.png │ │ │ │ ├── tuttle.ctl.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── CTLAlgorithm.hpp │ │ │ │ ├── CTLDefinitions.hpp │ │ │ │ ├── CTLPlugin.cpp │ │ │ │ ├── CTLPlugin.hpp │ │ │ │ ├── CTLPluginFactory.cpp │ │ │ │ ├── CTLPluginFactory.hpp │ │ │ │ ├── CTLProcess.hpp │ │ │ │ ├── CTLProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── ColorGradation │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.colorgradation.png │ │ │ │ ├── tuttle.colorgradation.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── ColorGradationDefinitions.hpp │ │ │ │ ├── ColorGradationPlugin.cpp │ │ │ │ ├── ColorGradationPlugin.hpp │ │ │ │ ├── ColorGradationPluginFactory.cpp │ │ │ │ ├── ColorGradationPluginFactory.hpp │ │ │ │ ├── ColorGradationProcess.hpp │ │ │ │ ├── ColorGradationProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── ColorSpaceKeyer │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.colorspacekeyer.png │ │ │ │ ├── tuttle.colorspacekeyer.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── CloudPointData.cpp │ │ │ │ ├── CloudPointData.hpp │ │ │ │ ├── ColorSpaceKeyerAlgorithm.hpp │ │ │ │ ├── ColorSpaceKeyerDefinitions.hpp │ │ │ │ ├── ColorSpaceKeyerOverlay.cpp │ │ │ │ ├── ColorSpaceKeyerOverlay.hpp │ │ │ │ ├── ColorSpaceKeyerPlugin.cpp │ │ │ │ ├── ColorSpaceKeyerPlugin.hpp │ │ │ │ ├── ColorSpaceKeyerPluginFactory.cpp │ │ │ │ ├── ColorSpaceKeyerPluginFactory.hpp │ │ │ │ ├── ColorSpaceKeyerProcess.hpp │ │ │ │ ├── ColorSpaceKeyerProcess.tcc │ │ │ │ ├── GeodesicForm.cpp │ │ │ │ ├── GeodesicForm.hpp │ │ │ │ ├── MatrixManipulation.cpp │ │ │ │ ├── MatrixManipulation.hpp │ │ │ │ ├── SelectionAverage.cpp │ │ │ │ ├── SelectionAverage.hpp │ │ │ │ └── mainEntry.cpp │ │ ├── ColorSuppress │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.colorsuppress.png │ │ │ │ ├── tuttle.colorsuppress.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── ColorSuppressDefinitions.hpp │ │ │ │ ├── ColorSuppressPlugin.cpp │ │ │ │ ├── ColorSuppressPlugin.hpp │ │ │ │ ├── ColorSuppressPluginFactory.cpp │ │ │ │ ├── ColorSuppressPluginFactory.hpp │ │ │ │ ├── ColorSuppressProcess.hpp │ │ │ │ ├── ColorSuppressProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── ColorTransfer │ │ │ ├── AUTHORS │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.colortransfer.png │ │ │ │ ├── tuttle.colortransfer.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── ColorTransferDefinitions.hpp │ │ │ │ ├── ColorTransferPlugin.cpp │ │ │ │ ├── ColorTransferPlugin.hpp │ │ │ │ ├── ColorTransferPluginFactory.cpp │ │ │ │ ├── ColorTransferPluginFactory.hpp │ │ │ │ ├── ColorTransferProcess.hpp │ │ │ │ ├── ColorTransferProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── ColorTransform │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── .tuttle.colortransform.png │ │ │ │ ├── .tuttle.colortransform.svg │ │ │ │ ├── tuttle.colortransform.png │ │ │ │ ├── tuttle.colortransform.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── ColorTransformAlgorithm.hpp │ │ │ │ ├── ColorTransformDefinitions.hpp │ │ │ │ ├── ColorTransformPlugin.cpp │ │ │ │ ├── ColorTransformPlugin.hpp │ │ │ │ ├── ColorTransformPluginFactory.cpp │ │ │ │ ├── ColorTransformPluginFactory.hpp │ │ │ │ ├── ColorTransformProcess.hpp │ │ │ │ ├── ColorTransformProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── Colorspace │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.colorspace.png │ │ │ │ ├── tuttle.colorspace.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── ColorSpaceDefinitions.hpp │ │ │ │ ├── ColorSpacePlugin.cpp │ │ │ │ ├── ColorSpacePlugin.hpp │ │ │ │ ├── ColorSpacePluginFactory.cpp │ │ │ │ ├── ColorSpacePluginFactory.hpp │ │ │ │ ├── ColorSpaceProcess.hpp │ │ │ │ ├── ColorSpaceProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── Gamma │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.gamma.png │ │ │ │ ├── tuttle.gamma.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── GammaDefinitions.hpp │ │ │ │ ├── GammaPlugin.cpp │ │ │ │ ├── GammaPlugin.hpp │ │ │ │ ├── GammaPluginFactory.cpp │ │ │ │ ├── GammaPluginFactory.hpp │ │ │ │ ├── GammaProcess.hpp │ │ │ │ ├── GammaProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── HistogramKeyer │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.histogramkeyer.png │ │ │ │ ├── tuttle.histogramkeyer.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── HSLOverlay.cpp │ │ │ │ ├── HSLOverlay.hpp │ │ │ │ ├── HistogramKeyerAlgorithm.hpp │ │ │ │ ├── HistogramKeyerDefinitions.hpp │ │ │ │ ├── HistogramKeyerHistogramDisplay.cpp │ │ │ │ ├── HistogramKeyerHistogramDisplay.hpp │ │ │ │ ├── HistogramKeyerOverlay.cpp │ │ │ │ ├── HistogramKeyerOverlay.hpp │ │ │ │ ├── HistogramKeyerPlugin.cpp │ │ │ │ ├── HistogramKeyerPlugin.hpp │ │ │ │ ├── HistogramKeyerPluginFactory.cpp │ │ │ │ ├── HistogramKeyerPluginFactory.hpp │ │ │ │ ├── HistogramKeyerProcess.hpp │ │ │ │ ├── HistogramKeyerProcess.tcc │ │ │ │ ├── OverlayData.cpp │ │ │ │ ├── OverlayData.hpp │ │ │ │ ├── RGBOverlay.cpp │ │ │ │ ├── RGBOverlay.hpp │ │ │ │ └── mainEntry.cpp │ │ ├── IdKeyer │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.idkeyer.png │ │ │ │ ├── tuttle.idkeyer.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── IdKeyerAlgorithm.hpp │ │ │ │ ├── IdKeyerDefinitions.hpp │ │ │ │ ├── IdKeyerPlugin.cpp │ │ │ │ ├── IdKeyerPlugin.hpp │ │ │ │ ├── IdKeyerPluginFactory.cpp │ │ │ │ ├── IdKeyerPluginFactory.hpp │ │ │ │ ├── IdKeyerProcess.hpp │ │ │ │ ├── IdKeyerProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── Invert │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.invert.png │ │ │ │ ├── tuttle.invert.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── InvertDefinitions.hpp │ │ │ │ ├── InvertPlugin.cpp │ │ │ │ ├── InvertPlugin.hpp │ │ │ │ ├── InvertPluginFactory.cpp │ │ │ │ ├── InvertPluginFactory.hpp │ │ │ │ ├── InvertProcess.hpp │ │ │ │ ├── InvertProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── Lut │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.lut.png │ │ │ │ ├── tuttle.lut.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ ├── src │ │ │ │ ├── LutDefinitions.hpp │ │ │ │ ├── LutPlugin.cpp │ │ │ │ ├── LutPlugin.hpp │ │ │ │ ├── LutPluginFactory.cpp │ │ │ │ ├── LutPluginFactory.hpp │ │ │ │ ├── LutProcess.hpp │ │ │ │ ├── LutProcess.tcc │ │ │ │ ├── lutEngine │ │ │ │ │ ├── AbstractLut.cpp │ │ │ │ │ ├── AbstractLut.hpp │ │ │ │ │ ├── Color.hpp │ │ │ │ │ ├── Interpolator.cpp │ │ │ │ │ ├── Interpolator.hpp │ │ │ │ │ ├── Lut.cpp │ │ │ │ │ ├── Lut.hpp │ │ │ │ │ ├── LutReader.cpp │ │ │ │ │ ├── LutReader.hpp │ │ │ │ │ ├── TetraInterpolator.cpp │ │ │ │ │ ├── TetraInterpolator.hpp │ │ │ │ │ ├── TrilinInterpolator.cpp │ │ │ │ │ └── TrilinInterpolator.hpp │ │ │ │ └── mainEntry.cpp │ │ │ └── tests │ │ │ │ └── test1 │ │ │ │ ├── SConscript │ │ │ │ ├── ident.3dl │ │ │ │ └── plugin_color_lut.cpp │ │ ├── Normalize │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.normalize.png │ │ │ │ ├── tuttle.normalize.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── NormalizeAlgorithm.hpp │ │ │ │ ├── NormalizeDefinitions.hpp │ │ │ │ ├── NormalizePlugin.cpp │ │ │ │ ├── NormalizePlugin.hpp │ │ │ │ ├── NormalizePluginFactory.cpp │ │ │ │ ├── NormalizePluginFactory.hpp │ │ │ │ ├── NormalizeProcess.hpp │ │ │ │ ├── NormalizeProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── OCIO │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.ocio.colorspace.png │ │ │ │ ├── tuttle.ocio.colorspace.svg │ │ │ │ ├── tuttle.ocio.lut.png │ │ │ │ ├── tuttle.ocio.lut.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── OCIOColorSpace │ │ │ │ ├── OCIOColorSpaceDefinitions.hpp │ │ │ │ ├── OCIOColorSpacePlugin.cpp │ │ │ │ ├── OCIOColorSpacePlugin.hpp │ │ │ │ ├── OCIOColorSpacePluginFactory.cpp │ │ │ │ ├── OCIOColorSpacePluginFactory.hpp │ │ │ │ ├── OCIOColorSpaceProcess.hpp │ │ │ │ └── OCIOColorSpaceProcess.tcc │ │ │ │ ├── OCIOLut │ │ │ │ ├── OCIOLutDefinitions.hpp │ │ │ │ ├── OCIOLutPlugin.cpp │ │ │ │ ├── OCIOLutPlugin.hpp │ │ │ │ ├── OCIOLutPluginFactory.cpp │ │ │ │ ├── OCIOLutPluginFactory.hpp │ │ │ │ ├── OCIOLutProcess.hpp │ │ │ │ └── OCIOLutProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ └── Print │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ ├── tuttle.png │ │ │ ├── tuttle.print.png │ │ │ ├── tuttle.print.svg │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ ├── PrintAlgorithm.hpp │ │ │ ├── PrintDefinitions.hpp │ │ │ ├── PrintPlugin.cpp │ │ │ ├── PrintPlugin.hpp │ │ │ ├── PrintPluginFactory.cpp │ │ │ ├── PrintPluginFactory.hpp │ │ │ ├── PrintProcess.hpp │ │ │ ├── PrintProcess.tcc │ │ │ └── mainEntry.cpp │ │ ├── filter │ │ ├── AnisotropicDiffusion │ │ │ ├── AUTHORS │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.anisotropicdiffusion.png │ │ │ │ ├── tuttle.anisotropicdiffusion.svg │ │ │ │ ├── tuttle.anisotropictensors.png │ │ │ │ ├── tuttle.anisotropictensors.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── anisotropicDiffusion │ │ │ │ ├── AnisotropicDiffusionDefinition.hpp │ │ │ │ ├── AnisotropicDiffusionPlugin.cpp │ │ │ │ ├── AnisotropicDiffusionPlugin.hpp │ │ │ │ ├── AnisotropicDiffusionPluginFactory.cpp │ │ │ │ ├── AnisotropicDiffusionPluginFactory.hpp │ │ │ │ ├── AnisotropicDiffusionProcess.hpp │ │ │ │ └── AnisotropicDiffusionProcess.tcc │ │ │ │ ├── anisotropicTensors │ │ │ │ ├── AnisotropicTensorsDefinition.hpp │ │ │ │ ├── AnisotropicTensorsMargin.cpp │ │ │ │ ├── AnisotropicTensorsMargin.hpp │ │ │ │ ├── AnisotropicTensorsPlugin.cpp │ │ │ │ ├── AnisotropicTensorsPlugin.hpp │ │ │ │ ├── AnisotropicTensorsPluginFactory.cpp │ │ │ │ ├── AnisotropicTensorsPluginFactory.hpp │ │ │ │ ├── AnisotropicTensorsProcess.hpp │ │ │ │ └── AnisotropicTensorsProcess.tcc │ │ │ │ ├── imageUtils │ │ │ │ ├── ImageTensors.hpp │ │ │ │ ├── filters │ │ │ │ │ ├── blurFilters.hpp │ │ │ │ │ └── edgeDetect.hpp │ │ │ │ ├── interpolation.hpp │ │ │ │ └── noiseAnalysis.hpp │ │ │ │ └── mainEntry.cpp │ │ ├── Blur │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.blur.png │ │ │ │ ├── tuttle.blur.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── BlurDefinitions.hpp │ │ │ │ ├── BlurPlugin.cpp │ │ │ │ ├── BlurPlugin.hpp │ │ │ │ ├── BlurPluginFactory.cpp │ │ │ │ ├── BlurPluginFactory.hpp │ │ │ │ ├── BlurProcess.hpp │ │ │ │ ├── BlurProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── Convolution │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.convolution.png │ │ │ │ ├── tuttle.convolution.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── ConvolutionDefinitions.hpp │ │ │ │ ├── ConvolutionPlugin.cpp │ │ │ │ ├── ConvolutionPlugin.hpp │ │ │ │ ├── ConvolutionPluginFactory.cpp │ │ │ │ ├── ConvolutionPluginFactory.hpp │ │ │ │ ├── ConvolutionProcess.hpp │ │ │ │ ├── ConvolutionProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── FloodFill │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.floodfill.png │ │ │ │ ├── tuttle.floodfill.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── FloodFillDefinitions.hpp │ │ │ │ ├── FloodFillPlugin.cpp │ │ │ │ ├── FloodFillPlugin.hpp │ │ │ │ ├── FloodFillPluginFactory.cpp │ │ │ │ ├── FloodFillPluginFactory.hpp │ │ │ │ ├── FloodFillProcess.hpp │ │ │ │ ├── FloodFillProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── LocalMaxima │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.localmaxima.png │ │ │ │ ├── tuttle.localmaxima.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── LocalMaximaDefinitions.hpp │ │ │ │ ├── LocalMaximaPlugin.cpp │ │ │ │ ├── LocalMaximaPlugin.hpp │ │ │ │ ├── LocalMaximaPluginFactory.cpp │ │ │ │ ├── LocalMaximaPluginFactory.hpp │ │ │ │ ├── LocalMaximaProcess.hpp │ │ │ │ ├── LocalMaximaProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── NlmDenoiser │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.nlmdenoiser.png │ │ │ │ ├── tuttle.nlmdenoiser.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── NLMDenoiserDefinitions.hpp │ │ │ │ ├── NLMDenoiserPlugin.cpp │ │ │ │ ├── NLMDenoiserPlugin.hpp │ │ │ │ ├── NLMDenoiserPluginFactory.cpp │ │ │ │ ├── NLMDenoiserPluginFactory.hpp │ │ │ │ ├── NLMDenoiserProcess.hpp │ │ │ │ ├── NLMDenoiserProcess.tcc │ │ │ │ ├── imageUtils │ │ │ │ └── noiseAnalysis.hpp │ │ │ │ └── mainEntry.cpp │ │ ├── Sobel │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.png │ │ │ │ ├── tuttle.sobel.png │ │ │ │ ├── tuttle.sobel.svg │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── SobelDefinitions.hpp │ │ │ │ ├── SobelPlugin.cpp │ │ │ │ ├── SobelPlugin.hpp │ │ │ │ ├── SobelPluginFactory.cpp │ │ │ │ ├── SobelPluginFactory.hpp │ │ │ │ ├── SobelProcess.hpp │ │ │ │ ├── SobelProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ └── Thinning │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ ├── tuttle.png │ │ │ ├── tuttle.svg │ │ │ ├── tuttle.thinning.png │ │ │ └── tuttle.thinning.svg │ │ │ └── src │ │ │ ├── ThinningDefinitions.hpp │ │ │ ├── ThinningPlugin.cpp │ │ │ ├── ThinningPlugin.hpp │ │ │ ├── ThinningPluginFactory.cpp │ │ │ ├── ThinningPluginFactory.hpp │ │ │ ├── ThinningProcess.hpp │ │ │ ├── ThinningProcess.tcc │ │ │ └── mainEntry.cpp │ │ ├── geometry │ │ ├── Crop │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.crop.png │ │ │ │ ├── tuttle.crop.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── CropDefinitions.hpp │ │ │ │ ├── CropMargin.cpp │ │ │ │ ├── CropMargin.hpp │ │ │ │ ├── CropPlugin.cpp │ │ │ │ ├── CropPlugin.hpp │ │ │ │ ├── CropPluginFactory.cpp │ │ │ │ ├── CropPluginFactory.hpp │ │ │ │ ├── CropProcess.hpp │ │ │ │ ├── CropProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── Flip │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.flip.png │ │ │ │ ├── tuttle.flip.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── FlipDefinitions.hpp │ │ │ │ ├── FlipPlugin.cpp │ │ │ │ ├── FlipPlugin.hpp │ │ │ │ ├── FlipPluginFactory.cpp │ │ │ │ ├── FlipPluginFactory.hpp │ │ │ │ ├── FlipProcess.hpp │ │ │ │ ├── FlipProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── LensDistort │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.lensdistort.png │ │ │ │ ├── tuttle.lensdistort.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ ├── src │ │ │ │ ├── LensDistortOverlayInteract.cpp │ │ │ │ ├── LensDistortOverlayInteract.hpp │ │ │ │ ├── LensDistortPlugin.cpp │ │ │ │ ├── LensDistortPlugin.hpp │ │ │ │ ├── LensDistortPluginFactory.cpp │ │ │ │ ├── LensDistortPluginFactory.hpp │ │ │ │ ├── LensDistortProcess.hpp │ │ │ │ ├── LensDistortProcess.tcc │ │ │ │ ├── lensDistortAlgorithm.hpp │ │ │ │ ├── lensDistortDefinitions.hpp │ │ │ │ ├── lensDistortProcessParams.hpp │ │ │ │ └── mainEntry.cpp │ │ │ └── tests │ │ │ │ └── geometry_lensDistort.cpp │ │ ├── Move2D │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.move2d.png │ │ │ │ ├── tuttle.move2d.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── Move2DDefinitions.hpp │ │ │ │ ├── Move2DPlugin.cpp │ │ │ │ ├── Move2DPlugin.hpp │ │ │ │ ├── Move2DPluginFactory.cpp │ │ │ │ ├── Move2DPluginFactory.hpp │ │ │ │ ├── Move2DProcess.hpp │ │ │ │ ├── Move2DProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── Pinning │ │ │ ├── AUTHORS │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.pinning.png │ │ │ │ ├── tuttle.pinning.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── PinningDefinitions.hpp │ │ │ │ ├── PinningOverlayInteract.cpp │ │ │ │ ├── PinningOverlayInteract.hpp │ │ │ │ ├── PinningPlugin.cpp │ │ │ │ ├── PinningPlugin.hpp │ │ │ │ ├── PinningPluginFactory.cpp │ │ │ │ ├── PinningPluginFactory.hpp │ │ │ │ ├── PinningProcess.hpp │ │ │ │ ├── PinningProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── PushPixel │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.png │ │ │ │ ├── tuttle.pushpixel.png │ │ │ │ ├── tuttle.pushpixel.svg │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── PushPixelDefinitions.hpp │ │ │ │ ├── PushPixelPlugin.cpp │ │ │ │ ├── PushPixelPlugin.hpp │ │ │ │ ├── PushPixelPluginFactory.cpp │ │ │ │ ├── PushPixelPluginFactory.hpp │ │ │ │ ├── PushPixelProcess.hpp │ │ │ │ ├── PushPixelProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ ├── Resize │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.png │ │ │ │ ├── tuttle.resize.png │ │ │ │ ├── tuttle.resize.svg │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── ResizeDefinitions.hpp │ │ │ │ ├── ResizePlugin.cpp │ │ │ │ ├── ResizePlugin.hpp │ │ │ │ ├── ResizePluginFactory.cpp │ │ │ │ ├── ResizePluginFactory.hpp │ │ │ │ ├── ResizeProcess.hpp │ │ │ │ ├── ResizeProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ └── Warp │ │ │ ├── AUTHORS │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ ├── tuttle.png │ │ │ ├── tuttle.svg │ │ │ ├── tuttle.warp.png │ │ │ └── tuttle.warp.svg │ │ │ └── src │ │ │ ├── Bezier │ │ │ ├── bezier.cpp │ │ │ └── bezier.hpp │ │ │ ├── TPS │ │ │ ├── tps.hpp │ │ │ └── tps.tcc │ │ │ ├── WarpAlgorithm.hpp │ │ │ ├── WarpDefinitions.hpp │ │ │ ├── WarpOverlayInteract.cpp │ │ │ ├── WarpOverlayInteract.hpp │ │ │ ├── WarpPlugin.cpp │ │ │ ├── WarpPlugin.hpp │ │ │ ├── WarpPluginFactory.cpp │ │ │ ├── WarpPluginFactory.hpp │ │ │ ├── WarpProcess.hpp │ │ │ ├── WarpProcess.tcc │ │ │ └── mainEntry.cpp │ │ ├── math │ │ └── MathOperator │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ ├── tuttle.mathoperator.png │ │ │ ├── tuttle.mathoperator.svg │ │ │ ├── tuttle.png │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ ├── MathOperatorAlgorithm.hpp │ │ │ ├── MathOperatorDefinitions.hpp │ │ │ ├── MathOperatorPlugin.cpp │ │ │ ├── MathOperatorPlugin.hpp │ │ │ ├── MathOperatorPluginFactory.cpp │ │ │ ├── MathOperatorPluginFactory.hpp │ │ │ ├── MathOperatorProcess.hpp │ │ │ ├── MathOperatorProcess.tcc │ │ │ └── mainEntry.cpp │ │ ├── time │ │ └── TimeShift │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ ├── tuttle.png │ │ │ ├── tuttle.svg │ │ │ ├── tuttle.timeshift.png │ │ │ └── tuttle.timeshift.svg │ │ │ └── src │ │ │ ├── TimeShiftDefinitions.hpp │ │ │ ├── TimeShiftPlugin.cpp │ │ │ ├── TimeShiftPlugin.hpp │ │ │ ├── TimeShiftPluginFactory.cpp │ │ │ ├── TimeShiftPluginFactory.hpp │ │ │ └── mainEntry.cpp │ │ └── transition │ │ ├── Fade │ │ ├── CMakeLists.txt │ │ ├── Resources │ │ │ ├── tuttle.fade.png │ │ │ ├── tuttle.fade.svg │ │ │ ├── tuttle.png │ │ │ └── tuttle.svg │ │ └── src │ │ │ ├── FadeAlgorithm.hpp │ │ │ ├── FadeDefinitions.hpp │ │ │ ├── FadePlugin.cpp │ │ │ ├── FadePlugin.hpp │ │ │ ├── FadePluginFactory.cpp │ │ │ ├── FadePluginFactory.hpp │ │ │ ├── FadeProcess.hpp │ │ │ ├── FadeProcess.tcc │ │ │ └── mainEntry.cpp │ │ └── Merge │ │ ├── CMakeLists.txt │ │ ├── Resources │ │ ├── tuttle.merge.png │ │ ├── tuttle.merge.svg │ │ ├── tuttle.png │ │ └── tuttle.svg │ │ └── src │ │ ├── MergeDefinitions.hpp │ │ ├── MergePlugin.cpp │ │ ├── MergePlugin.hpp │ │ ├── MergePluginFactory.cpp │ │ ├── MergePluginFactory.hpp │ │ ├── MergeProcess.hpp │ │ ├── MergeProcess.tcc │ │ └── mainEntry.cpp ├── param │ ├── Math │ │ └── src │ │ │ └── ParamMath.cpp │ ├── analysis │ │ ├── Diff │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ │ ├── tuttle.diff.png │ │ │ │ ├── tuttle.diff.svg │ │ │ │ ├── tuttle.png │ │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ │ ├── DiffDefinitions.hpp │ │ │ │ ├── DiffPlugin.cpp │ │ │ │ ├── DiffPlugin.hpp │ │ │ │ ├── DiffPluginFactory.cpp │ │ │ │ ├── DiffPluginFactory.hpp │ │ │ │ ├── DiffProcess.hpp │ │ │ │ ├── DiffProcess.tcc │ │ │ │ └── mainEntry.cpp │ │ └── ImageStatistics │ │ │ ├── CMakeLists.txt │ │ │ ├── Resources │ │ │ ├── tuttle.imagestatistics.png │ │ │ ├── tuttle.imagestatistics.svg │ │ │ ├── tuttle.png │ │ │ └── tuttle.svg │ │ │ └── src │ │ │ ├── ImageStatisticsDefinitions.hpp │ │ │ ├── ImageStatisticsOverlayInteract.cpp │ │ │ ├── ImageStatisticsOverlayInteract.hpp │ │ │ ├── ImageStatisticsPlugin.cpp │ │ │ ├── ImageStatisticsPlugin.hpp │ │ │ ├── ImageStatisticsPluginFactory.cpp │ │ │ ├── ImageStatisticsPluginFactory.hpp │ │ │ ├── ImageStatisticsProcess.hpp │ │ │ ├── ImageStatisticsProcess.tcc │ │ │ └── mainEntry.cpp │ └── debug │ │ └── DebugImageEffectApi │ │ ├── CMakeLists.txt │ │ ├── Resources │ │ ├── tuttle.debugimageeffectapi.png │ │ ├── tuttle.debugimageeffectapi.svg │ │ ├── tuttle.png │ │ └── tuttle.svg │ │ └── src │ │ ├── DebugImageEffectApiDefinitions.hpp │ │ ├── DebugImageEffectApiPlugin.cpp │ │ ├── DebugImageEffectApiPlugin.hpp │ │ ├── DebugImageEffectApiPluginFactory.cpp │ │ ├── DebugImageEffectApiPluginFactory.hpp │ │ ├── DebugImageEffectApiProcess.hpp │ │ ├── DebugImageEffectApiProcess.tcc │ │ └── mainEntry.cpp └── private │ ├── .gitignore │ └── README └── tools ├── format ├── .clang-format └── format_all_files.sh ├── get_glibc_versions.py ├── travis ├── build.sh ├── coverity_env.sh ├── deploy.sh ├── install_dependencies.sh └── launch_tests.sh └── upload_on_drive.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/COPYING.md -------------------------------------------------------------------------------- /Dockerfile-env-python2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/Dockerfile-env-python2 -------------------------------------------------------------------------------- /Dockerfile-env-python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/Dockerfile-env-python3 -------------------------------------------------------------------------------- /Dockerfile-python2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/Dockerfile-python2 -------------------------------------------------------------------------------- /Dockerfile-python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/Dockerfile-python3 -------------------------------------------------------------------------------- /INSTALL-ext-fedora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/INSTALL-ext-fedora.md -------------------------------------------------------------------------------- /INSTALL-ext-macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/INSTALL-ext-macos.md -------------------------------------------------------------------------------- /INSTALL-ext-ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/INSTALL-ext-ubuntu.md -------------------------------------------------------------------------------- /INSTALL-ext-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/INSTALL-ext-windows.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/LICENSE.GPL -------------------------------------------------------------------------------- /LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/LICENSE.LGPL -------------------------------------------------------------------------------- /LICENSE.TuttleOFX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/LICENSE.TuttleOFX -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/README.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/USAGE.md -------------------------------------------------------------------------------- /applications/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/CMakeLists.txt -------------------------------------------------------------------------------- /applications/dir.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/dir.doxygen -------------------------------------------------------------------------------- /applications/example/browsePlugins/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/browsePlugins/SConscript -------------------------------------------------------------------------------- /applications/example/browsePlugins/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/browsePlugins/src/main.cpp -------------------------------------------------------------------------------- /applications/example/buffer/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/buffer/SConscript -------------------------------------------------------------------------------- /applications/example/buffer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/buffer/src/main.cpp -------------------------------------------------------------------------------- /applications/example/canny/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/canny/SConscript -------------------------------------------------------------------------------- /applications/example/canny/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/canny/src/main.cpp -------------------------------------------------------------------------------- /applications/example/cannyTerry/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/cannyTerry/SConscript -------------------------------------------------------------------------------- /applications/example/cannyTerry/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/cannyTerry/src/main.cpp -------------------------------------------------------------------------------- /applications/example/io/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/io/SConscript -------------------------------------------------------------------------------- /applications/example/io/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/io/src/main.cpp -------------------------------------------------------------------------------- /applications/example/pythonBinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/pythonBinding/README.md -------------------------------------------------------------------------------- /applications/example/pythonBinding/demo_burn_timecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/pythonBinding/demo_burn_timecode.py -------------------------------------------------------------------------------- /applications/example/pythonBinding/demo_seq_to_movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/pythonBinding/demo_seq_to_movie.py -------------------------------------------------------------------------------- /applications/example/pythonBinding/listPlugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/pythonBinding/listPlugins.py -------------------------------------------------------------------------------- /applications/example/pythonBinding/seq-info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/pythonBinding/seq-info.py -------------------------------------------------------------------------------- /applications/example/pythonBinding/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/pythonBinding/viewer.py -------------------------------------------------------------------------------- /applications/example/simpleInputBuffer/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/simpleInputBuffer/SConscript -------------------------------------------------------------------------------- /applications/example/simpleInputBuffer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/simpleInputBuffer/src/main.cpp -------------------------------------------------------------------------------- /applications/example/simpleNodes/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/simpleNodes/SConscript -------------------------------------------------------------------------------- /applications/example/simpleNodes/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/example/simpleNodes/src/main.cpp -------------------------------------------------------------------------------- /applications/sam/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/sam/CMakeLists.txt -------------------------------------------------------------------------------- /applications/sam/common/samDoUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/sam/common/samDoUtils.py -------------------------------------------------------------------------------- /applications/sam/common/samUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/sam/common/samUtils.py -------------------------------------------------------------------------------- /applications/sam/sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/sam/sam.py -------------------------------------------------------------------------------- /applications/sam/sam_cp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/sam/sam_cp.py -------------------------------------------------------------------------------- /applications/sam/sam_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/sam/sam_do.py -------------------------------------------------------------------------------- /applications/sam/sam_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/sam/sam_ls.py -------------------------------------------------------------------------------- /applications/sam/sam_mv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/sam/sam_mv.py -------------------------------------------------------------------------------- /applications/sam/sam_rm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/sam/sam_rm.py -------------------------------------------------------------------------------- /applications/script/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/script/CMakeLists.txt -------------------------------------------------------------------------------- /applications/script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/script/README.md -------------------------------------------------------------------------------- /applications/script/seqToMovie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/script/seqToMovie.py -------------------------------------------------------------------------------- /applications/test/samCommands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/applications/test/samCommands.sh -------------------------------------------------------------------------------- /cmake/FindCTL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindCTL.cmake -------------------------------------------------------------------------------- /cmake/FindFFmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindFFmpeg.cmake -------------------------------------------------------------------------------- /cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /cmake/FindIlmBase.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindIlmBase.cmake -------------------------------------------------------------------------------- /cmake/FindLibCaca.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindLibCaca.cmake -------------------------------------------------------------------------------- /cmake/FindLibRaw.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindLibRaw.cmake -------------------------------------------------------------------------------- /cmake/FindNumpy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindNumpy.cmake -------------------------------------------------------------------------------- /cmake/FindOpenColorIO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindOpenColorIO.cmake -------------------------------------------------------------------------------- /cmake/FindOpenEXR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindOpenEXR.cmake -------------------------------------------------------------------------------- /cmake/FindOpenImageIO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindOpenImageIO.cmake -------------------------------------------------------------------------------- /cmake/FindOpenJpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindOpenJpeg.cmake -------------------------------------------------------------------------------- /cmake/FindSeExpr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindSeExpr.cmake -------------------------------------------------------------------------------- /cmake/FindavTranscoder.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindavTranscoder.cmake -------------------------------------------------------------------------------- /cmake/FindsequenceParser.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/FindsequenceParser.cmake -------------------------------------------------------------------------------- /cmake/TuttleMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/TuttleMacros.cmake -------------------------------------------------------------------------------- /cmake/UseOfxpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/UseOfxpp.cmake -------------------------------------------------------------------------------- /cmake/UseTerry.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/UseTerry.cmake -------------------------------------------------------------------------------- /cmake/UseTuttleBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/cmake/UseTuttleBoost.cmake -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/configure -------------------------------------------------------------------------------- /doc/code/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/code/Doxyfile -------------------------------------------------------------------------------- /doc/code/index.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/code/index.doxygen -------------------------------------------------------------------------------- /doc/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/header.txt -------------------------------------------------------------------------------- /doc/plugins/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/plugins/SConscript -------------------------------------------------------------------------------- /doc/plugins/checkboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/plugins/checkboard.py -------------------------------------------------------------------------------- /doc/plugins/colorbars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/plugins/colorbars.py -------------------------------------------------------------------------------- /doc/plugins/colorcube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/plugins/colorcube.py -------------------------------------------------------------------------------- /doc/plugins/colorgradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/plugins/colorgradient.py -------------------------------------------------------------------------------- /doc/plugins/colorwheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/plugins/colorwheel.py -------------------------------------------------------------------------------- /doc/plugins/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/plugins/constant.py -------------------------------------------------------------------------------- /doc/plugins/generateFPSTestSequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/plugins/generateFPSTestSequence.py -------------------------------------------------------------------------------- /doc/plugins/generators/__init__.py: -------------------------------------------------------------------------------- 1 | # outer __init__.py 2 | from .helper import * 3 | -------------------------------------------------------------------------------- /doc/plugins/generators/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/plugins/generators/helper.py -------------------------------------------------------------------------------- /doc/plugins/movie/__init__.py: -------------------------------------------------------------------------------- 1 | # outer __init__.py 2 | from .movieGenerator import * 3 | -------------------------------------------------------------------------------- /doc/plugins/movie/movieGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/plugins/movie/movieGenerator.py -------------------------------------------------------------------------------- /doc/plugins/ramp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/plugins/ramp.py -------------------------------------------------------------------------------- /doc/scripts/helpPlugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/scripts/helpPlugins.py -------------------------------------------------------------------------------- /doc/scripts/img/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/scripts/img/blue.png -------------------------------------------------------------------------------- /doc/scripts/img/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/scripts/img/green.png -------------------------------------------------------------------------------- /doc/scripts/img/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/scripts/img/orange.png -------------------------------------------------------------------------------- /doc/scripts/img/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/scripts/img/red.png -------------------------------------------------------------------------------- /doc/scripts/listPlugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/scripts/listPlugins.py -------------------------------------------------------------------------------- /doc/scripts/makePluginPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/scripts/makePluginPage.py -------------------------------------------------------------------------------- /doc/scripts/plaintext2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/scripts/plaintext2html.py -------------------------------------------------------------------------------- /doc/scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/scripts/script.js -------------------------------------------------------------------------------- /doc/scripts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/doc/scripts/style.css -------------------------------------------------------------------------------- /libraries/boostHack/boost/gil/channel_algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/boostHack/boost/gil/channel_algorithm.hpp -------------------------------------------------------------------------------- /libraries/boostHack/boost/gil/color_convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/boostHack/boost/gil/color_convert.hpp -------------------------------------------------------------------------------- /libraries/boostHack/boost/gil/extension/color/hsl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/boostHack/boost/gil/extension/color/hsl.hpp -------------------------------------------------------------------------------- /libraries/boostHack/boost/gil/extension/color/hsv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/boostHack/boost/gil/extension/color/hsv.hpp -------------------------------------------------------------------------------- /libraries/boostHack/boost/gil/extension/color/lab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/boostHack/boost/gil/extension/color/lab.hpp -------------------------------------------------------------------------------- /libraries/boostHack/boost/gil/extension/color/xyz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/boostHack/boost/gil/extension/color/xyz.hpp -------------------------------------------------------------------------------- /libraries/boostHack/boost/gil/extension/toolbox/fill.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/boostHack/boost/gil/extension/toolbox/fill.hpp -------------------------------------------------------------------------------- /libraries/boostHack/boost/gil/extension/toolbox/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/boostHack/boost/gil/extension/toolbox/test.cpp -------------------------------------------------------------------------------- /libraries/boostHack/boost/gil/gil_all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/boostHack/boost/gil/gil_all.hpp -------------------------------------------------------------------------------- /libraries/dir.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/dir.doxygen -------------------------------------------------------------------------------- /libraries/openfxHack/Support/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/LICENSE -------------------------------------------------------------------------------- /libraries/openfxHack/Support/Library/ofxsCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/Library/ofxsCore.cpp -------------------------------------------------------------------------------- /libraries/openfxHack/Support/Library/ofxsImageEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/Library/ofxsImageEffect.cpp -------------------------------------------------------------------------------- /libraries/openfxHack/Support/Library/ofxsInteract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/Library/ofxsInteract.cpp -------------------------------------------------------------------------------- /libraries/openfxHack/Support/Library/ofxsLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/Library/ofxsLog.cpp -------------------------------------------------------------------------------- /libraries/openfxHack/Support/Library/ofxsMultiThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/Library/ofxsMultiThread.cpp -------------------------------------------------------------------------------- /libraries/openfxHack/Support/Library/ofxsParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/Library/ofxsParams.cpp -------------------------------------------------------------------------------- /libraries/openfxHack/Support/Library/ofxsProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/Library/ofxsProperty.cpp -------------------------------------------------------------------------------- /libraries/openfxHack/Support/include/linuxSymbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/include/linuxSymbols -------------------------------------------------------------------------------- /libraries/openfxHack/Support/include/ofxsCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/include/ofxsCore.h -------------------------------------------------------------------------------- /libraries/openfxHack/Support/include/ofxsImageEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/include/ofxsImageEffect.h -------------------------------------------------------------------------------- /libraries/openfxHack/Support/include/ofxsInteract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/include/ofxsInteract.h -------------------------------------------------------------------------------- /libraries/openfxHack/Support/include/ofxsLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/include/ofxsLog.h -------------------------------------------------------------------------------- /libraries/openfxHack/Support/include/ofxsMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/include/ofxsMemory.h -------------------------------------------------------------------------------- /libraries/openfxHack/Support/include/ofxsMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/include/ofxsMessage.h -------------------------------------------------------------------------------- /libraries/openfxHack/Support/include/ofxsMultiThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/include/ofxsMultiThread.h -------------------------------------------------------------------------------- /libraries/openfxHack/Support/include/ofxsParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/include/ofxsParam.h -------------------------------------------------------------------------------- /libraries/openfxHack/Support/include/ofxsUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/include/ofxsUtilities.h -------------------------------------------------------------------------------- /libraries/openfxHack/Support/include/osxSymbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/Support/include/osxSymbols -------------------------------------------------------------------------------- /libraries/openfxHack/include/extensions/nuke/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/extensions/nuke/camera.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxAttribute.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxClip.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxCore.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxCore.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxCore.i -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxCorePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxCorePlugin.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxImageEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxImageEffect.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxInteract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxInteract.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxKeySyms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxKeySyms.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxMemory.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxMessage.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxMultiThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxMultiThread.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxParam.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxParametricParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxParametricParam.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxPixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxPixels.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxProgress.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxProperty.h -------------------------------------------------------------------------------- /libraries/openfxHack/include/ofxTimeLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/openfxHack/include/ofxTimeLine.h -------------------------------------------------------------------------------- /libraries/terry/src/terry/algorithm/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/algorithm/for_each.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/algorithm/pixel_by_channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/algorithm/pixel_by_channel.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/algorithm/transform_pixels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/algorithm/transform_pixels.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/basic_colors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/basic_colors.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/channel.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/channel_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/channel_view.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/clamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/clamp.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/color.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/color/components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/color/components.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/color/gradient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/color/gradient.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/color/invert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/color/invert.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/color/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/color/matrix.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/color/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/color/norm.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/color/transfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/color/transfer.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/color_processed_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/color_processed_view.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/colorspace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/colorspace.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/colorspace/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/colorspace/all.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/colorspace/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/colorspace/base.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/colorspace/cmyk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/colorspace/cmyk.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/colorspace/hsl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/colorspace/hsl.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/colorspace/lms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/colorspace/lms.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/colorspace/rgb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/colorspace/rgb.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/colorspace/xyz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/colorspace/xyz.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/gradation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/gradation.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/layout.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/layout/XYZ.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/layout/XYZ.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/layout/YPbPr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/layout/YPbPr.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/layout/Yxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/layout/Yxy.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/layout/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/layout/all.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/layout/cmyk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/layout/cmyk.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/layout/gray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/layout/gray.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/layout/hsl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/layout/hsl.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/layout/hsv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/layout/hsv.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/layout/lab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/layout/lab.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/layout/luv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/layout/luv.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/layout/rgb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/layout/rgb.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/layout/yuv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/layout/yuv.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/primaries.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/primaries.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/colorspace/temperature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/colorspace/temperature.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/copy.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/draw/fill.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/draw/fill.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/filter/canny.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/filter/canny.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/filter/convolve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/filter/convolve.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/filter/correlate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/filter/correlate.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/filter/detail/kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/filter/detail/kernel.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/filter/floodFill.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/filter/floodFill.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/filter/gaussianKernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/filter/gaussianKernel.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/filter/localMaxima.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/filter/localMaxima.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/filter/motionVectors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/filter/motionVectors.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/filter/sobel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/filter/sobel.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/filter/thinning.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/filter/thinning.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/freetype/freegil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/freetype/freegil.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/freetype/utilgil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/freetype/utilgil.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/freetype/utilstl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/freetype/utilstl.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/generator/checkerboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/generator/checkerboard.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/generator/colorbars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/generator/colorbars.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/generator/colorcube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/generator/colorcube.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/generator/colorwheel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/generator/colorwheel.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/generator/constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/generator/constant.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/generator/rainbow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/generator/rainbow.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/generator/ramp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/generator/ramp.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/geometry/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/geometry/affine.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/geometry/pinning.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/geometry/pinning.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/geometry/subimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/geometry/subimage.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/globals.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/math.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/math/Matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/math/Matrix.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/math/Rect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/math/Rect.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/merge/MergeAbstractFunctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/merge/MergeAbstractFunctor.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/merge/MergeFunctors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/merge/MergeFunctors.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/merge/ViewsMerging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/merge/ViewsMerging.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/numeric/assign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/numeric/assign.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/numeric/assign_minmax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/numeric/assign_minmax.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/numeric/clamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/numeric/clamp.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/numeric/init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/numeric/init.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/numeric/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/numeric/log.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/numeric/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/numeric/matrix.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/numeric/minmax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/numeric/minmax.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/numeric/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/numeric/operations.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/numeric/operations_assign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/numeric/operations_assign.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/numeric/pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/numeric/pow.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/numeric/scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/numeric/scalar.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/numeric/scale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/numeric/scale.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/numeric/sqrt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/numeric/sqrt.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/openexr/half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/openexr/half.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/pixel_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/pixel_proxy.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/point/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/point/operations.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/point/ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/point/ostream.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/sampler/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/sampler/all.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/sampler/bc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/sampler/bc.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/sampler/bilinear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/sampler/bilinear.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/sampler/details.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/sampler/details.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/sampler/gaussian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/sampler/gaussian.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/sampler/lanczos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/sampler/lanczos.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/sampler/nearestNeighbor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/sampler/nearestNeighbor.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/sampler/resample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/sampler/resample.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/sampler/resample_progress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/sampler/resample_progress.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/sampler/resample_subimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/sampler/resample_subimage.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/sampler/sampler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/sampler/sampler.hpp -------------------------------------------------------------------------------- /libraries/terry/src/terry/typedefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/src/terry/typedefs.hpp -------------------------------------------------------------------------------- /libraries/terry/tests/colorspace/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/tests/colorspace/SConscript -------------------------------------------------------------------------------- /libraries/terry/tests/colorspace/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/tests/colorspace/main.cpp -------------------------------------------------------------------------------- /libraries/terry/tests/filter/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/tests/filter/SConscript -------------------------------------------------------------------------------- /libraries/terry/tests/filter/canny.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/tests/filter/canny.cpp -------------------------------------------------------------------------------- /libraries/terry/tests/filter/localMaxima.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/tests/filter/localMaxima.cpp -------------------------------------------------------------------------------- /libraries/terry/tests/filter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/tests/filter/main.cpp -------------------------------------------------------------------------------- /libraries/terry/tests/filter/motionVectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/tests/filter/motionVectors.cpp -------------------------------------------------------------------------------- /libraries/terry/tests/filter/thinning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/tests/filter/thinning.cpp -------------------------------------------------------------------------------- /libraries/terry/tests/rect/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/tests/rect/SConscript -------------------------------------------------------------------------------- /libraries/terry/tests/rect/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/terry/tests/rect/main.cpp -------------------------------------------------------------------------------- /libraries/tuttle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/compute/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/compute/testComputeTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/compute/testComputeTime.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/compute/testMultipleCompute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/compute/testMultipleCompute.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/compute/testSimpleNodeList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/compute/testSimpleNodeList.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/compute/testThreadEnv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/compute/testThreadEnv.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/graph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/graph/testBigGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/graph/testBigGraph.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/graph/testBitDepth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/graph/testBitDepth.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/graph/testExportDot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/graph/testExportDot.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/graph/testFps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/graph/testFps.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/graph/testGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/graph/testGraph.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/graph/testGraphConnections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/graph/testGraphConnections.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/graph/testProcessGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/graph/testProcessGraph.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/hash/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/hash/testGlobalHash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/hash/testGlobalHash.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/hash/testLocalHash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/hash/testLocalHash.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/memory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/memory/testMemoryCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/memory/testMemoryCache.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/memory/testUnusedNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/memory/testUnusedNodes.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/numpy/testInputBufferCallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/numpy/testInputBufferCallback.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/param/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/param/testParamProps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/param/testParamProps.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/param/testParamValues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/param/testParamValues.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/param/testProperties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/param/testProperties.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/plugin/testBrowsePlugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/plugin/testBrowsePlugins.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/plugin/testCheckerBlurWrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/plugin/testCheckerBlurWrite.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/plugin/testClamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/plugin/testClamp.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/plugin/testGetBestPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/plugin/testGetBestPlugin.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/plugin/testMerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/plugin/testMerge.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/plugin/testPluginDescription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/plugin/testPluginDescription.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/plugin/testPluginInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/plugin/testPluginInstance.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/plugin/testTimeShift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/plugin/testTimeShift.py -------------------------------------------------------------------------------- /libraries/tuttle/pyTest/plugin/testTranscodeVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/pyTest/plugin/testTranscodeVideo.py -------------------------------------------------------------------------------- /libraries/tuttle/src/dir.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/dir.doxygen -------------------------------------------------------------------------------- /libraries/tuttle/src/namespace.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/namespace.doxygen -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/README -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/atomic.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/cbytearray.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/cbytearray.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/exceptions.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/exceptions.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/exceptions.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/exceptions.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/global.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/global.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/math/minmax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/math/minmax.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/math/rectOp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/math/rectOp.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/ofx/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/ofx/core.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/ofx/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/ofx/core.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/ofx/imageEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/ofx/imageEffect.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/ofx/imageEffect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/ofx/imageEffect.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/ofx/imageEffect.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/ofx/imageEffect.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/ofx/utilities.cpp: -------------------------------------------------------------------------------- 1 | #include "utilities.hpp" 2 | -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/ofx/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/ofx/utilities.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/patterns/Singleton.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/patterns/Singleton.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/system/macos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/system/macos.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/system/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/system/macos.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/system/memoryInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/system/memoryInfo.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/system/memoryInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/system/memoryInfo.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/system/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/system/system.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/utils/FileGlobal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/utils/FileGlobal.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/utils/Formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/utils/Formatter.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/utils/Formatter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/utils/Formatter.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/utils/Formatter.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/utils/Formatter.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/utils/backtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/utils/backtrace.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/utils/backtrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/utils/backtrace.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/utils/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/utils/color.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/utils/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/utils/color.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/utils/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/utils/global.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/common/utils/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/common/utils/math.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Callback.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Callback.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Callback.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ComputeOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ComputeOptions.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ComputeOptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ComputeOptions.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ComputeOptions.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ComputeOptions.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Core.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Core.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Core.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Core.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Graph.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Graph.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Graph.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Graph.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/HostDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/HostDescriptor.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/HostDescriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/HostDescriptor.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/HostDescriptor.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/HostDescriptor.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/INode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/INode.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/INode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/INode.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/INode.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/INode.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ImageEffectNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ImageEffectNode.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ImageEffectNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ImageEffectNode.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ImageEffectNode.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ImageEffectNode.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/InputBufferWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/InputBufferWrapper.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/InputBufferWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/InputBufferWrapper.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/InputBufferWrapper.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/InputBufferWrapper.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Node.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Node.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Node.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Node.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/NodeAtTimeKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/NodeAtTimeKey.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/NodeAtTimeKey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/NodeAtTimeKey.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/NodeAtTimeKey.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/NodeAtTimeKey.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/NodeHashContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/NodeHashContainer.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/NodeHashContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/NodeHashContainer.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/NodeHashContainer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/NodeHashContainer.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/NodeListArg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/NodeListArg.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/NodeListArg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/NodeListArg.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/NodeListArg.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/NodeListArg.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/OutputBufferWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/OutputBufferWrapper.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/OutputBufferWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/OutputBufferWrapper.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/OutputBufferWrapper.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/OutputBufferWrapper.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/OverlayInteract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/OverlayInteract.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/OverlayInteract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/OverlayInteract.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/OverlayInteract.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/OverlayInteract.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Preferences.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Preferences.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Preferences.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/Preferences.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/Preferences.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/PreloadPlugins.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/PreloadPlugins.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ThreadEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ThreadEnv.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ThreadEnv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ThreadEnv.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ThreadEnv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ThreadEnv.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/Attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/Attribute.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/Attribute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/Attribute.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/Attribute.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/Attribute.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/ClipImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/ClipImage.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/ClipImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/ClipImage.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/ClipImage.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/ClipImage.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/Image.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/Image.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/Image.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/Image.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/Param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/Param.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/Param.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/Param.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/Param.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/Param.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/ParamDoubleMultiDim.cpp: -------------------------------------------------------------------------------- 1 | #include "ParamDoubleMultiDim.hpp" 2 | -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/ParamPage.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/ParamPage.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/ParamRGB.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/ParamRGB.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/ParamRGBA.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/ParamRGBA.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/ValueInterpolator.cpp: -------------------------------------------------------------------------------- 1 | #include "ValueInterpolator.hpp" 2 | -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/attribute/allParams.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/attribute/allParams.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/exceptions.cpp: -------------------------------------------------------------------------------- 1 | #include "exceptions.hpp" 2 | -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/exceptions.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/exceptions.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/exceptions.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/global.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/global.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/graph/IEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/graph/IEdge.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/graph/IEdge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/graph/IEdge.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/graph/IVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/graph/IVertex.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/graph/IVertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/graph/IVertex.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/graph/ProcessEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/graph/ProcessEdge.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/graph/ProcessEdge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/graph/ProcessEdge.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/graph/ProcessGraph.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/graph/ProcessGraph.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/graph/UEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/graph/UEdge.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/graph/UEdge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/graph/UEdge.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/graph/UVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/graph/UVertex.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/graph/UVertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/graph/UVertex.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/graph/Visitors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/graph/Visitors.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/io.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/io.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/io.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/io.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/memory/IMemoryCache.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/memory/IMemoryCache.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/memory/IMemoryPool.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/memory/IMemoryPool.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/memory/LinkData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/memory/LinkData.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/memory/MemoryCache.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/memory/MemoryCache.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/memory/MemoryPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/memory/MemoryPool.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/memory/MemoryPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/memory/MemoryPool.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/memory/MemoryPool.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/memory/MemoryPool.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhBinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhBinary.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhBinary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhBinary.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhBinary.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhBinary.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhCore.cpp: -------------------------------------------------------------------------------- 1 | #include "OfxhCore.hpp" 2 | -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhCore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhCore.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhException.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhException.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhException.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhHost.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhHost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhHost.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhHost.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhHost.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhIObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhIObject.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhIObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhIObject.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhImage.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhImage.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhImage.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhImage.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhInteract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhInteract.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhInteract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhInteract.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhInteract.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhInteract.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhMajorPlugin.cpp: -------------------------------------------------------------------------------- 1 | #include "OfxhMajorPlugin.hpp" 2 | -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhMajorPlugin.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhMajorPlugin.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhMemory.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhMemory.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhMessage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhMessage.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhPlugin.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhPlugin.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhPlugin.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhPlugin.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhPluginCache.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhPluginCache.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhPluginDesc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhPluginDesc.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhProgress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhProgress.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhTimeline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhTimeline.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/OfxhUtilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/ofx/OfxhUtilities.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/ofx/property/OfxhNotifyHook.cpp: -------------------------------------------------------------------------------- 1 | #include "OfxhNotifyHook.hpp" 2 | -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/serialization.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/tuttle.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/tuttle.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/version.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/host/wrappers/numpy.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/host/wrappers/numpy.i -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/IProgress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/IProgress.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/IProgress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/IProgress.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/ImageProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/ImageProcessor.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/NoProgress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/NoProgress.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/NoProgress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/NoProgress.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/OfxProgress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/OfxProgress.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/OfxProgress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/OfxProgress.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/Plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/Plugin.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/exceptions.cpp: -------------------------------------------------------------------------------- 1 | #include "exceptions.hpp" 2 | -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/exceptions.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/global.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/image.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/interact/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/interact/Color.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/interact/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/interact/Color.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/interact/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/interact/Frame.cpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/interact/Frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/interact/Frame.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/interact/InteractInfos.cpp: -------------------------------------------------------------------------------- 1 | #include "InteractInfos.hpp" 2 | -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/interact/ParamPoint.cpp: -------------------------------------------------------------------------------- 1 | #include "ParamPoint.hpp" 2 | -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/interact/ParamRectangleFromCenterSize.cpp: -------------------------------------------------------------------------------- 1 | #include "ParamRectangleFromCenterSize.hpp" 2 | -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/interact/ParamRectangleFromTwoCorners.cpp: -------------------------------------------------------------------------------- 1 | #include "ParamRectangleFromTwoCorners.hpp" 2 | -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/numeric/rectOp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/numeric/rectOp.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/ofxToGil/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/ofxToGil/all.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/ofxToGil/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/ofxToGil/color.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/ofxToGil/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/ofxToGil/image.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/ofxToGil/point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/ofxToGil/point.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/ofxToGil/rect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/ofxToGil/rect.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/opengl/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/opengl/gl.h -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/plugin/param/gilColor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/plugin/param/gilColor.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/test/io/reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/test/io/reader.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/test/io/writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/test/io/writer.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/test/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/test/main.hpp -------------------------------------------------------------------------------- /libraries/tuttle/src/tuttle/test/unit_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/src/tuttle/test/unit_test.hpp -------------------------------------------------------------------------------- /libraries/tuttle/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/tuttle/tests/asynchronous/asynchronous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/tests/asynchronous/asynchronous.cpp -------------------------------------------------------------------------------- /libraries/tuttle/tests/boostgraph/boostGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/tests/boostgraph/boostGraph.cpp -------------------------------------------------------------------------------- /libraries/tuttle/tests/graph/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/tests/graph/graph.cpp -------------------------------------------------------------------------------- /libraries/tuttle/tests/internalGraph/internalGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/tests/internalGraph/internalGraph.cpp -------------------------------------------------------------------------------- /libraries/tuttle/tests/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/tests/memory/memory.cpp -------------------------------------------------------------------------------- /libraries/tuttle/tests/ofx/clone/ofx_clone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/tests/ofx/clone/ofx_clone.cpp -------------------------------------------------------------------------------- /libraries/tuttle/tests/ofx/plugin/ofx_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/tests/ofx/plugin/ofx_plugin.cpp -------------------------------------------------------------------------------- /libraries/tuttle/tests/ofx/properties/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/tests/ofx/properties/properties.cpp -------------------------------------------------------------------------------- /libraries/tuttle/tests/test1/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/tests/test1/test1.cpp -------------------------------------------------------------------------------- /libraries/tuttle/tests/time/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/libraries/tuttle/tests/time/time.cpp -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/_scripts/ImageEffectApi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/_scripts/ImageEffectApi/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/_scripts/ImageEffectApi/src/mainEntry.cpp_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/_scripts/ImageEffectApi/src/mainEntry.cpp_ -------------------------------------------------------------------------------- /plugins/_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/_scripts/README.md -------------------------------------------------------------------------------- /plugins/_scripts/checkBrackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/_scripts/checkBrackets.py -------------------------------------------------------------------------------- /plugins/_scripts/newPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/_scripts/newPlugin.py -------------------------------------------------------------------------------- /plugins/_scripts/renameInDirectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/_scripts/renameInDirectory.py -------------------------------------------------------------------------------- /plugins/dir.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/dir.doxygen -------------------------------------------------------------------------------- /plugins/image/display/ColorCubeViewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/ColorCubeViewer/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/display/Histogram/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Histogram/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/display/Histogram/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Histogram/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/display/Histogram/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Histogram/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/display/Histogram/src/HSLOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Histogram/src/HSLOverlay.cpp -------------------------------------------------------------------------------- /plugins/image/display/Histogram/src/HSLOverlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Histogram/src/HSLOverlay.hpp -------------------------------------------------------------------------------- /plugins/image/display/Histogram/src/OverlayData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Histogram/src/OverlayData.cpp -------------------------------------------------------------------------------- /plugins/image/display/Histogram/src/OverlayData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Histogram/src/OverlayData.hpp -------------------------------------------------------------------------------- /plugins/image/display/Histogram/src/RGBOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Histogram/src/RGBOverlay.cpp -------------------------------------------------------------------------------- /plugins/image/display/Histogram/src/RGBOverlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Histogram/src/RGBOverlay.hpp -------------------------------------------------------------------------------- /plugins/image/display/Histogram/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Histogram/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/display/Viewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Viewer/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/display/Viewer/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Viewer/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/display/Viewer/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Viewer/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/display/Viewer/src/ViewerAlgorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Viewer/src/ViewerAlgorithm.hpp -------------------------------------------------------------------------------- /plugins/image/display/Viewer/src/ViewerDefinitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Viewer/src/ViewerDefinitions.hpp -------------------------------------------------------------------------------- /plugins/image/display/Viewer/src/ViewerPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Viewer/src/ViewerPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/display/Viewer/src/ViewerPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Viewer/src/ViewerPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/display/Viewer/src/ViewerProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Viewer/src/ViewerProcess.hpp -------------------------------------------------------------------------------- /plugins/image/display/Viewer/src/ViewerProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Viewer/src/ViewerProcess.tcc -------------------------------------------------------------------------------- /plugins/image/display/Viewer/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/display/Viewer/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/generator/Checkerboard/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Checkerboard/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/generator/Checkerboard/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Checkerboard/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/generator/ColorBars/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/ColorBars/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/generator/ColorBars/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/ColorBars/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/generator/ColorBars/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/ColorBars/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/generator/ColorBars/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/ColorBars/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/generator/ColorCube/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/ColorCube/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/generator/ColorCube/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/ColorCube/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/generator/ColorCube/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/ColorCube/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/generator/ColorCube/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/ColorCube/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/generator/ColorGradient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/ColorGradient/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/generator/ColorWheel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/ColorWheel/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/generator/ColorWheel/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/ColorWheel/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/generator/Constant/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Constant/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/generator/Constant/Resources/.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Constant/Resources/.directory -------------------------------------------------------------------------------- /plugins/image/generator/Constant/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Constant/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/generator/Constant/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Constant/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/generator/Constant/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Constant/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/Resources/tuttle.ramp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/Resources/tuttle.ramp.png -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/Resources/tuttle.ramp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/Resources/tuttle.ramp.svg -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/src/RampAlgorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/src/RampAlgorithm.hpp -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/src/RampDefinitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/src/RampDefinitions.hpp -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/src/RampPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/src/RampPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/src/RampPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/src/RampPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/src/RampPluginFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/src/RampPluginFactory.cpp -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/src/RampPluginFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/src/RampPluginFactory.hpp -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/src/RampProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/src/RampProcess.hpp -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/src/RampProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/src/RampProcess.tcc -------------------------------------------------------------------------------- /plugins/image/generator/Ramp/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Ramp/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/generator/SeExpr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/SeExpr/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/generator/SeExpr/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/SeExpr/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/generator/SeExpr/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/SeExpr/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/generator/SeExpr/src/SeExprAlgorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/SeExpr/src/SeExprAlgorithm.hpp -------------------------------------------------------------------------------- /plugins/image/generator/SeExpr/src/SeExprPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/SeExpr/src/SeExprPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/generator/SeExpr/src/SeExprPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/SeExpr/src/SeExprPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/generator/SeExpr/src/SeExprProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/SeExpr/src/SeExprProcess.hpp -------------------------------------------------------------------------------- /plugins/image/generator/SeExpr/src/SeExprProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/SeExpr/src/SeExprProcess.tcc -------------------------------------------------------------------------------- /plugins/image/generator/SeExpr/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/SeExpr/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/generator/Text/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Text/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/generator/Text/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Text/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/generator/Text/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Text/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/generator/Text/Resources/tuttle.text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Text/Resources/tuttle.text.png -------------------------------------------------------------------------------- /plugins/image/generator/Text/Resources/tuttle.text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Text/Resources/tuttle.text.svg -------------------------------------------------------------------------------- /plugins/image/generator/Text/src/TextDefinitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Text/src/TextDefinitions.hpp -------------------------------------------------------------------------------- /plugins/image/generator/Text/src/TextPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Text/src/TextPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/generator/Text/src/TextPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Text/src/TextPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/generator/Text/src/TextPluginFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Text/src/TextPluginFactory.cpp -------------------------------------------------------------------------------- /plugins/image/generator/Text/src/TextPluginFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Text/src/TextPluginFactory.hpp -------------------------------------------------------------------------------- /plugins/image/generator/Text/src/TextProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Text/src/TextProcess.hpp -------------------------------------------------------------------------------- /plugins/image/generator/Text/src/TextProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Text/src/TextProcess.tcc -------------------------------------------------------------------------------- /plugins/image/generator/Text/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/generator/Text/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/io/AudioVideo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/AudioVideo/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/io/AudioVideo/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/AudioVideo/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/io/AudioVideo/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/AudioVideo/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/io/AudioVideo/src/common/LibAVParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/AudioVideo/src/common/LibAVParams.cpp -------------------------------------------------------------------------------- /plugins/image/io/AudioVideo/src/common/LibAVParams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/AudioVideo/src/common/LibAVParams.hpp -------------------------------------------------------------------------------- /plugins/image/io/AudioVideo/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/AudioVideo/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/io/Exr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/io/Exr/Resources/tuttle.exrreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/Resources/tuttle.exrreader.png -------------------------------------------------------------------------------- /plugins/image/io/Exr/Resources/tuttle.exrreader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/Resources/tuttle.exrreader.svg -------------------------------------------------------------------------------- /plugins/image/io/Exr/Resources/tuttle.exrwriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/Resources/tuttle.exrwriter.png -------------------------------------------------------------------------------- /plugins/image/io/Exr/Resources/tuttle.exrwriter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/Resources/tuttle.exrwriter.svg -------------------------------------------------------------------------------- /plugins/image/io/Exr/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/io/Exr/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/io/Exr/src/EXRDefinitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/src/EXRDefinitions.hpp -------------------------------------------------------------------------------- /plugins/image/io/Exr/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/io/Exr/src/reader/EXRReaderPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/src/reader/EXRReaderPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/io/Exr/src/reader/EXRReaderPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/src/reader/EXRReaderPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/io/Exr/src/reader/EXRReaderProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/src/reader/EXRReaderProcess.hpp -------------------------------------------------------------------------------- /plugins/image/io/Exr/src/reader/EXRReaderProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/src/reader/EXRReaderProcess.tcc -------------------------------------------------------------------------------- /plugins/image/io/Exr/src/reader/gil_fixes/channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/src/reader/gil_fixes/channel.hpp -------------------------------------------------------------------------------- /plugins/image/io/Exr/src/reader/gil_fixes/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/src/reader/gil_fixes/readme.txt -------------------------------------------------------------------------------- /plugins/image/io/Exr/src/writer/EXRWriterPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/src/writer/EXRWriterPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/io/Exr/src/writer/EXRWriterPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/src/writer/EXRWriterPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/io/Exr/src/writer/EXRWriterProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/src/writer/EXRWriterProcess.hpp -------------------------------------------------------------------------------- /plugins/image/io/Exr/src/writer/EXRWriterProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/src/writer/EXRWriterProcess.tcc -------------------------------------------------------------------------------- /plugins/image/io/Exr/tests/plugin_io_exr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Exr/tests/plugin_io_exr.cpp -------------------------------------------------------------------------------- /plugins/image/io/ImageMagick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/ImageMagick/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/io/ImageMagick/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/ImageMagick/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/io/ImageMagick/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/ImageMagick/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/io/ImageMagick/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/ImageMagick/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/io/Jpeg2000/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Jpeg2000/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/io/Jpeg2000/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Jpeg2000/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/io/Jpeg2000/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Jpeg2000/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/io/Jpeg2000/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Jpeg2000/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/io/Jpeg2000/src/openjpeg/J2KCommon.cpp: -------------------------------------------------------------------------------- 1 | #include "J2KCommon.hpp" 2 | -------------------------------------------------------------------------------- /plugins/image/io/Jpeg2000/src/openjpeg/J2KCommon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Jpeg2000/src/openjpeg/J2KCommon.hpp -------------------------------------------------------------------------------- /plugins/image/io/Jpeg2000/src/openjpeg/J2KReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Jpeg2000/src/openjpeg/J2KReader.cpp -------------------------------------------------------------------------------- /plugins/image/io/Jpeg2000/src/openjpeg/J2KReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Jpeg2000/src/openjpeg/J2KReader.hpp -------------------------------------------------------------------------------- /plugins/image/io/Jpeg2000/src/openjpeg/J2KWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Jpeg2000/src/openjpeg/J2KWriter.cpp -------------------------------------------------------------------------------- /plugins/image/io/Jpeg2000/src/openjpeg/J2KWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Jpeg2000/src/openjpeg/J2KWriter.hpp -------------------------------------------------------------------------------- /plugins/image/io/Jpeg2000/tests/plugin_io_jpeg2000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Jpeg2000/tests/plugin_io_jpeg2000.cpp -------------------------------------------------------------------------------- /plugins/image/io/MemoryBuffer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/MemoryBuffer/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/io/MemoryBuffer/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/MemoryBuffer/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/io/MemoryBuffer/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/MemoryBuffer/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/io/MemoryBuffer/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/MemoryBuffer/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/io/MemoryBuffer/src/pointerParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/MemoryBuffer/src/pointerParam.cpp -------------------------------------------------------------------------------- /plugins/image/io/MemoryBuffer/src/pointerParam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/MemoryBuffer/src/pointerParam.hpp -------------------------------------------------------------------------------- /plugins/image/io/OpenImageIO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/OpenImageIO/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/io/OpenImageIO/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/OpenImageIO/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/io/OpenImageIO/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/OpenImageIO/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/io/OpenImageIO/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/OpenImageIO/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/io/Png/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/io/Png/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/io/Png/Resources/tuttle.pngreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/Resources/tuttle.pngreader.png -------------------------------------------------------------------------------- /plugins/image/io/Png/Resources/tuttle.pngreader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/Resources/tuttle.pngreader.svg -------------------------------------------------------------------------------- /plugins/image/io/Png/Resources/tuttle.pngwriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/Resources/tuttle.pngwriter.png -------------------------------------------------------------------------------- /plugins/image/io/Png/Resources/tuttle.pngwriter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/Resources/tuttle.pngwriter.svg -------------------------------------------------------------------------------- /plugins/image/io/Png/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/io/Png/src/PngEngine/pngDefinitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/src/PngEngine/pngDefinitions.hpp -------------------------------------------------------------------------------- /plugins/image/io/Png/src/PngEngine/png_adds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/src/PngEngine/png_adds.hpp -------------------------------------------------------------------------------- /plugins/image/io/Png/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/io/Png/src/reader/PngReaderPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/src/reader/PngReaderPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/io/Png/src/reader/PngReaderPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/src/reader/PngReaderPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/io/Png/src/reader/PngReaderProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/src/reader/PngReaderProcess.hpp -------------------------------------------------------------------------------- /plugins/image/io/Png/src/reader/PngReaderProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/src/reader/PngReaderProcess.tcc -------------------------------------------------------------------------------- /plugins/image/io/Png/src/writer/PngWriterPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/src/writer/PngWriterPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/io/Png/src/writer/PngWriterPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/src/writer/PngWriterPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/io/Png/src/writer/PngWriterProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/src/writer/PngWriterProcess.hpp -------------------------------------------------------------------------------- /plugins/image/io/Png/src/writer/PngWriterProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/src/writer/PngWriterProcess.tcc -------------------------------------------------------------------------------- /plugins/image/io/Png/tests/plugin_io_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Png/tests/plugin_io_png.cpp -------------------------------------------------------------------------------- /plugins/image/io/Raw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Raw/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/io/Raw/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Raw/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/io/Raw/Resources/tuttle.rawreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Raw/Resources/tuttle.rawreader.png -------------------------------------------------------------------------------- /plugins/image/io/Raw/Resources/tuttle.rawreader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Raw/Resources/tuttle.rawreader.svg -------------------------------------------------------------------------------- /plugins/image/io/Raw/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Raw/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/io/Raw/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Raw/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/io/Raw/src/reader/RawReaderPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Raw/src/reader/RawReaderPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/io/Raw/src/reader/RawReaderPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Raw/src/reader/RawReaderPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/io/Raw/src/reader/RawReaderProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Raw/src/reader/RawReaderProcess.hpp -------------------------------------------------------------------------------- /plugins/image/io/Raw/src/reader/RawReaderProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Raw/src/reader/RawReaderProcess.tcc -------------------------------------------------------------------------------- /plugins/image/io/Raw/tests/plugin_io_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/Raw/tests/plugin_io_raw.cpp -------------------------------------------------------------------------------- /plugins/image/io/test/checkTestImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/test/checkTestImage.py -------------------------------------------------------------------------------- /plugins/image/io/test/cleanTestImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/test/cleanTestImages.py -------------------------------------------------------------------------------- /plugins/image/io/test/generateTestImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/io/test/generateTestImages.py -------------------------------------------------------------------------------- /plugins/image/process/channel/Component/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/channel/Component/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/color/BasicKeyer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/BasicKeyer/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/color/BitDepth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/BitDepth/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/color/BitDepth/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/BitDepth/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/color/CTL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/CTL/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/color/CTL/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/CTL/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/process/color/CTL/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/CTL/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/process/color/CTL/src/CTLAlgorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/CTL/src/CTLAlgorithm.hpp -------------------------------------------------------------------------------- /plugins/image/process/color/CTL/src/CTLDefinitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/CTL/src/CTLDefinitions.hpp -------------------------------------------------------------------------------- /plugins/image/process/color/CTL/src/CTLPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/CTL/src/CTLPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/process/color/CTL/src/CTLPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/CTL/src/CTLPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/process/color/CTL/src/CTLProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/CTL/src/CTLProcess.hpp -------------------------------------------------------------------------------- /plugins/image/process/color/CTL/src/CTLProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/CTL/src/CTLProcess.tcc -------------------------------------------------------------------------------- /plugins/image/process/color/CTL/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/CTL/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/color/ColorTransfer/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/ColorTransfer/AUTHORS -------------------------------------------------------------------------------- /plugins/image/process/color/Colorspace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Colorspace/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/color/Gamma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Gamma/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/color/Gamma/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Gamma/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/process/color/Gamma/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Gamma/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/process/color/Gamma/src/GammaPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Gamma/src/GammaPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/process/color/Gamma/src/GammaPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Gamma/src/GammaPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/process/color/Gamma/src/GammaProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Gamma/src/GammaProcess.hpp -------------------------------------------------------------------------------- /plugins/image/process/color/Gamma/src/GammaProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Gamma/src/GammaProcess.tcc -------------------------------------------------------------------------------- /plugins/image/process/color/Gamma/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Gamma/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/color/IdKeyer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/IdKeyer/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/color/IdKeyer/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/IdKeyer/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/color/Invert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Invert/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/color/Invert/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Invert/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/color/Lut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Lut/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/color/Lut/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Lut/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/process/color/Lut/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Lut/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/process/color/Lut/src/LutDefinitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Lut/src/LutDefinitions.hpp -------------------------------------------------------------------------------- /plugins/image/process/color/Lut/src/LutPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Lut/src/LutPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/process/color/Lut/src/LutPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Lut/src/LutPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/process/color/Lut/src/LutProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Lut/src/LutProcess.hpp -------------------------------------------------------------------------------- /plugins/image/process/color/Lut/src/LutProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Lut/src/LutProcess.tcc -------------------------------------------------------------------------------- /plugins/image/process/color/Lut/src/lutEngine/Lut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Lut/src/lutEngine/Lut.cpp -------------------------------------------------------------------------------- /plugins/image/process/color/Lut/src/lutEngine/Lut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Lut/src/lutEngine/Lut.hpp -------------------------------------------------------------------------------- /plugins/image/process/color/Lut/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Lut/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/color/Lut/tests/test1/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Lut/tests/test1/SConscript -------------------------------------------------------------------------------- /plugins/image/process/color/Lut/tests/test1/ident.3dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Lut/tests/test1/ident.3dl -------------------------------------------------------------------------------- /plugins/image/process/color/Normalize/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Normalize/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/color/OCIO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/OCIO/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/color/OCIO/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/OCIO/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/process/color/OCIO/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/OCIO/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/process/color/OCIO/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/OCIO/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/color/Print/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Print/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/color/Print/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Print/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/process/color/Print/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Print/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/process/color/Print/src/PrintPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Print/src/PrintPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/process/color/Print/src/PrintPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Print/src/PrintPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/process/color/Print/src/PrintProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Print/src/PrintProcess.hpp -------------------------------------------------------------------------------- /plugins/image/process/color/Print/src/PrintProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Print/src/PrintProcess.tcc -------------------------------------------------------------------------------- /plugins/image/process/color/Print/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/color/Print/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/filter/Blur/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/Blur/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/filter/Blur/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/Blur/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/image/process/filter/Blur/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/Blur/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/image/process/filter/Blur/src/BlurPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/Blur/src/BlurPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/process/filter/Blur/src/BlurPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/Blur/src/BlurPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/process/filter/Blur/src/BlurProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/Blur/src/BlurProcess.hpp -------------------------------------------------------------------------------- /plugins/image/process/filter/Blur/src/BlurProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/Blur/src/BlurProcess.tcc -------------------------------------------------------------------------------- /plugins/image/process/filter/Blur/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/Blur/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/filter/FloodFill/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/FloodFill/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/filter/Sobel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/Sobel/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/filter/Sobel/src/SobelPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/Sobel/src/SobelPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/process/filter/Sobel/src/SobelPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/Sobel/src/SobelPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/process/filter/Sobel/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/Sobel/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/filter/Thinning/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/filter/Thinning/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/geometry/Crop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Crop/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/geometry/Crop/src/CropMargin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Crop/src/CropMargin.cpp -------------------------------------------------------------------------------- /plugins/image/process/geometry/Crop/src/CropMargin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Crop/src/CropMargin.hpp -------------------------------------------------------------------------------- /plugins/image/process/geometry/Crop/src/CropPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Crop/src/CropPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/process/geometry/Crop/src/CropPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Crop/src/CropPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/process/geometry/Crop/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Crop/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/geometry/Flip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Flip/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/geometry/Flip/src/FlipPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Flip/src/FlipPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/process/geometry/Flip/src/FlipPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Flip/src/FlipPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/process/geometry/Flip/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Flip/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/geometry/Move2D/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Move2D/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/geometry/Pinning/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Pinning/AUTHORS -------------------------------------------------------------------------------- /plugins/image/process/geometry/Pinning/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Pinning/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/geometry/Resize/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Resize/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/geometry/Warp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Warp/AUTHORS -------------------------------------------------------------------------------- /plugins/image/process/geometry/Warp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Warp/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/geometry/Warp/src/TPS/tps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Warp/src/TPS/tps.hpp -------------------------------------------------------------------------------- /plugins/image/process/geometry/Warp/src/TPS/tps.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Warp/src/TPS/tps.tcc -------------------------------------------------------------------------------- /plugins/image/process/geometry/Warp/src/WarpPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Warp/src/WarpPlugin.cpp -------------------------------------------------------------------------------- /plugins/image/process/geometry/Warp/src/WarpPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Warp/src/WarpPlugin.hpp -------------------------------------------------------------------------------- /plugins/image/process/geometry/Warp/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/geometry/Warp/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/math/MathOperator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/math/MathOperator/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/time/TimeShift/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/time/TimeShift/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/time/TimeShift/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/time/TimeShift/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/image/process/transition/Fade/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/transition/Fade/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/image/process/transition/Merge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/image/process/transition/Merge/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/param/Math/src/ParamMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/Math/src/ParamMath.cpp -------------------------------------------------------------------------------- /plugins/param/analysis/Diff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/Diff/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/param/analysis/Diff/Resources/tuttle.diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/Diff/Resources/tuttle.diff.png -------------------------------------------------------------------------------- /plugins/param/analysis/Diff/Resources/tuttle.diff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/Diff/Resources/tuttle.diff.svg -------------------------------------------------------------------------------- /plugins/param/analysis/Diff/Resources/tuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/Diff/Resources/tuttle.png -------------------------------------------------------------------------------- /plugins/param/analysis/Diff/Resources/tuttle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/Diff/Resources/tuttle.svg -------------------------------------------------------------------------------- /plugins/param/analysis/Diff/src/DiffDefinitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/Diff/src/DiffDefinitions.hpp -------------------------------------------------------------------------------- /plugins/param/analysis/Diff/src/DiffPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/Diff/src/DiffPlugin.cpp -------------------------------------------------------------------------------- /plugins/param/analysis/Diff/src/DiffPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/Diff/src/DiffPlugin.hpp -------------------------------------------------------------------------------- /plugins/param/analysis/Diff/src/DiffPluginFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/Diff/src/DiffPluginFactory.cpp -------------------------------------------------------------------------------- /plugins/param/analysis/Diff/src/DiffPluginFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/Diff/src/DiffPluginFactory.hpp -------------------------------------------------------------------------------- /plugins/param/analysis/Diff/src/DiffProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/Diff/src/DiffProcess.hpp -------------------------------------------------------------------------------- /plugins/param/analysis/Diff/src/DiffProcess.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/Diff/src/DiffProcess.tcc -------------------------------------------------------------------------------- /plugins/param/analysis/Diff/src/mainEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/Diff/src/mainEntry.cpp -------------------------------------------------------------------------------- /plugins/param/analysis/ImageStatistics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/analysis/ImageStatistics/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/param/debug/DebugImageEffectApi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/plugins/param/debug/DebugImageEffectApi/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | !/README 4 | -------------------------------------------------------------------------------- /plugins/private/README: -------------------------------------------------------------------------------- 1 | Put your private plugins here. 2 | -------------------------------------------------------------------------------- /tools/format/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/tools/format/.clang-format -------------------------------------------------------------------------------- /tools/format/format_all_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/tools/format/format_all_files.sh -------------------------------------------------------------------------------- /tools/get_glibc_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/tools/get_glibc_versions.py -------------------------------------------------------------------------------- /tools/travis/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/tools/travis/build.sh -------------------------------------------------------------------------------- /tools/travis/coverity_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/tools/travis/coverity_env.sh -------------------------------------------------------------------------------- /tools/travis/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/tools/travis/deploy.sh -------------------------------------------------------------------------------- /tools/travis/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/tools/travis/install_dependencies.sh -------------------------------------------------------------------------------- /tools/travis/launch_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/tools/travis/launch_tests.sh -------------------------------------------------------------------------------- /tools/upload_on_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuttleofx/TuttleOFX/HEAD/tools/upload_on_drive.py --------------------------------------------------------------------------------