DSNeuralNetworkModule
The DSNeuralNetworkModule class defines common functionality in the DynamsoftNeuralNetwork module.
Definition
Assembly: DynamsoftCaptureVisionBundle.xcframework
- Objective-C
- Swift
@interface DSNeuralNetworkModule : NSObjectclass NeuralNetworkModule : NSObject
Methods
| Method | Description |
|---|---|
getVersion |
Get the version of DynamsoftNeuralNetwork module. |
getVersion
Get the version of DynamsoftNeuralNetwork module.
- Objective-C
- Swift
+ (NSString *)getVersion;class func getVersion() -> String
Return Value
The version of DynamsoftNeuralNetwork module.
Code Snippet
- Objective-C
- Swift
NSString *version = [DSNeuralNetworkModule getVersion];let version = NeuralNetworkModule.getVersion()