Skip to main content Link Menu Expand (external link) Document Search Copy Copied
Table of contents

BQAT-GUI

Setting Up


graph TD
    download[Download the docker compose file] --> run(Spin up the container)
    run --> web{Visit localhost:9949}
    web --> raw[Raw data]
    web --> report[EDA report]
    web --> outlier[Outliers detected]

Workflow


graph LR
    input[Biometrics] --> upload(Upload data)
    subgraph bqat [BQAT Web GUI]
      upload --> process[Process biometric samples]
      process --> preview[Preview raw output]
    end
    preview --> raw(Download raw output as CSV)
    preview --> outlier(Identify potential outliers)
    preview --> report(Genrate EDA report from the data)

BQAT-GUI could also distrubuted as a desktop application, reach out to us for further detail.

User Interface

Home

This is the landing page, with a brief introduction to the BQAT workflow.

Screenshot

Data Input

Import/select input data and submit analysis task.

Screenshot

  1. Local files

    • The user could import dataset as zip file to the server.

    • Or may transfer the data to the data folder on the machine (if you run it on your local machine or have access to the machine).

  2. Remote files

    • The user could also upload files from the browser directely (limited number possible), and the data won’t be saved on the server once processed.

You may filter the input files by filename or type.

Screenshot


You may convert/rescale the input files if needed.

Screenshot


Select dataset modality and processing engine(s).

Screenshot

Task Management

Monitor status of ongoing task. You can stop/resume or cancel the task.

Screenshot


Preview/download output data.

Screenshot


Identify potential outliers using output data.

Screenshot


Generate EDA report using output data.

Screenshot

Results EDA Report

You may view/download the EDA report in this page. You can also share the report via the QR code.

Screenshot

Data Management

Instead of import/upload the dataset from input tab, you may upload the dataset via this tab beforehand (and delete if you like).

Screenshot


You can inspect the data as well (WSQ fingerprint files supported).

Screenshot


Output

Raw Data

Screenshot


EDA Report

Screenshot


Outlier Detection

Screenshot

BQAT-GUI lite

This version is a simple example web interface, which expose only the main biometic processing function.

Note: Not suitable for large dataset processing due to browser limitation.

Setting Up


graph TD
    download[Download the docker compose file] --> run(Spin up the container)
    run --> web{Visit localhost:7860}
    web --> output[Output exported as CSV]


Workflow


graph LR
    input[Biometrics] --> submit(Submit task)
    subgraph BQAT Web GUI
    submit --> check[Check task status]
    check --> retrieve(Retrieve raw output when finished)
    end
    retrieve --> export(Download output as CSV)

User Interface

Screenshot


Output

The output can be downloaded as CSV.

Screenshot