/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2016 Raytrix GmbH. All rights reserved.
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/************************************************************************/
/* This example demonstrates: */
/* - Working with an image. */
/* - Working with mouse click events of CLUviz */
/* - Reading image data of depth 3D image */
/* - Exporting image to .png, .bmp and .ply */
/* - Display result image. */
/************************************************************************/
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using System;
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// namespace: Example.LFR.CS.BasicC
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
namespace Example.LFR.CS.BasicC
{
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///
/// 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());
}
}
}