├── .gitignore ├── ImageLibrary ├── Class1.cs ├── Gray.cs ├── ImageLibrary.csproj ├── Properties │ └── AssemblyInfo.cs └── Util.cs ├── README ├── graph.sln ├── graph ├── App.config ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings └── graph.vbproj ├── graph_cs ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── graph_cs.csproj ├── libtesseract302.dll ├── pic ├── 2013101809463539011.jpg ├── plugin (1).jpg ├── plugin (2).jpg ├── plugin (3).jpg ├── plugin (4).jpg ├── plugin (5).jpg ├── plugin (6).jpg ├── plugin (7).jpg └── plugin.jpg ├── tesseract-ocr-3.02.chi_sim.tar.gz └── tesseract-ocr-3.02.eng.tar.gz /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /ImageLibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/ImageLibrary/Class1.cs -------------------------------------------------------------------------------- /ImageLibrary/Gray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/ImageLibrary/Gray.cs -------------------------------------------------------------------------------- /ImageLibrary/ImageLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/ImageLibrary/ImageLibrary.csproj -------------------------------------------------------------------------------- /ImageLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/ImageLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ImageLibrary/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/ImageLibrary/Util.cs -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/README -------------------------------------------------------------------------------- /graph.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph.sln -------------------------------------------------------------------------------- /graph/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph/App.config -------------------------------------------------------------------------------- /graph/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph/Form1.Designer.vb -------------------------------------------------------------------------------- /graph/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph/Form1.resx -------------------------------------------------------------------------------- /graph/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph/Form1.vb -------------------------------------------------------------------------------- /graph/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /graph/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph/My Project/Application.myapp -------------------------------------------------------------------------------- /graph/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /graph/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /graph/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph/My Project/Resources.resx -------------------------------------------------------------------------------- /graph/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /graph/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph/My Project/Settings.settings -------------------------------------------------------------------------------- /graph/graph.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph/graph.vbproj -------------------------------------------------------------------------------- /graph_cs/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph_cs/App.config -------------------------------------------------------------------------------- /graph_cs/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph_cs/Form1.Designer.cs -------------------------------------------------------------------------------- /graph_cs/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph_cs/Form1.cs -------------------------------------------------------------------------------- /graph_cs/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph_cs/Form1.resx -------------------------------------------------------------------------------- /graph_cs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph_cs/Program.cs -------------------------------------------------------------------------------- /graph_cs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph_cs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /graph_cs/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph_cs/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /graph_cs/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph_cs/Properties/Resources.resx -------------------------------------------------------------------------------- /graph_cs/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph_cs/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /graph_cs/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph_cs/Properties/Settings.settings -------------------------------------------------------------------------------- /graph_cs/graph_cs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/graph_cs/graph_cs.csproj -------------------------------------------------------------------------------- /libtesseract302.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/libtesseract302.dll -------------------------------------------------------------------------------- /pic/2013101809463539011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/pic/2013101809463539011.jpg -------------------------------------------------------------------------------- /pic/plugin (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/pic/plugin (1).jpg -------------------------------------------------------------------------------- /pic/plugin (2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/pic/plugin (2).jpg -------------------------------------------------------------------------------- /pic/plugin (3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/pic/plugin (3).jpg -------------------------------------------------------------------------------- /pic/plugin (4).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/pic/plugin (4).jpg -------------------------------------------------------------------------------- /pic/plugin (5).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/pic/plugin (5).jpg -------------------------------------------------------------------------------- /pic/plugin (6).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/pic/plugin (6).jpg -------------------------------------------------------------------------------- /pic/plugin (7).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/pic/plugin (7).jpg -------------------------------------------------------------------------------- /pic/plugin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/pic/plugin.jpg -------------------------------------------------------------------------------- /tesseract-ocr-3.02.chi_sim.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/tesseract-ocr-3.02.chi_sim.tar.gz -------------------------------------------------------------------------------- /tesseract-ocr-3.02.eng.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mz121star/CSharpImageLibrary/HEAD/tesseract-ocr-3.02.eng.tar.gz --------------------------------------------------------------------------------