Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sudhan670/cautious
https://github.com/sudhan670/cautious
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/sudhan670/cautious
- Owner: sudhan670
- Created: 2024-11-01T09:32:34.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-01T10:00:54.000Z (4 months ago)
- Last Synced: 2024-11-01T11:16:49.235Z (4 months ago)
- Size: 808 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Document Capture Prototype
This prototype extracts key information (Name, Document Number, Expiration Date) from documents like passports or driver’s licenses using Node.js for the backend and React.js for the frontend.
## Features
- **OCR Extraction**: Uses OCR to read document data.
- **Data Validation**: Ensures accuracy of extracted data.
## Tech Stack
- **Backend**: Node.js, Express.js, OCR (e.g., Tesseract.js)
- **Frontend**: React.js## Setup
1. **Clone the Repository**
```bash
git clone https://github.com/your-username/document-capture-prototype.git
cd document-capture-prototype
```2. **Install Backend and Frontend Dependencies**
```bash
# Backend setup
cd backend
npm install
cp .env.example .env # Configure your environment variables
npm start# Frontend setup
cd ../frontend
npm install
npm start
```3. **Run the App**
- Open [http://localhost:3000](http://localhost:3000) in your browser to use the app.## Usage
Upload a document image (passport or driver’s license) via the UI. Extracted details will display on the page.
## Screenshot---