///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Copyright (c) 2016 Raytrix GmbH. All rights reserved. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /************************************************************************/ /* This example demonstrates: */ /* - Working with an image. */ /* - Calculating refocus image */ /* - Displaying result */ /************************************************************************/ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; using System; ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // namespace: Example.LFR.CS.BasicA ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// namespace Example.LFR.CS.BasicA { ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// /// 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()); } } }