├── .gitignore ├── Carthage └── Build │ ├── ._Current.version │ └── iOS │ ├── B99C44DD-E65A-318A-A259-27044308AC4F.bcsymbolmap │ └── Sweetfish.framework │ ├── DeepLabV3.mlmodelc │ ├── coremldata.bin │ ├── model.espresso.net │ ├── model.espresso.shape │ ├── model.espresso.weights │ ├── model │ │ └── coremldata.bin │ └── neural_network_optionals │ │ └── coremldata.bin │ ├── DeepLabV3FP16.mlmodelc │ ├── coremldata.bin │ ├── model.espresso.net │ ├── model.espresso.shape │ ├── model.espresso.weights │ ├── model │ │ └── coremldata.bin │ └── neural_network_optionals │ │ └── coremldata.bin │ ├── DeepLabV3Int8LUT.mlmodelc │ ├── coremldata.bin │ ├── model.espresso.net │ ├── model.espresso.shape │ ├── model.espresso.weights │ ├── model │ │ └── coremldata.bin │ └── neural_network_optionals │ │ └── coremldata.bin │ ├── Headers │ ├── Sweetfish-Swift.h │ └── Sweetfish.h │ ├── Info.plist │ ├── Modules │ ├── Sweetfish.swiftmodule │ │ ├── arm64-apple-ios.swiftdoc │ │ ├── arm64-apple-ios.swiftmodule │ │ ├── arm64.swiftdoc │ │ ├── arm64.swiftmodule │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ ├── x86_64-apple-ios-simulator.swiftmodule │ │ ├── x86_64.swiftdoc │ │ └── x86_64.swiftmodule │ └── module.modulemap │ └── Sweetfish ├── Demo ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── dog.imageset │ │ ├── Contents.json │ │ └── dog.jpg │ └── fish.imageset │ │ ├── Contents.json │ │ └── IMG_1345.HEIC ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── SceneDelegate.swift └── ViewController.swift ├── LICENSE ├── README.md ├── Sweetfish.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Sweetfish.xcscheme │ └── SweetfishTests.xcscheme ├── Sweetfish ├── ClippingMethod.swift ├── CoreMLManager.swift ├── CoreMLModelType.swift ├── CoreMLModels │ ├── DeepLabV3.mlmodel │ ├── DeepLabV3FP16.mlmodel │ └── DeepLabV3Int8LUT.mlmodel ├── Extension │ ├── UIImage+.swift │ └── UIImageView+.swift ├── Info.plist ├── SegmentationView.swift ├── Sweetfish.h ├── SweetfishError.swift └── SweetfishImageView.swift ├── SweetfishTests ├── Info.plist └── SweetfishTests.swift └── assets ├── sample.gif ├── sample1.GIF ├── sample2.GIF ├── sample3.GIF └── sample4.GIF /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/.gitignore -------------------------------------------------------------------------------- /Carthage/Build/._Current.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/._Current.version -------------------------------------------------------------------------------- /Carthage/Build/iOS/B99C44DD-E65A-318A-A259-27044308AC4F.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/B99C44DD-E65A-318A-A259-27044308AC4F.bcsymbolmap -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3.mlmodelc/coremldata.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3.mlmodelc/coremldata.bin -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3.mlmodelc/model.espresso.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3.mlmodelc/model.espresso.net -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3.mlmodelc/model.espresso.shape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3.mlmodelc/model.espresso.shape -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3.mlmodelc/model.espresso.weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3.mlmodelc/model.espresso.weights -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3.mlmodelc/model/coremldata.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3.mlmodelc/model/coremldata.bin -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3.mlmodelc/neural_network_optionals/coremldata.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3.mlmodelc/neural_network_optionals/coremldata.bin -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3FP16.mlmodelc/coremldata.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3FP16.mlmodelc/coremldata.bin -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3FP16.mlmodelc/model.espresso.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3FP16.mlmodelc/model.espresso.net -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3FP16.mlmodelc/model.espresso.shape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3FP16.mlmodelc/model.espresso.shape -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3FP16.mlmodelc/model.espresso.weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3FP16.mlmodelc/model.espresso.weights -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3FP16.mlmodelc/model/coremldata.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3FP16.mlmodelc/model/coremldata.bin -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3FP16.mlmodelc/neural_network_optionals/coremldata.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3FP16.mlmodelc/neural_network_optionals/coremldata.bin -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3Int8LUT.mlmodelc/coremldata.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3Int8LUT.mlmodelc/coremldata.bin -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3Int8LUT.mlmodelc/model.espresso.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3Int8LUT.mlmodelc/model.espresso.net -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3Int8LUT.mlmodelc/model.espresso.shape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3Int8LUT.mlmodelc/model.espresso.shape -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3Int8LUT.mlmodelc/model.espresso.weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3Int8LUT.mlmodelc/model.espresso.weights -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3Int8LUT.mlmodelc/model/coremldata.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3Int8LUT.mlmodelc/model/coremldata.bin -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/DeepLabV3Int8LUT.mlmodelc/neural_network_optionals/coremldata.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/DeepLabV3Int8LUT.mlmodelc/neural_network_optionals/coremldata.bin -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/Headers/Sweetfish-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/Headers/Sweetfish-Swift.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/Headers/Sweetfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/Headers/Sweetfish.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/arm64-apple-ios.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/arm64-apple-ios.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/x86_64-apple-ios-simulator.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/x86_64-apple-ios-simulator.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/Modules/Sweetfish.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Carthage/Build/iOS/Sweetfish.framework/Sweetfish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Carthage/Build/iOS/Sweetfish.framework/Sweetfish -------------------------------------------------------------------------------- /Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Demo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/Assets.xcassets/dog.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Demo/Assets.xcassets/dog.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Assets.xcassets/dog.imageset/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Demo/Assets.xcassets/dog.imageset/dog.jpg -------------------------------------------------------------------------------- /Demo/Assets.xcassets/fish.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Demo/Assets.xcassets/fish.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Assets.xcassets/fish.imageset/IMG_1345.HEIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Demo/Assets.xcassets/fish.imageset/IMG_1345.HEIC -------------------------------------------------------------------------------- /Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Demo/Info.plist -------------------------------------------------------------------------------- /Demo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Demo/SceneDelegate.swift -------------------------------------------------------------------------------- /Demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Demo/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/README.md -------------------------------------------------------------------------------- /Sweetfish.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sweetfish.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sweetfish.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Sweetfish.xcodeproj/xcshareddata/xcschemes/Sweetfish.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish.xcodeproj/xcshareddata/xcschemes/Sweetfish.xcscheme -------------------------------------------------------------------------------- /Sweetfish.xcodeproj/xcshareddata/xcschemes/SweetfishTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish.xcodeproj/xcshareddata/xcschemes/SweetfishTests.xcscheme -------------------------------------------------------------------------------- /Sweetfish/ClippingMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish/ClippingMethod.swift -------------------------------------------------------------------------------- /Sweetfish/CoreMLManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish/CoreMLManager.swift -------------------------------------------------------------------------------- /Sweetfish/CoreMLModelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish/CoreMLModelType.swift -------------------------------------------------------------------------------- /Sweetfish/CoreMLModels/DeepLabV3.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish/CoreMLModels/DeepLabV3.mlmodel -------------------------------------------------------------------------------- /Sweetfish/CoreMLModels/DeepLabV3FP16.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish/CoreMLModels/DeepLabV3FP16.mlmodel -------------------------------------------------------------------------------- /Sweetfish/CoreMLModels/DeepLabV3Int8LUT.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish/CoreMLModels/DeepLabV3Int8LUT.mlmodel -------------------------------------------------------------------------------- /Sweetfish/Extension/UIImage+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish/Extension/UIImage+.swift -------------------------------------------------------------------------------- /Sweetfish/Extension/UIImageView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish/Extension/UIImageView+.swift -------------------------------------------------------------------------------- /Sweetfish/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish/Info.plist -------------------------------------------------------------------------------- /Sweetfish/SegmentationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish/SegmentationView.swift -------------------------------------------------------------------------------- /Sweetfish/Sweetfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish/Sweetfish.h -------------------------------------------------------------------------------- /Sweetfish/SweetfishError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish/SweetfishError.swift -------------------------------------------------------------------------------- /Sweetfish/SweetfishImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/Sweetfish/SweetfishImageView.swift -------------------------------------------------------------------------------- /SweetfishTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/SweetfishTests/Info.plist -------------------------------------------------------------------------------- /SweetfishTests/SweetfishTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/SweetfishTests/SweetfishTests.swift -------------------------------------------------------------------------------- /assets/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/assets/sample.gif -------------------------------------------------------------------------------- /assets/sample1.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/assets/sample1.GIF -------------------------------------------------------------------------------- /assets/sample2.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/assets/sample2.GIF -------------------------------------------------------------------------------- /assets/sample3.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/assets/sample3.GIF -------------------------------------------------------------------------------- /assets/sample4.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YamatoOtaka/Sweetfish/HEAD/assets/sample4.GIF --------------------------------------------------------------------------------