/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2016 Raytrix GmbH. All rights reserved.
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/************************************************************************/
/* This example demonstrates: */
/* - Working with an image. */
/* - Reading image data */
/* - Calculating euclidean distance between two points */
/************************************************************************/
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using System;
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// namespace: Example.LFR.CS.BasicB
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
namespace Example.LFR.CS.BasicB
{
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///
/// A program.
///
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
static class Program
{
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///
/// The main entry point for the application.
///
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}