References:
https://github.com/tesseract-ocr/tesseract/wiki/Compiling
http://stackoverflow.com/questions/33588262/tesseract-ocr-on-aws-lambda-via-virtualenv
| <?xml version="1.0" encoding="utf-8"?> | |
| <ContentPage xmlns="http://xamarin.com/schemas/2014/forms" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
| xmlns:prism="clr-namespace:Prism.Mvvm;assembly=Prism.Forms" | |
| prism:ViewModelLocator.AutowireViewModel="True" | |
| x:Class="App.Mobile.Views.HackyReportPage" | |
| Title="Hacky Chart.js Report"> | |
| <WebView VerticalOptions="FillAndExpand"> | |
| <WebView.Source> | |
| <HtmlWebViewSource Html="{Binding ReportHtml}" /> |
| #include <iostream> | |
| #include <chrono> | |
| #include <ctime> | |
| #include <cmath> | |
| class Timer | |
| { | |
| public: | |
| void start() | |
| { |