Aspose.OCR.Examples.CSharp.RunExamples.Main C# (CSharp) Method

Main() static private method

static private Main ( string args ) : void
args string
return void
        static void Main(string[] args)
        {
            Console.WriteLine("Open RunExamples.cs. \nIn Main() method Uncomment the example that you want to run.");
            Console.WriteLine("=====================================================");

            // Uncomment the example that you want to run.

            //// =====================================================
            //// =====================================================
            ////  Performing And Managing OCR
            //// =====================================================
            //// =====================================================

            //PerformOCROnImage.Run();
            //GettingNotification.Run();
            //ExtractingText.Run();
            //GetLocationAndSizeExample.Run();
            //ReadPartInformation.Run();
            //DetectingTextBlocks.Run();
            //GetTextPartHierarchy.Run();
            //WorkingWithDifferentLanguages.Run();
            //LoadTemplateFromUrl.Run();
            //OCROnMultipageTIFF.Run();
            //PreprocesImagesFromOCROperation.Run();
            //SupplyMultipleWhiteLists.Run();


            //// =====================================================
            //// =====================================================
            //// Formatting And Manipulating OCR   
            //// =====================================================
            //// =====================================================


            //AddingUserDefinedRecognitionBlocks.Run();
            //ApplyingCorrectionFilters.Run();
            //AutomaticallyCorrectTheSpellings.Run();
            //RecognizeWhiteListedCharacters.Run();
            //SettingOcrEngineAutomaticallyDetect.Run();
            //SettingtheOcrEngine.Run();
            //SettingtheOcrEngineAutomaticallyDetectTextBlocks.Run();
            //UserDefinedRecognitionBlocks.Run();
            //ExtractPreprocessedImages.Run();
            //UsingNotifierFactory.Run();

            //// =====================================================
            //// =====================================================
            //// Formatting And Manipulating OMR   
            //// =====================================================
            //// =====================================================

            //DetectImageResolutionAutomatically.Run();
            //DetectUsingElements.Run();
            //ExtractOMRDataUsingScannedImage.Run();
            //ExtractText.Run();
            //PerformOCROnImage.Run();
            //SetElementLevelThreshold.Run();
            //SetImageResolution.Run();
            //SetPageLevelThreshold.Run();
            //SettingMarkThreshold.Run();
            //SkewImageCorrectionUsingAlgorithm.Run();
            //SkewedImageSecondMethod.Run();            
            //DynamicallyCreateOMRTemplates.Run();
            //AdjustImageProcessPipeline.Run();

            // Stop before exiting
            Console.WriteLine(Environment.NewLine + "Program Finished. Press any key to exit....");
            Console.ReadKey();
        }