├── Franken+.sln ├── Franken+.v12.suo ├── Franken+ ├── App.config ├── App_Code │ ├── BitMiracle.LibTiff.NET.dll │ ├── DataPipe.cs │ ├── Font.cs │ └── ImageWriter.cs ├── DataPipe.cs ├── Deployables │ ├── GlyphExtraction │ │ ├── ExtractorExporter 1.2 │ │ │ ├── Microsoft.VC90.ATL.manifest │ │ │ ├── Microsoft.VC90.CRT.manifest │ │ │ ├── Microsoft.VC90.MFC.manifest │ │ │ ├── batch │ │ │ │ ├── Input │ │ │ │ │ ├── 00000259.tif │ │ │ │ │ └── 00000259.xml │ │ │ │ ├── exporter_params.ini │ │ │ │ ├── process_folder_export_gamera_xml.bat │ │ │ │ ├── process_folder_export_region_text.bat │ │ │ │ ├── process_folder_export_text_line_text.bat │ │ │ │ ├── process_folder_extract_glyph_image_snippets.bat │ │ │ │ ├── process_folder_extract_image_snippets.bat │ │ │ │ └── process_folder_extract_layout_snippets.bat │ │ │ ├── copyright.txt │ │ │ ├── data │ │ │ │ └── Gamera │ │ │ │ │ └── defaultCharacterNames.xml │ │ │ ├── help │ │ │ │ └── Extractor and Exporter User Guide.pdf │ │ │ └── schema │ │ │ │ ├── 2009-03-16 │ │ │ │ └── pagecontent.xsd │ │ │ │ ├── 2010-01-12 │ │ │ │ └── pagecontent.xsd │ │ │ │ ├── 2010-03-19 │ │ │ │ └── pagecontent.xsd │ │ │ │ ├── 2013-07-15 │ │ │ │ └── pagecontent.xsd │ │ │ │ └── ALTO │ │ │ │ ├── alto-1-4.xsd │ │ │ │ └── alto-v2.0.xsd │ │ └── ImageExtractor 1.1 │ │ │ ├── ImageExtractor-1-1-26.exe │ │ │ ├── Microsoft.VC90.ATL.manifest │ │ │ ├── Microsoft.VC90.CRT.manifest │ │ │ ├── Microsoft.VC90.MFC.manifest │ │ │ ├── copyright.txt │ │ │ ├── glut32.dll │ │ │ ├── help │ │ │ └── Image and Text Extractor User Guide.pdf │ │ │ ├── jpeg62.dll │ │ │ ├── libimage.dll │ │ │ ├── libpng13.dll │ │ │ ├── libtiff3.dll │ │ │ ├── mfc90.dll │ │ │ ├── mfc90u.dll │ │ │ ├── mfcm90.dll │ │ │ ├── mfcm90u.dll │ │ │ ├── mfcm90ud.dll │ │ │ ├── msvcm90.dll │ │ │ ├── msvcp90.dll │ │ │ ├── msvcr90.dll │ │ │ ├── msxml6.dll │ │ │ ├── schema │ │ │ ├── 2009-03-16 │ │ │ │ └── pagecontent.xsd │ │ │ ├── 2010-01-12 │ │ │ │ └── pagecontent.xsd │ │ │ ├── 2010-03-19 │ │ │ │ └── pagecontent.xsd │ │ │ └── ALTO │ │ │ │ ├── alto-1-4.xsd │ │ │ │ └── alto-v2.0.xsd │ │ │ └── zlib1.dll │ └── db.conf ├── Font.cs ├── Franken+.csproj ├── Frankenstein-icon.gif ├── Frankenstein_icon.ico ├── ImageWriter.cs ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── NewFont.Designer.cs ├── NewFont.cs ├── NewFont.resx ├── NewLanguage.Designer.cs ├── NewLanguage.cs ├── NewLanguage.resx ├── NewSubstitution.Designer.cs ├── NewSubstitution.cs ├── NewSubstitution.resx ├── PageXml.cs ├── PageXmlFactory.cs ├── PageXmlV2.cs ├── PageXmlV3.cs ├── Program.cs ├── Progress.Designer.cs ├── Progress.cs ├── Progress.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Reclassify.Designer.cs ├── Reclassify.cs ├── Reclassify.resx ├── TrainTesseract.Designer.cs ├── TrainTesseract.cs ├── TrainTesseract.resx ├── bin │ ├── Debug │ │ ├── BitMiracle.LibTiff.NET.dll │ │ ├── Franken+.exe │ │ ├── Franken+.exe.config │ │ ├── Franken+.pdb │ │ ├── Franken+.vshost.exe │ │ ├── Franken+.vshost.exe.config │ │ └── Franken+.vshost.exe.manifest │ └── Release │ │ ├── BitMiracle.LibTiff.NET.dll │ │ ├── Franken+.exe │ │ ├── Franken+.exe.config │ │ ├── Franken+.pdb │ │ ├── Franken+.vshost.exe │ │ ├── Franken+.vshost.exe.config │ │ └── Franken+.vshost.exe.manifest ├── dbConnectionForm.Designer.cs ├── dbConnectionForm.cs ├── dbConnectionForm.resx ├── eula.docx ├── eula.rtf ├── frankenstein.png ├── obj │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Franken+.csproj.FileListAbsolute.txt │ │ ├── Franken+.csproj.GenerateResource.Cache │ │ ├── Franken+.csprojResolveAssemblyReference.cache │ │ ├── Franken+.exe │ │ ├── Franken+.pdb │ │ ├── Franken_.Main.resources │ │ ├── Franken_.NewFont.resources │ │ ├── Franken_.NewLanguage.resources │ │ ├── Franken_.NewSubstitution.resources │ │ ├── Franken_.Progress.resources │ │ ├── Franken_.Properties.Resources.resources │ │ ├── Franken_.TrainTesseract.resources │ │ ├── Franken_.dbConnectionForm.resources │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Franken+.csproj.FileListAbsolute.txt │ │ ├── Franken+.csproj.GenerateResource.Cache │ │ ├── Franken+.exe │ │ ├── Franken+.pdb │ │ ├── Franken_.Main.resources │ │ ├── Franken_.NewFont.resources │ │ ├── Franken_.NewLanguage.resources │ │ ├── Franken_.NewSubstitution.resources │ │ ├── Franken_.Progress.resources │ │ ├── Franken_.Properties.Resources.resources │ │ ├── Franken_.Reclassify.resources │ │ ├── Franken_.TrainTesseract.resources │ │ ├── Franken_.dbConnectionForm.resources │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── Help ├── css │ └── style.css ├── images │ ├── Header.gif │ ├── IDHMC-Header.png │ ├── background-tile.png │ ├── choose-character.png │ ├── create-font.png │ ├── database-setup.png │ ├── dev │ │ ├── Header.ai │ │ └── eebo-header.psd │ ├── eebo-header.gif │ ├── frankenplus-big-trans.gif │ ├── frankenplus-big.gif │ ├── tesseract-path.png │ ├── train-tesseract.png │ └── winnowing.png └── index.html ├── LICENSE.md ├── README.md ├── Setup ├── Setup.isl ├── Setup.isproj └── Setup │ └── Express │ ├── DVD-5 │ ├── DiskImages │ │ └── DISK1 │ │ │ ├── 0x0409.ini │ │ │ ├── Franken+.msi │ │ │ ├── Personal │ │ │ └── Franken+ │ │ │ │ ├── GlyphExtraction │ │ │ │ ├── ExtractorExporter 1.2 │ │ │ │ │ ├── Microsoft.VC90.ATL.manifest │ │ │ │ │ ├── Microsoft.VC90.CRT.manifest │ │ │ │ │ ├── Microsoft.VC90.MFC.manifest │ │ │ │ │ ├── batch │ │ │ │ │ │ ├── Input │ │ │ │ │ │ │ ├── 00000259.tif │ │ │ │ │ │ │ └── 00000259.xml │ │ │ │ │ │ ├── exporter_params.ini │ │ │ │ │ │ ├── process_folder_export_gamera_xml.bat │ │ │ │ │ │ ├── process_folder_export_region_text.bat │ │ │ │ │ │ ├── process_folder_export_text_line_text.bat │ │ │ │ │ │ ├── process_folder_extract_glyph_image_snippets.bat │ │ │ │ │ │ ├── process_folder_extract_image_snippets.bat │ │ │ │ │ │ └── process_folder_extract_layout_snippets.bat │ │ │ │ │ ├── copyright.txt │ │ │ │ │ ├── data │ │ │ │ │ │ └── Gamera │ │ │ │ │ │ │ └── defaultCharacterNames.xml │ │ │ │ │ ├── help │ │ │ │ │ │ └── Extractor and Exporter User Guide.pdf │ │ │ │ │ └── schema │ │ │ │ │ │ ├── 2009-03-16 │ │ │ │ │ │ └── pagecontent.xsd │ │ │ │ │ │ ├── 2010-01-12 │ │ │ │ │ │ └── pagecontent.xsd │ │ │ │ │ │ ├── 2010-03-19 │ │ │ │ │ │ └── pagecontent.xsd │ │ │ │ │ │ ├── 2013-07-15 │ │ │ │ │ │ └── pagecontent.xsd │ │ │ │ │ │ └── ALTO │ │ │ │ │ │ ├── alto-1-4.xsd │ │ │ │ │ │ └── alto-v2.0.xsd │ │ │ │ └── ImageExtractor 1.1 │ │ │ │ │ ├── ImageExtractor-1-1-26.exe │ │ │ │ │ ├── Microsoft.VC90.ATL.manifest │ │ │ │ │ ├── Microsoft.VC90.CRT.manifest │ │ │ │ │ ├── Microsoft.VC90.MFC.manifest │ │ │ │ │ ├── copyright.txt │ │ │ │ │ ├── glut32.dll │ │ │ │ │ ├── help │ │ │ │ │ └── Image and Text Extractor User Guide.pdf │ │ │ │ │ ├── jpeg62.dll │ │ │ │ │ ├── libimage.dll │ │ │ │ │ ├── libpng13.dll │ │ │ │ │ ├── libtiff3.dll │ │ │ │ │ ├── mfc90.dll │ │ │ │ │ ├── mfc90u.dll │ │ │ │ │ ├── mfcm90.dll │ │ │ │ │ ├── mfcm90u.dll │ │ │ │ │ ├── mfcm90ud.dll │ │ │ │ │ ├── msvcm90.dll │ │ │ │ │ ├── msvcp90.dll │ │ │ │ │ ├── msvcr90.dll │ │ │ │ │ ├── msxml6.dll │ │ │ │ │ ├── schema │ │ │ │ │ ├── 2009-03-16 │ │ │ │ │ │ └── pagecontent.xsd │ │ │ │ │ ├── 2010-01-12 │ │ │ │ │ │ └── pagecontent.xsd │ │ │ │ │ ├── 2010-03-19 │ │ │ │ │ │ └── pagecontent.xsd │ │ │ │ │ └── ALTO │ │ │ │ │ │ ├── alto-1-4.xsd │ │ │ │ │ │ └── alto-v2.0.xsd │ │ │ │ │ └── zlib1.dll │ │ │ │ └── db.conf │ │ │ ├── Setup.ini │ │ │ ├── program files │ │ │ └── IDHMC │ │ │ │ └── Franken+ │ │ │ │ ├── BitMiracle.LibTiff.NET.dll │ │ │ │ ├── Franken+.exe │ │ │ │ ├── Franken+.exe.config │ │ │ │ └── MySql.Data.dll │ │ │ └── setup.exe │ ├── LogFiles │ │ ├── 11-23-2014 07-19-06 PM.txt │ │ ├── 11-23-2014 07-20-11 PM.txt │ │ ├── 12-2-2013 02-01-05 PM.txt │ │ ├── 12-2-2013 02-02-47 PM.txt │ │ └── 12-2-2013 11-49-06 AM.txt │ └── Reports │ │ ├── 11-23-2014 07-19-23 PM.htm │ │ ├── 11-23-2014 07-20-23 PM.htm │ │ ├── 12-2-2013 02-03-08 PM.htm │ │ └── 12-2-2013 11-49-25 AM.htm │ └── Interm │ └── _IsIcoRes.Exe ├── UpgradeLog.htm └── packages ├── MySql.Data.6.8.3 ├── MySql.Data.6.8.3.nupkg └── MySql.Data.6.8.3.nuspec └── repositories.config /Franken+.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+.sln -------------------------------------------------------------------------------- /Franken+.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+.v12.suo -------------------------------------------------------------------------------- /Franken+/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/App.config -------------------------------------------------------------------------------- /Franken+/App_Code/BitMiracle.LibTiff.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/App_Code/BitMiracle.LibTiff.NET.dll -------------------------------------------------------------------------------- /Franken+/App_Code/DataPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/App_Code/DataPipe.cs -------------------------------------------------------------------------------- /Franken+/App_Code/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/App_Code/Font.cs -------------------------------------------------------------------------------- /Franken+/App_Code/ImageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/App_Code/ImageWriter.cs -------------------------------------------------------------------------------- /Franken+/DataPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/DataPipe.cs -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/Microsoft.VC90.ATL.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/Microsoft.VC90.ATL.manifest -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/Microsoft.VC90.MFC.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/Microsoft.VC90.MFC.manifest -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/Input/00000259.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/Input/00000259.tif -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/Input/00000259.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/Input/00000259.xml -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/exporter_params.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/exporter_params.ini -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_export_gamera_xml.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_export_gamera_xml.bat -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_export_region_text.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_export_region_text.bat -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_export_text_line_text.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_export_text_line_text.bat -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_extract_glyph_image_snippets.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_extract_glyph_image_snippets.bat -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_extract_image_snippets.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_extract_image_snippets.bat -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_extract_layout_snippets.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_extract_layout_snippets.bat -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/copyright.txt -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/data/Gamera/defaultCharacterNames.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/data/Gamera/defaultCharacterNames.xml -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/help/Extractor and Exporter User Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/help/Extractor and Exporter User Guide.pdf -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/schema/2009-03-16/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/schema/2009-03-16/pagecontent.xsd -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/schema/2010-01-12/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/schema/2010-01-12/pagecontent.xsd -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/schema/2010-03-19/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/schema/2010-03-19/pagecontent.xsd -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/schema/2013-07-15/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/schema/2013-07-15/pagecontent.xsd -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/schema/ALTO/alto-1-4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/schema/ALTO/alto-1-4.xsd -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/schema/ALTO/alto-v2.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ExtractorExporter 1.2/schema/ALTO/alto-v2.0.xsd -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/ImageExtractor-1-1-26.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/ImageExtractor-1-1-26.exe -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/Microsoft.VC90.ATL.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/Microsoft.VC90.ATL.manifest -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/Microsoft.VC90.MFC.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/Microsoft.VC90.MFC.manifest -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/copyright.txt -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/glut32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/glut32.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/help/Image and Text Extractor User Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/help/Image and Text Extractor User Guide.pdf -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/jpeg62.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/jpeg62.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/libimage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/libimage.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/libpng13.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/libpng13.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/libtiff3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/libtiff3.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/mfc90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/mfc90.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/mfc90u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/mfc90u.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/mfcm90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/mfcm90.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/mfcm90u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/mfcm90u.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/mfcm90ud.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/mfcm90ud.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/msvcm90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/msvcm90.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/msvcp90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/msvcp90.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/msvcr90.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/msxml6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/msxml6.dll -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/schema/2009-03-16/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/schema/2009-03-16/pagecontent.xsd -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/schema/2010-01-12/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/schema/2010-01-12/pagecontent.xsd -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/schema/2010-03-19/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/schema/2010-03-19/pagecontent.xsd -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/schema/ALTO/alto-1-4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/schema/ALTO/alto-1-4.xsd -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/schema/ALTO/alto-v2.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/schema/ALTO/alto-v2.0.xsd -------------------------------------------------------------------------------- /Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/GlyphExtraction/ImageExtractor 1.1/zlib1.dll -------------------------------------------------------------------------------- /Franken+/Deployables/db.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Deployables/db.conf -------------------------------------------------------------------------------- /Franken+/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Font.cs -------------------------------------------------------------------------------- /Franken+/Franken+.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Franken+.csproj -------------------------------------------------------------------------------- /Franken+/Frankenstein-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Frankenstein-icon.gif -------------------------------------------------------------------------------- /Franken+/Frankenstein_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Frankenstein_icon.ico -------------------------------------------------------------------------------- /Franken+/ImageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/ImageWriter.cs -------------------------------------------------------------------------------- /Franken+/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Main.Designer.cs -------------------------------------------------------------------------------- /Franken+/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Main.cs -------------------------------------------------------------------------------- /Franken+/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Main.resx -------------------------------------------------------------------------------- /Franken+/NewFont.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/NewFont.Designer.cs -------------------------------------------------------------------------------- /Franken+/NewFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/NewFont.cs -------------------------------------------------------------------------------- /Franken+/NewFont.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/NewFont.resx -------------------------------------------------------------------------------- /Franken+/NewLanguage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/NewLanguage.Designer.cs -------------------------------------------------------------------------------- /Franken+/NewLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/NewLanguage.cs -------------------------------------------------------------------------------- /Franken+/NewLanguage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/NewLanguage.resx -------------------------------------------------------------------------------- /Franken+/NewSubstitution.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/NewSubstitution.Designer.cs -------------------------------------------------------------------------------- /Franken+/NewSubstitution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/NewSubstitution.cs -------------------------------------------------------------------------------- /Franken+/NewSubstitution.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/NewSubstitution.resx -------------------------------------------------------------------------------- /Franken+/PageXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/PageXml.cs -------------------------------------------------------------------------------- /Franken+/PageXmlFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/PageXmlFactory.cs -------------------------------------------------------------------------------- /Franken+/PageXmlV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/PageXmlV2.cs -------------------------------------------------------------------------------- /Franken+/PageXmlV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/PageXmlV3.cs -------------------------------------------------------------------------------- /Franken+/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Program.cs -------------------------------------------------------------------------------- /Franken+/Progress.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Progress.Designer.cs -------------------------------------------------------------------------------- /Franken+/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Progress.cs -------------------------------------------------------------------------------- /Franken+/Progress.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Progress.resx -------------------------------------------------------------------------------- /Franken+/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Franken+/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Franken+/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Properties/Resources.resx -------------------------------------------------------------------------------- /Franken+/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Franken+/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Properties/Settings.settings -------------------------------------------------------------------------------- /Franken+/Reclassify.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Reclassify.Designer.cs -------------------------------------------------------------------------------- /Franken+/Reclassify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Reclassify.cs -------------------------------------------------------------------------------- /Franken+/Reclassify.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/Reclassify.resx -------------------------------------------------------------------------------- /Franken+/TrainTesseract.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/TrainTesseract.Designer.cs -------------------------------------------------------------------------------- /Franken+/TrainTesseract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/TrainTesseract.cs -------------------------------------------------------------------------------- /Franken+/TrainTesseract.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/TrainTesseract.resx -------------------------------------------------------------------------------- /Franken+/bin/Debug/BitMiracle.LibTiff.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Debug/BitMiracle.LibTiff.NET.dll -------------------------------------------------------------------------------- /Franken+/bin/Debug/Franken+.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Debug/Franken+.exe -------------------------------------------------------------------------------- /Franken+/bin/Debug/Franken+.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Debug/Franken+.exe.config -------------------------------------------------------------------------------- /Franken+/bin/Debug/Franken+.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Debug/Franken+.pdb -------------------------------------------------------------------------------- /Franken+/bin/Debug/Franken+.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Debug/Franken+.vshost.exe -------------------------------------------------------------------------------- /Franken+/bin/Debug/Franken+.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Debug/Franken+.vshost.exe.config -------------------------------------------------------------------------------- /Franken+/bin/Debug/Franken+.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Debug/Franken+.vshost.exe.manifest -------------------------------------------------------------------------------- /Franken+/bin/Release/BitMiracle.LibTiff.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Release/BitMiracle.LibTiff.NET.dll -------------------------------------------------------------------------------- /Franken+/bin/Release/Franken+.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Release/Franken+.exe -------------------------------------------------------------------------------- /Franken+/bin/Release/Franken+.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Release/Franken+.exe.config -------------------------------------------------------------------------------- /Franken+/bin/Release/Franken+.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Release/Franken+.pdb -------------------------------------------------------------------------------- /Franken+/bin/Release/Franken+.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Release/Franken+.vshost.exe -------------------------------------------------------------------------------- /Franken+/bin/Release/Franken+.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Release/Franken+.vshost.exe.config -------------------------------------------------------------------------------- /Franken+/bin/Release/Franken+.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/bin/Release/Franken+.vshost.exe.manifest -------------------------------------------------------------------------------- /Franken+/dbConnectionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/dbConnectionForm.Designer.cs -------------------------------------------------------------------------------- /Franken+/dbConnectionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/dbConnectionForm.cs -------------------------------------------------------------------------------- /Franken+/dbConnectionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/dbConnectionForm.resx -------------------------------------------------------------------------------- /Franken+/eula.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/eula.docx -------------------------------------------------------------------------------- /Franken+/eula.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/eula.rtf -------------------------------------------------------------------------------- /Franken+/frankenstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/frankenstein.png -------------------------------------------------------------------------------- /Franken+/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Franken+/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Franken+/obj/Debug/Franken+.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/Franken+.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Franken+/obj/Debug/Franken+.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/Franken+.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Franken+/obj/Debug/Franken+.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/Franken+.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Franken+/obj/Debug/Franken+.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/Franken+.exe -------------------------------------------------------------------------------- /Franken+/obj/Debug/Franken+.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/Franken+.pdb -------------------------------------------------------------------------------- /Franken+/obj/Debug/Franken_.Main.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/Franken_.Main.resources -------------------------------------------------------------------------------- /Franken+/obj/Debug/Franken_.NewFont.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/Franken_.NewFont.resources -------------------------------------------------------------------------------- /Franken+/obj/Debug/Franken_.NewLanguage.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/Franken_.NewLanguage.resources -------------------------------------------------------------------------------- /Franken+/obj/Debug/Franken_.NewSubstitution.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/Franken_.NewSubstitution.resources -------------------------------------------------------------------------------- /Franken+/obj/Debug/Franken_.Progress.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/Franken_.Progress.resources -------------------------------------------------------------------------------- /Franken+/obj/Debug/Franken_.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/Franken_.Properties.Resources.resources -------------------------------------------------------------------------------- /Franken+/obj/Debug/Franken_.TrainTesseract.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/Franken_.TrainTesseract.resources -------------------------------------------------------------------------------- /Franken+/obj/Debug/Franken_.dbConnectionForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Debug/Franken_.dbConnectionForm.resources -------------------------------------------------------------------------------- /Franken+/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Franken+/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Franken+/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Franken+/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Franken+/obj/Release/Franken+.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/Franken+.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Franken+/obj/Release/Franken+.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/Franken+.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Franken+/obj/Release/Franken+.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/Franken+.exe -------------------------------------------------------------------------------- /Franken+/obj/Release/Franken+.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/Franken+.pdb -------------------------------------------------------------------------------- /Franken+/obj/Release/Franken_.Main.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/Franken_.Main.resources -------------------------------------------------------------------------------- /Franken+/obj/Release/Franken_.NewFont.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/Franken_.NewFont.resources -------------------------------------------------------------------------------- /Franken+/obj/Release/Franken_.NewLanguage.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/Franken_.NewLanguage.resources -------------------------------------------------------------------------------- /Franken+/obj/Release/Franken_.NewSubstitution.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/Franken_.NewSubstitution.resources -------------------------------------------------------------------------------- /Franken+/obj/Release/Franken_.Progress.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/Franken_.Progress.resources -------------------------------------------------------------------------------- /Franken+/obj/Release/Franken_.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/Franken_.Properties.Resources.resources -------------------------------------------------------------------------------- /Franken+/obj/Release/Franken_.Reclassify.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/Franken_.Reclassify.resources -------------------------------------------------------------------------------- /Franken+/obj/Release/Franken_.TrainTesseract.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/Franken_.TrainTesseract.resources -------------------------------------------------------------------------------- /Franken+/obj/Release/Franken_.dbConnectionForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/obj/Release/Franken_.dbConnectionForm.resources -------------------------------------------------------------------------------- /Franken+/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Franken+/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Franken+/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Franken+/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Franken+/packages.config -------------------------------------------------------------------------------- /Help/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/css/style.css -------------------------------------------------------------------------------- /Help/images/Header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/Header.gif -------------------------------------------------------------------------------- /Help/images/IDHMC-Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/IDHMC-Header.png -------------------------------------------------------------------------------- /Help/images/background-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/background-tile.png -------------------------------------------------------------------------------- /Help/images/choose-character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/choose-character.png -------------------------------------------------------------------------------- /Help/images/create-font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/create-font.png -------------------------------------------------------------------------------- /Help/images/database-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/database-setup.png -------------------------------------------------------------------------------- /Help/images/dev/Header.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/dev/Header.ai -------------------------------------------------------------------------------- /Help/images/dev/eebo-header.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/dev/eebo-header.psd -------------------------------------------------------------------------------- /Help/images/eebo-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/eebo-header.gif -------------------------------------------------------------------------------- /Help/images/frankenplus-big-trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/frankenplus-big-trans.gif -------------------------------------------------------------------------------- /Help/images/frankenplus-big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/frankenplus-big.gif -------------------------------------------------------------------------------- /Help/images/tesseract-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/tesseract-path.png -------------------------------------------------------------------------------- /Help/images/train-tesseract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/train-tesseract.png -------------------------------------------------------------------------------- /Help/images/winnowing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/images/winnowing.png -------------------------------------------------------------------------------- /Help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Help/index.html -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/README.md -------------------------------------------------------------------------------- /Setup/Setup.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup.isl -------------------------------------------------------------------------------- /Setup/Setup.isproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup.isproj -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/0x0409.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/0x0409.ini -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Franken+.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Franken+.msi -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/Microsoft.VC90.ATL.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/Microsoft.VC90.ATL.manifest -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/Microsoft.VC90.MFC.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/Microsoft.VC90.MFC.manifest -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/Input/00000259.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/Input/00000259.tif -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/Input/00000259.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/Input/00000259.xml -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/exporter_params.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/exporter_params.ini -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_export_gamera_xml.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_export_gamera_xml.bat -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_export_region_text.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_export_region_text.bat -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_export_text_line_text.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_export_text_line_text.bat -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_extract_glyph_image_snippets.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_extract_glyph_image_snippets.bat -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_extract_image_snippets.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_extract_image_snippets.bat -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_extract_layout_snippets.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/batch/process_folder_extract_layout_snippets.bat -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/copyright.txt -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/data/Gamera/defaultCharacterNames.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/data/Gamera/defaultCharacterNames.xml -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/help/Extractor and Exporter User Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/help/Extractor and Exporter User Guide.pdf -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/schema/2009-03-16/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/schema/2009-03-16/pagecontent.xsd -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/schema/2010-01-12/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/schema/2010-01-12/pagecontent.xsd -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/schema/2010-03-19/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/schema/2010-03-19/pagecontent.xsd -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/schema/2013-07-15/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/schema/2013-07-15/pagecontent.xsd -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/schema/ALTO/alto-1-4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/schema/ALTO/alto-1-4.xsd -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/schema/ALTO/alto-v2.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ExtractorExporter 1.2/schema/ALTO/alto-v2.0.xsd -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/ImageExtractor-1-1-26.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/ImageExtractor-1-1-26.exe -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/Microsoft.VC90.ATL.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/Microsoft.VC90.ATL.manifest -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/Microsoft.VC90.MFC.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/Microsoft.VC90.MFC.manifest -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/copyright.txt -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/glut32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/glut32.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/help/Image and Text Extractor User Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/help/Image and Text Extractor User Guide.pdf -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/jpeg62.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/jpeg62.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/libimage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/libimage.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/libpng13.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/libpng13.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/libtiff3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/libtiff3.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/mfc90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/mfc90.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/mfc90u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/mfc90u.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/mfcm90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/mfcm90.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/mfcm90u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/mfcm90u.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/mfcm90ud.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/mfcm90ud.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/msvcm90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/msvcm90.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/msvcp90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/msvcp90.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/msvcr90.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/msxml6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/msxml6.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/schema/2009-03-16/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/schema/2009-03-16/pagecontent.xsd -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/schema/2010-01-12/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/schema/2010-01-12/pagecontent.xsd -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/schema/2010-03-19/pagecontent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/schema/2010-03-19/pagecontent.xsd -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/schema/ALTO/alto-1-4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/schema/ALTO/alto-1-4.xsd -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/schema/ALTO/alto-v2.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/schema/ALTO/alto-v2.0.xsd -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/GlyphExtraction/ImageExtractor 1.1/zlib1.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/db.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Personal/Franken+/db.conf -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/Setup.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/Setup.ini -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/program files/IDHMC/Franken+/BitMiracle.LibTiff.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/program files/IDHMC/Franken+/BitMiracle.LibTiff.NET.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/program files/IDHMC/Franken+/Franken+.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/program files/IDHMC/Franken+/Franken+.exe -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/program files/IDHMC/Franken+/Franken+.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/program files/IDHMC/Franken+/Franken+.exe.config -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/program files/IDHMC/Franken+/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/program files/IDHMC/Franken+/MySql.Data.dll -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/DiskImages/DISK1/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/DiskImages/DISK1/setup.exe -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/LogFiles/11-23-2014 07-19-06 PM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/LogFiles/11-23-2014 07-19-06 PM.txt -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/LogFiles/11-23-2014 07-20-11 PM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/LogFiles/11-23-2014 07-20-11 PM.txt -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/LogFiles/12-2-2013 02-01-05 PM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/LogFiles/12-2-2013 02-01-05 PM.txt -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/LogFiles/12-2-2013 02-02-47 PM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/LogFiles/12-2-2013 02-02-47 PM.txt -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/LogFiles/12-2-2013 11-49-06 AM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/LogFiles/12-2-2013 11-49-06 AM.txt -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/Reports/11-23-2014 07-19-23 PM.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/Reports/11-23-2014 07-19-23 PM.htm -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/Reports/11-23-2014 07-20-23 PM.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/Reports/11-23-2014 07-20-23 PM.htm -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/Reports/12-2-2013 02-03-08 PM.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/Reports/12-2-2013 02-03-08 PM.htm -------------------------------------------------------------------------------- /Setup/Setup/Express/DVD-5/Reports/12-2-2013 11-49-25 AM.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/DVD-5/Reports/12-2-2013 11-49-25 AM.htm -------------------------------------------------------------------------------- /Setup/Setup/Express/Interm/_IsIcoRes.Exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/Setup/Setup/Express/Interm/_IsIcoRes.Exe -------------------------------------------------------------------------------- /UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/UpgradeLog.htm -------------------------------------------------------------------------------- /packages/MySql.Data.6.8.3/MySql.Data.6.8.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/packages/MySql.Data.6.8.3/MySql.Data.6.8.3.nupkg -------------------------------------------------------------------------------- /packages/MySql.Data.6.8.3/MySql.Data.6.8.3.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/packages/MySql.Data.6.8.3/MySql.Data.6.8.3.nuspec -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Early-Modern-OCR/FrankenPlus/HEAD/packages/repositories.config --------------------------------------------------------------------------------