buabaj / voters-id-reader

A demo project to extract data from the Ghana Voters' ID card using Go, Gin and and Zxing Golang port. This project is mainly to help me understand how to handle form data in Golang and text and image manipulation. This should not be used in production.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

voters-id-reader

A demo project to extract data from the Ghana Voters' ID card using Go, Gin and and Zxing golang port. This project is mainly to help me understand how to handle form data in Golang and text and image manipulation. This should not be used in production.

Description

This project is a demo project to extract data from the Ghana Voters' ID card using Go, Gin and and the Zxing port for Golang. It works by uploading an image of the ID card and the application extracts the data from the image and returns it as a JSON response.

Live Environment

Setting up the project locally

  • Clone the repository
git clone https://github.com/buabaj/voters-id-reader
  • Navigate to the project directory.
cd voters-id-reader
  • Install the dependencies
go mod download
  • Run the application
go run main.go
  • Test the endpoints using Postman or any other API testing tool

Endpoints

Name Request Method Endpoint Parameters Response code
Index GET localhost:8080/ None 200 OK
Read Data from ID POST localhost:8080/read None 200 OK

|

Sample Data

Sample form data to test read endpoint

{
    "file": "path/to/image/file"
}

Sample JSON response to read endpoint

{
    "data": {
        "dateOfBirth": "1900-01-10",
        "dateOfRegistration": "2020-01-10",
        "firstName": "Test",
        "gender": "Male",
        "idNumber": "xxxxxxxxxx",
        "pollingStationCode": "xxxxxxx",
        "surname": "Test",
    },
    "message": "ID successfully decoded",
    "status": "success"
}

Future Work

  • Add tests
  • Learn how to test endpoints that require file uploads
  • For this current version, the image needs to be clear and fit the corners of the ID card. This will be improved in the future to allow for images that are not clear and do not fit the corners of the ID card. That is, the application will be able to detect the ID card in the image and crop it out.

About

A demo project to extract data from the Ghana Voters' ID card using Go, Gin and and Zxing Golang port. This project is mainly to help me understand how to handle form data in Golang and text and image manipulation. This should not be used in production.


Languages

Language:Go 100.0%