An open API service indexing awesome lists of open source software.

https://github.com/rxswiftcommunity/rxvision

RxVision (based on RxSwift)
https://github.com/rxswiftcommunity/rxvision

ios reactive-programming rxswift vision vision-framework

Last synced: 9 months ago
JSON representation

RxVision (based on RxSwift)

Awesome Lists containing this project

README

          

# RxVision
RxVision (based on RxSwift)

Basic usage.

```swift
let mlRequest: RxVNCoreMLRequest = VNCoreMLRequest.rx.request(model: model, imageCropAndScaleOption: .scaleFit)

mlRequest
.observable
.subscribe { [unowned self] (event) in
switch event {
case .next(let completion):
let cgImage = completion.value // NB you can easily pass the value along to the completion handler
if let result = completion.request.results?[0] as? VNClassificationObservation {
os_log("results: %@", type: .debug, result.identifier)
}
default:
break
}
}
.disposed(by: disposeBag)

let imageRequestHandler = VNImageRequestHandler(cgImage: cgImage, orientation: .up, options: requestOptions)
do {
try imageRequestHandler.rx.perform([mlRequest], on: cgImage) // NB you can easily pass the value along to the completion handler
} catch {
print(error)
}
```

Carthage setup.

```
github "RxSwiftCommunity/RxVision" ~> 0.1.0

```

Copyright (c) RxSwiftCommunity