├── .gitignore ├── CoreImageTool.1 ├── CoreImageTool.xcodeproj ├── liyanage.perspective ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── CoreImageTool.xcscheme ├── CoreImageTool_Prefix.pch ├── README.md ├── license.txt ├── notes.txt ├── src ├── Action.h ├── Action.m ├── ActionFilter.h ├── ActionFilter.m ├── ActionLoad.h ├── ActionLoad.m ├── ActionSleep.h ├── ActionSleep.m ├── ActionStore.h ├── ActionStore.m ├── ActionVerbose.h ├── ActionVerbose.m ├── ActionVersion.h ├── ActionVersion.m ├── CommandLineDriver.h ├── CommandLineDriver.m ├── CoreImageTool.m ├── FilterParameterParser.h ├── FilterParameterParser.m ├── FilterParameterParserGeneric.h ├── FilterParameterParserGeneric.m ├── ImageProcessor.h ├── ImageProcessor.m ├── KeyedImageSourceProtocol.h ├── LoggerProtocol.h ├── ValueClassConverter.h ├── ValueClassConverter.m ├── ValueClassConverterCIColor.h ├── ValueClassConverterCIColor.m ├── ValueClassConverterCIImage.h ├── ValueClassConverterCIImage.m ├── ValueClassConverterCIVector.h ├── ValueClassConverterCIVector.m ├── ValueClassConverterNSAffineTransform.h ├── ValueClassConverterNSAffineTransform.m ├── ValueClassConverterNSNumber.h ├── ValueClassConverterNSNumber.m └── Version.h └── test-images ├── .gitignore ├── test1-in.jpg └── test2-in.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/.gitignore -------------------------------------------------------------------------------- /CoreImageTool.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/CoreImageTool.1 -------------------------------------------------------------------------------- /CoreImageTool.xcodeproj/liyanage.perspective: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/CoreImageTool.xcodeproj/liyanage.perspective -------------------------------------------------------------------------------- /CoreImageTool.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/CoreImageTool.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CoreImageTool.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/CoreImageTool.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CoreImageTool.xcodeproj/xcshareddata/xcschemes/CoreImageTool.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/CoreImageTool.xcodeproj/xcshareddata/xcschemes/CoreImageTool.xcscheme -------------------------------------------------------------------------------- /CoreImageTool_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/CoreImageTool_Prefix.pch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/license.txt -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/notes.txt -------------------------------------------------------------------------------- /src/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/Action.h -------------------------------------------------------------------------------- /src/Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/Action.m -------------------------------------------------------------------------------- /src/ActionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ActionFilter.h -------------------------------------------------------------------------------- /src/ActionFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ActionFilter.m -------------------------------------------------------------------------------- /src/ActionLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ActionLoad.h -------------------------------------------------------------------------------- /src/ActionLoad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ActionLoad.m -------------------------------------------------------------------------------- /src/ActionSleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ActionSleep.h -------------------------------------------------------------------------------- /src/ActionSleep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ActionSleep.m -------------------------------------------------------------------------------- /src/ActionStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ActionStore.h -------------------------------------------------------------------------------- /src/ActionStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ActionStore.m -------------------------------------------------------------------------------- /src/ActionVerbose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ActionVerbose.h -------------------------------------------------------------------------------- /src/ActionVerbose.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ActionVerbose.m -------------------------------------------------------------------------------- /src/ActionVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ActionVersion.h -------------------------------------------------------------------------------- /src/ActionVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ActionVersion.m -------------------------------------------------------------------------------- /src/CommandLineDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/CommandLineDriver.h -------------------------------------------------------------------------------- /src/CommandLineDriver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/CommandLineDriver.m -------------------------------------------------------------------------------- /src/CoreImageTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/CoreImageTool.m -------------------------------------------------------------------------------- /src/FilterParameterParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/FilterParameterParser.h -------------------------------------------------------------------------------- /src/FilterParameterParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/FilterParameterParser.m -------------------------------------------------------------------------------- /src/FilterParameterParserGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/FilterParameterParserGeneric.h -------------------------------------------------------------------------------- /src/FilterParameterParserGeneric.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/FilterParameterParserGeneric.m -------------------------------------------------------------------------------- /src/ImageProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ImageProcessor.h -------------------------------------------------------------------------------- /src/ImageProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ImageProcessor.m -------------------------------------------------------------------------------- /src/KeyedImageSourceProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/KeyedImageSourceProtocol.h -------------------------------------------------------------------------------- /src/LoggerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/LoggerProtocol.h -------------------------------------------------------------------------------- /src/ValueClassConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ValueClassConverter.h -------------------------------------------------------------------------------- /src/ValueClassConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ValueClassConverter.m -------------------------------------------------------------------------------- /src/ValueClassConverterCIColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ValueClassConverterCIColor.h -------------------------------------------------------------------------------- /src/ValueClassConverterCIColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ValueClassConverterCIColor.m -------------------------------------------------------------------------------- /src/ValueClassConverterCIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ValueClassConverterCIImage.h -------------------------------------------------------------------------------- /src/ValueClassConverterCIImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ValueClassConverterCIImage.m -------------------------------------------------------------------------------- /src/ValueClassConverterCIVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ValueClassConverterCIVector.h -------------------------------------------------------------------------------- /src/ValueClassConverterCIVector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ValueClassConverterCIVector.m -------------------------------------------------------------------------------- /src/ValueClassConverterNSAffineTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ValueClassConverterNSAffineTransform.h -------------------------------------------------------------------------------- /src/ValueClassConverterNSAffineTransform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ValueClassConverterNSAffineTransform.m -------------------------------------------------------------------------------- /src/ValueClassConverterNSNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ValueClassConverterNSNumber.h -------------------------------------------------------------------------------- /src/ValueClassConverterNSNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/ValueClassConverterNSNumber.m -------------------------------------------------------------------------------- /src/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/src/Version.h -------------------------------------------------------------------------------- /test-images/.gitignore: -------------------------------------------------------------------------------- 1 | /*-out* 2 | -------------------------------------------------------------------------------- /test-images/test1-in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/test-images/test1-in.jpg -------------------------------------------------------------------------------- /test-images/test2-in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyanage/coreimagetool/HEAD/test-images/test2-in.jpg --------------------------------------------------------------------------------