mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-03 23:49:44 +00:00
there was a merge conflict in onnxruntime/core/providers/dml/OperatorAuthorHelper/Common.h that required manual merging. Related work items: #36867798
25 lines
No EOL
466 B
C#
25 lines
No EOL
466 B
C#
using Xamarin.Forms;
|
|
|
|
namespace FasterRcnnSample.Forms
|
|
{
|
|
public partial class App : Application
|
|
{
|
|
public App()
|
|
{
|
|
InitializeComponent();
|
|
MainPage = new NavigationPage(new MainPage { Title = "Faster R-CNN" });
|
|
}
|
|
|
|
protected override void OnStart()
|
|
{
|
|
}
|
|
|
|
protected override void OnSleep()
|
|
{
|
|
}
|
|
|
|
protected override void OnResume()
|
|
{
|
|
}
|
|
}
|
|
} |