{"id":19348254,"url":"https://github.com/srirangav/vocr","last_synced_at":"2025-04-13T01:51:24.466Z","repository":{"id":162477817,"uuid":"483558428","full_name":"srirangav/vocr","owner":"srirangav","description":"MacOSX command line program to perform optical character recognition (OCR) on images and PDFs","archived":false,"fork":false,"pushed_at":"2022-10-29T07:23:12.000Z","size":260,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-26T19:36:54.749Z","etag":null,"topics":["cli","macos","ocr"],"latest_commit_sha":null,"homepage":"","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/srirangav.png","metadata":{"files":{"readme":"README.txt","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-04-20T07:51:20.000Z","updated_at":"2024-10-10T00:34:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"0939650d-64bb-43c2-8817-076524a5bf7e","html_url":"https://github.com/srirangav/vocr","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srirangav%2Fvocr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srirangav%2Fvocr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srirangav%2Fvocr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srirangav%2Fvocr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/srirangav","download_url":"https://codeload.github.com/srirangav/vocr/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248654030,"owners_count":21140235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","macos","ocr"],"created_at":"2024-11-10T04:19:32.224Z","updated_at":"2025-04-13T01:51:24.444Z","avatar_url":"https://github.com/srirangav.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"README\n------\n\nvocr v0.3.1\n\nHomepage:\n\n    https://github.com/srirangav/vocr\n\nAbout:\n\n    vocr is a MacOSX command line program that can perform optical\n    character recognition (OCR) on images and PDF files.  It outputs\n    any text found in the input files to stdout.  vocr relies on,\n    and derives its names from, the Vision framework (v for [V]ision).\n\nUsage:\n\n    vocr [-v] [-f] [-p] [-a [accurate|fast]] [-i [no|tab]] [-l [lang]] [files]\n\n    If -v is specified, vocr runs in [v]erbose mode and outputs\n    errors and informational messages.\n\n    If -f is specified, vocr will perform ocr on each page in a\n    PDF.  By default, if a PDF already contains a text representation\n    of a given page, vocr will output that text.\n\n    If -p is specified, when OCR'ing a PDF, a page break (^L) will\n    be inserted at the end of each page.\n\n    if -a is specified with the 'fast' option, vocr will use the\n    'fast' ocr algorithm, which may be useful for non-English\n    languages, such as German.  If -a is specified with the 'accurate'\n    option, vour will use the 'accurate' ocr algorithm (which is the\n    default).\n\n    If -i is specified with the 'no' option, vocr will not attempt\n    to indent any text that is OCR'ed.  If -i is specified with the\n    'tab' option, vocr will indent using tabs instead of spaces (by\n    default vocr indents using spaces).\n\n    If -l is specified, on MacOSX 11.x (BigSur) and newer, vocr\n    will ask the Vision framework to recognize the text in the\n    specified language.  The supported language options are:\n\n        'de' - German\n        'en' - English\n        'fr' - French\n        'it' - Italian\n        'pt' - Portuguese\n        'es' - Spanish\n        'zh' - Chinese\n\nBuild:\n\n    $ ./configure\n    $ make\n\nInstall:\n\n    $ ./configure\n    $ make\n    $ make install\n\n    By default, vocr is installed in /usr/local/bin.  To install\n    it in a different location, the alternate installation prefix\n    can be supplied to configure:\n\n        $ ./configure --prefix=\"\u003cprefix\u003e\"\n\n    or, alternately to make:\n\n        $ make install PREFIX=\"\u003cprefix\u003e\"\n\n    For example, the following will install vocr in /opt/local:\n\n        $ make PREFIX=/opt/local install\n\n    A DESTDIR can also be specified for staging purposes (with or\n    without an alternate prefix):\n\n        $ make DESTDIR=\"\u003cdestdir\u003e\" [PREFIX=\"\u003cprefix\u003e\"] install\n\nDependencies:\n\n   vocr relies on VNRecognizeTextRequest in Apple's Vision\n   framework, which is available on MacOSX 10.15 (Catalina)\n   and newer:\n\n   https://developer.apple.com/documentation/vision/vnrecognizetextrequest\n\nHistory:\n\n    v. 0.3.1 - updates for Monterey (MacOSX 12)\n    v. 0.3.0 - switch to PDFKit\n    v. 0.2.3 - fix manpage formatting\n    v. 0.2.2 - move source files into configure.ac\n    v. 0.2.1 - update configure with additional compiler options\n               related to security\n    v. 0.2.0 - print text as soon as it has been recognized,\n               default to quiet mode, add support for languages\n               other than English\n    v. 0.1.0 - initial release\n\nPlatforms:\n\n    vocr has been tested on MacOSX 11 (BigSur) and 12 (Monterey) on M1\n    and x86_64. It should also work on MacOSX 10.15+ (Catalina) x86_64.\n\nLicense:\n\n    See LICENSE.txt\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrirangav%2Fvocr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsrirangav%2Fvocr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrirangav%2Fvocr/lists"}