├── .github └── FUNDING.yml ├── .gitignore ├── FreeGreenScreen.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── VideoRemoveBackground.xcscheme ├── LICENSE ├── README.md ├── VideoRemoveBackground ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── 1024.png │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 256.png │ │ ├── 32.png │ │ ├── 512.png │ │ ├── 64.png │ │ └── Contents.json │ ├── Contents.json │ ├── test1.imageset │ │ ├── Contents.json │ │ └── news.png │ ├── test2.imageset │ │ ├── Contents.json │ │ └── test.png │ └── test3.imageset │ │ ├── Contents.json │ │ └── yonglin.jpeg ├── ContentView.swift ├── ImageEditorView.swift ├── ImageExtensions.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── VideoEditorView.swift ├── VideoMatting.swift ├── VideoRemoveBackground.entitlements └── VideoRemoveBackgroundApp.swift ├── VideoRemoveBackgroundTests └── VideoRemoveBackgroundTests.swift ├── VideoRemoveBackgroundUITests ├── VideoRemoveBackgroundUITests.swift └── VideoRemoveBackgroundUITestsLaunchTests.swift ├── appstore ├── AppIcons │ ├── appstore.png │ └── playstore.png └── Screenshots │ ├── image1.png │ └── video1.png ├── rvm_mobilenetv3_1280x720_s0.375_fp16.mlmodel ├── rvm_mobilenetv3_1280x720_s0.375_int8.mlmodel ├── rvm_mobilenetv3_1920x1080_s0.25_fp16.mlmodel └── rvm_mobilenetv3_1920x1080_s0.25_int8.mlmodel /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/.gitignore -------------------------------------------------------------------------------- /FreeGreenScreen.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/FreeGreenScreen.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FreeGreenScreen.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/FreeGreenScreen.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FreeGreenScreen.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/FreeGreenScreen.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FreeGreenScreen.xcodeproj/xcshareddata/xcschemes/VideoRemoveBackground.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/FreeGreenScreen.xcodeproj/xcshareddata/xcschemes/VideoRemoveBackground.xcscheme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/README.md -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/test1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/test1.imageset/Contents.json -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/test1.imageset/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/test1.imageset/news.png -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/test2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/test2.imageset/Contents.json -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/test2.imageset/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/test2.imageset/test.png -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/test3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/test3.imageset/Contents.json -------------------------------------------------------------------------------- /VideoRemoveBackground/Assets.xcassets/test3.imageset/yonglin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Assets.xcassets/test3.imageset/yonglin.jpeg -------------------------------------------------------------------------------- /VideoRemoveBackground/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/ContentView.swift -------------------------------------------------------------------------------- /VideoRemoveBackground/ImageEditorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/ImageEditorView.swift -------------------------------------------------------------------------------- /VideoRemoveBackground/ImageExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/ImageExtensions.swift -------------------------------------------------------------------------------- /VideoRemoveBackground/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /VideoRemoveBackground/VideoEditorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/VideoEditorView.swift -------------------------------------------------------------------------------- /VideoRemoveBackground/VideoMatting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/VideoMatting.swift -------------------------------------------------------------------------------- /VideoRemoveBackground/VideoRemoveBackground.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/VideoRemoveBackground.entitlements -------------------------------------------------------------------------------- /VideoRemoveBackground/VideoRemoveBackgroundApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackground/VideoRemoveBackgroundApp.swift -------------------------------------------------------------------------------- /VideoRemoveBackgroundTests/VideoRemoveBackgroundTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackgroundTests/VideoRemoveBackgroundTests.swift -------------------------------------------------------------------------------- /VideoRemoveBackgroundUITests/VideoRemoveBackgroundUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackgroundUITests/VideoRemoveBackgroundUITests.swift -------------------------------------------------------------------------------- /VideoRemoveBackgroundUITests/VideoRemoveBackgroundUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/VideoRemoveBackgroundUITests/VideoRemoveBackgroundUITestsLaunchTests.swift -------------------------------------------------------------------------------- /appstore/AppIcons/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/appstore/AppIcons/appstore.png -------------------------------------------------------------------------------- /appstore/AppIcons/playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/appstore/AppIcons/playstore.png -------------------------------------------------------------------------------- /appstore/Screenshots/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/appstore/Screenshots/image1.png -------------------------------------------------------------------------------- /appstore/Screenshots/video1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/appstore/Screenshots/video1.png -------------------------------------------------------------------------------- /rvm_mobilenetv3_1280x720_s0.375_fp16.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/rvm_mobilenetv3_1280x720_s0.375_fp16.mlmodel -------------------------------------------------------------------------------- /rvm_mobilenetv3_1280x720_s0.375_int8.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/rvm_mobilenetv3_1280x720_s0.375_int8.mlmodel -------------------------------------------------------------------------------- /rvm_mobilenetv3_1920x1080_s0.25_fp16.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/rvm_mobilenetv3_1920x1080_s0.25_fp16.mlmodel -------------------------------------------------------------------------------- /rvm_mobilenetv3_1920x1080_s0.25_int8.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfool/VideoRemoveBackground/HEAD/rvm_mobilenetv3_1920x1080_s0.25_int8.mlmodel --------------------------------------------------------------------------------