yolo-ios-app
Ultralytics YOLO iOS app and Swift package for real-time Core ML inference across major computer vision tasks.
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
nms
설명 보기 ▼
nms
1992년 영화 Sneakers에서 볼 수 있는 유명한 데이터 해독 효과를 `stdin`에서 재현하는 명령줄 도구.
더 많은 정보: <https://github.com/bartobri/no-more-secrets>.
echo "{{Hello, World!}}" | nms
키 입력 후 텍스트 해독:
{{ls -la}} | nms -a
키 입력을 기다리지 않고 즉시 출력 해독:
cat {{path/to/file}} | nms -a -f {{blue|white|yellow|black|magenta|green|red}}
파일의 내용을 해독하고, 사용자 지정 출력 색상 사용:
uv pip
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
pod
Swift 및 Objective-C Cocoa 프로젝트를 위한 종속성 관리 도구.
더 많은 정보: <https://guides.cocoapods.org/terminal/commands.html>.
pod init
현재 프로젝트에 기본 내용으로 Podfile 생성:
pod install
Podfile에 정의된 모든 포드를 다운로드 및 설치 (이전에 설치되지 않은 경우):
pod list
사용 가능한 모든 포드 나열:
