På yggenyk.dk bruger vi cookies til at give dig en god oplevelse og til at indsamle statistik, der kan være med til at forbedre brugeroplevelsen. Hvis du klikker på et link på yggenyk.dk, accepterer du samtidig vores cookiepolitik.

Xamarin: Difference between revisions

From Yggenyk
Jump to navigation Jump to search
No edit summary
Line 70: Line 70:
* [https://blog.mzikmund.com/2017/03/modifying-uwp-navigation-backstack-with-mvvmcross/ Modifying UWP navigation backstack with MvvmCross]
* [https://blog.mzikmund.com/2017/03/modifying-uwp-navigation-backstack-with-mvvmcross/ Modifying UWP navigation backstack with MvvmCross]


====UWP====
==UWP==
* [https://www.nuget.org/packages/Microsoft.Net.Native.SharedLibrary-x64/ Microsoft.Net.Native.SharedLibrary-x64]
* [https://www.nuget.org/packages/Microsoft.Net.Native.SharedLibrary-x64/ Microsoft.Net.Native.SharedLibrary-x64]
* [http://www.damirscorner.com/blog/posts/20120923-UsingSuspensionManagerForSavingApplicationState.html Using SuspensionManager for Saving Application State]
* [http://www.damirscorner.com/blog/posts/20120923-UsingSuspensionManagerForSavingApplicationState.html Using SuspensionManager for Saving Application State]
* [https://docs.microsoft.com/en-us/windows/uwpcommunitytoolkit/ UWP Community Toolkit]
* [https://docs.microsoft.com/en-us/windows/uwpcommunitytoolkit/ UWP Community Toolkit]
=====Reflection and Default.rd.xml=====
====Reflection and Default.rd.xml====
* [https://marcominerva.wordpress.com/2016/02/22/pay-attention-to-net-native-when-using-reflection-mvvm-scenario/ Pay attention to .NET Native when using Reflection (MVVM scenario)]
* [https://marcominerva.wordpress.com/2016/02/22/pay-attention-to-net-native-when-using-reflection-mvvm-scenario/ Pay attention to .NET Native when using Reflection (MVVM scenario)]


=====Migrating=====
====Migrating ot UWP====
* [https://msdn.microsoft.com/library/mt148501.aspx?f=255&MSPPError=-2147217396 Migrate apps to the Universal Windows Platform (UWP)]
* [https://msdn.microsoft.com/library/mt148501.aspx?f=255&MSPPError=-2147217396 Migrate apps to the Universal Windows Platform (UWP)]

Revision as of 16:20, 10 March 2018


The Accord.NET Image Processing and Machine Learning Framework

Accord.NET is a framework for scientific computing in .NET. The framework is comprised of multiple librares encompassing a wide range of scientific computing applications, such as statistical data processing, machine learning, pattern recognition, including but not limited to, computer vision and computer audition. The framework offers a large number of probability distributions, hypothesis tests, kernel functions and support for most popular performance measurements techniques.* Accord .NET Framework

Facial Recognition

Adding Facial Recognition to Your Mobile Apps By Pierce Boggan

SkiaSharp

<syntaxhighlight lang="C#" line='line'>

   using (new Transform(canvas))
   {
   }
   public class Transform : IDisposable
   {
       private readonly SKCanvas _canvas;
       public Transform(SKCanvas canvas)
       {
           _canvas = canvas;
           canvas.Save();
       }
       public void Dispose()
       {
           _canvas.Restore();
       }
   }

</syntaxhighlight > <source lang="cpp">

   // Transform point from current transformation matrix to original grid
   var originalPoints = new[] { new SKPoint(0, 0) };
   var pointInCurrentTransformationMatrix = new[] { new SKPoint(0, 0) };
   canvas.TotalMatrix.MapPoints(originalPoints, pointInCurrentTransformationMatrix);
   // Transform point from original grid to current transformation matrix
   canvas.TotalMatrix.TryInvert(out var inverseMatrix);
   var snappedPixelPointsInCurrentTransformationMatrix = new[] { new SKPoint(0, 0) };
   inverseMatrix.MapPoints(snappedPixelPointsInCurrentTransformationMatrix, originalPoints);

</source>

Android

Android services

Android Emulator

Android Emulator Hardware Acceleration

Android Camera

MvvmCross

Navigation

UWP

Reflection and Default.rd.xml

Migrating ot UWP