Emgu CV for Android: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 4: | Line 4: | ||
=Differences between Emgu CV for Android and desktop= | =Differences between Emgu CV for Android and desktop= | ||
* The System.Drawing namespace is provided by Mono.Android package. | * The System.Drawing namespace is provided by Mono.Android package. | ||
* Mono for Android | * Mono for Android use "Android.Graphic.Bitmap" instead of "System.Drawing.Bitmap". | ||
* The Emgu.CV.GPU namespace is only provided for compilation against shared code developed for desktop system that optionally use GPU computation. The function GpuInvoke.HasCuda will always return false on Android. If you are doing a fresh development for Android you can skip this reference. | * The Emgu.CV.GPU namespace is only provided for compilation against shared code developed for desktop system that optionally use GPU computation. The function GpuInvoke.HasCuda will always return false on Android. If you are doing a fresh development for Android you can skip this reference. | ||
=Creating a MonoTouch Project= | =Creating a MonoTouch Project= |
Revision as of 23:37, 17 May 2012
Prerequisite
You will need Mono for Android for development. Click here to purchase a license.
Differences between Emgu CV for Android and desktop
- The System.Drawing namespace is provided by Mono.Android package.
- Mono for Android use "Android.Graphic.Bitmap" instead of "System.Drawing.Bitmap".
- The Emgu.CV.GPU namespace is only provided for compilation against shared code developed for desktop system that optionally use GPU computation. The function GpuInvoke.HasCuda will always return false on Android. If you are doing a fresh development for Android you can skip this reference.