yolo-ios-app
Ultralytics YOLO iOS app and Swift package for real-time Core ML inference across major computer vision tasks.
File Explorer
- bug-report.yml
- config.yml
- feature-request.yml
- question.yml
- ci.yml
- cla.yml
- format.yml
- publish.yml
- codecov.yml
- dependabot.yml
- performance.md
- Contents.json
- Contents.json
- Contents.json
- Contents.json
- ContentView.swift
- YOLORealTimeSwiftUIApp.swift
- project.pbxproj
- README.md
- YOLORealTimeSwiftUITests.swift
- YOLORealTimeSwiftUIUITests.swift
- YOLORealTimeSwiftUIUITestsLaunchTests.swift
- Contents.json
- Contents.json
- Contents.json
- LaunchScreen.storyboard
- Main.storyboard
- AppDelegate.swift
- Info.plist
- SceneDelegate.swift
- ViewController.swift
- project.pbxproj
- README.md
- YOLORealTimeUIKitTests.swift
- YOLORealTimeUIKitUITests.swift
- YOLORealTimeUIKitUITestsLaunchTests.swift
- Contents.json
- Contents.json
- Contents.json
- Contents.json
- ContentView.swift
- YOLOSingleImageSwiftUIApp.swift
- project.pbxproj
- README.md
- YOLOSingleImageSwiftUITests.swift
- YOLOSingleImageSwiftUIUITests.swift
- YOLOSingleImageSwiftUIUITestsLaunchTests.swift
- Contents.json
- Contents.json
- Contents.json
- LaunchScreen.storyboard
- Main.storyboard
- AppDelegate.swift
- Info.plist
- SceneDelegate.swift
- ViewController.swift
- project.pbxproj
- README.md
- YOLOSingleImageUIKitTests.swift
- YOLOSingleImageUIKitUITests.swift
- YOLOSingleImageUIKitUITestsLaunchTests.swift
- README.md
- download-models.sh
- export-models.py
- BasePredictor.swift
- BoundingBoxView.swift
- Classifier.swift
- DepthEstimator.swift
- Logger.swift
- MiniZip.swift
- ModelPathResolver.swift
- NonMaxSuppression.swift
- ObbDetector.swift
- ObjectDetector.swift
- Plot.swift
- PoseEstimator.swift
- Predictor.swift
- README.md
- Segmenter.swift
- SemanticSegmenter.swift
- ThresholdProvider.swift
- UIImage+Orientation.swift
- VideoCapture.swift
- YOLO.swift
- YOLOCamera.swift
- YOLOInfoViewController.swift
- YOLOModelCache.swift
- YOLOModelDownloader.swift
- YOLOResult.swift
- YOLOTask.swift
- YOLOView.swift
- README.md
- BasePredictorTests.swift
- ClassifierTests.swift
- DepthEstimatorTests.swift
- LetterboxTests.swift
- MiniZipTests.swift
- PlotTests.swift
- README.md
- SemanticSegmenterTests.swift
- ThresholdProviderTests.swift
- UIImageOrientationTests.swift
- YOLOIntegrationTests.swift
- YOLOMainTests.swift
- YOLOResultTests.swift
- YOLOSSOTMergeTests.swift
- YOLOTaskTests.swift
- .gitkeep
- .gitkeep
- .gitkeep
- .gitkeep
- .gitkeep
- .gitkeep
- Contents.json
- ultralytics_yolo_logomark_blue_1024x1024.png
- Contents.json
- ultralytics_square_focus_image.png
- Contents.json
- ExternalDisplayManager.swift
- ExternalSceneDelegate.swift
- ExternalViewController.swift
- NotificationExtensions.swift
- ViewController+ExternalDisplay.swift
- Root.plist
- AppDelegate.swift
- Info.plist
- LaunchScreen.storyboard
- Main.storyboard
- ModelDownloadManager.swift
- ModelSelectionManager.swift
- RemoteModels.swift
- SceneDelegate.swift
- ultralytics_yolo_logotype.png
- ViewController.swift
- YOLOiOSApp.xcscheme
- project.pbxproj
- README.md
- .gitignore
- AGENTS.md
- CLAUDE.md
- LICENSE
- Package.swift
- README.md
- README.zh-CN.md
- UltralyticsYOLO.podspec
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
nms
View Details ▼
nms
Tool that recreates the famous data decryption effect seen in the 1992 movie Sneakers from `stdin`.
echo "{{Hello, World!}}" | nms
Decrypt text after a keystroke:
{{ls -la}} | nms -a
Decrypt output immediately, without waiting for a keystroke:
cat {{path/to/file}} | nms -a -f {{blue|white|yellow|black|magenta|green|red}}
Decrypt the content of a file, with a custom output color:
uv pip
View Details ▼
uv pip
Provides pip-like commands for installing, uninstalling, and managing packages.
uv pip install {{package}}
Install a package:
uv pip install {{[-r|--requirements]}} {{requirements.txt}}
Install packages from a requirements file:
uv pip install {{package==1.2.3}}
Install a package with a specific version:
uv run
View Details ▼
uv run
Run a command or script in the project environment.
uv run {{path/to/script.py}}
Run a Python script:
uv run {{[-m|--module]}} {{module_name}}
Run a Python module:
uv run {{[-w|--with]}} {{package}} {{command}}
Run a command with additional packages installed temporarily:
uv venv
View Details ▼
uv venv
Create an isolated Python environment for installing packages.
uv venv
Create a virtual environment in the default location (`.venv`):
uv venv {{path/to/venv}}
Create a virtual environment at a specific path:
uv venv {{[-p|--python]}} {{3.12}}
Create using a specific Python version:
pod
View Details ▼
pod
Dependency manager for Swift and Objective-C Cocoa projects.
pod init
Create a Podfile for the current project with the default contents:
pod install
Download and install all pods defined in the Podfile (that haven't been installed before):
pod list
List all available pods:
