mirror of https://github.com/emgucv/emgucv.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.0 KiB
26 lines
1.0 KiB
## About this package
|
|
|
|
This package is part of the ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH} release of Emgu CV.
|
|
|
|
${EMGUCV_MINI_RELEASE_NOTE}
|
|
|
|
For online documentation please visit
|
|
<${NUGET_EMGU_URL}/wiki/files/${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}/document/index.html>
|
|
|
|
Release note can be found at
|
|
<${NUGET_EMGU_URL}/wiki/index.php/Version_History#Emgu.CV-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}>
|
|
|
|
## How to Use
|
|
|
|
Please make sure to call CvInvokeIOS.Init() before making any other calls to Emgu CV library on iOS. You can add the function call in the AppDelegate.cs file, under the FinishedLaunching function:
|
|
|
|
```csharp
|
|
[Export("application:didFinishLaunchingWithOptions:")]
|
|
public bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
|
|
{
|
|
// Override point for customization after application launch.
|
|
Emgu.CV.CvInvokeIOS.Init();
|
|
|
|
return true;
|
|
}
|
|
```
|