The chemistry department at SLU uses paper scantron (fill-in-the-bubble) sheets for exams. To grade exams, they physically take the papers to one of the two machines on campus capable of processing the data. This process is time-consuming and a bit risky - the machines are getting old and might break. In general, they like using paper-based fill-in-the-bubble exams but are interested in digitizing the grading process through software that presents them with detailed results, similar to the results they get from the physical scantron machines. The specific sheets used by the chemistry department are Scantron form number 95945. While not hugely expensive, not having to order such sheets is a cost-saving. Most importantly, this software would replace the technology that's becoming obsolete and simplify the grading process.
This project automates the scanning of Scantron documents and the extraction of data to CSV files using a web-based application. Users can upload scanned images of their Scantron forms, which are then processed by our backend AI algorithms to generate and retrieve CSV files containing the extracted data. This system is designed for educational institutions and testing centers to streamline their grading processes and data management.
Before you begin, ensure you have the following software installed on your system:
- Node.js (including npm)
- Python 3.6 or newer
- Git
If you want to run the app locally, you will need two terminals to get Bubble scan set up. One for the React component, and other for the Flask component.
This project was bootstrapped with Vite. It is a simple setup to get started with React and Vite.
First, clone the repository and navigate into the project directory:
git clone <your-repository-url>
cd <your-project-name>
npm install
npm install cors
npm run build
npm run dev
Your React application will be accessible at http://localhost:5173/
.
This guide provides step-by-step instructions for setting up a Flask application within a virtual environment. This ensures that your project dependencies are managed efficiently without affecting other Python projects.
Before you start, make sure you have Python installed on your system. Flask supports Python 3.6 and newer.
cd ServerCode/application
-
On macOS and Linux:
python3 -m venv venv
-
On Windows:
python -m venv venv
Before you can start using the virtual environment, you need to activate it. The command varies depending on your operating system.
-
On Windows:
.\env\Scripts\activate
-
On macOS and Linux:
source venv/bin/activate
You'll know the virtual environment is activated because its name will appear at the beginning of the terminal prompt.
With the virtual environment activated, install all the requirements using pip:
pip3 install -r requirements.txt
You must run the App server i.e AppServer.py
to run the app
You can run your Flask applications using the AppServer.py
file as your entry point:
python3 AppServer.py
Your App server Flask application will be accessible at http://127.0.0.1:5001/
.
When you're done working on your project, you can deactivate the virtual environments by running:
deactivate
This command will return you to your system's default Python interpreter.
Uploading a scantron document:
- Navigate to
http://localhost:5173/
- Follow the prompts to upload a scanned image of the Scantron document.
Initiating the Scanning process
Once the document is uploaded, the processing starts automatically.
Retrieving the generated CSV file
Upon completion, a link to download the CSV file will be available directly on the web interface.
Make sure your docker file exists in the root directory and your docker is active. The docker file helps running the app in a single server. Follow the commands below:
cd bubble_scan
// Build the docker image
docker build -t bscan .
// Run the docker container
docker run -p 5001:5001 -p 5173:5173 bscan
Your bubble scan application will be accessible at http://127.0.0.1:5001/
.
How to run the script
chmod +x Bubblescan.sh
./Bubblescan.sh
Bubblescan.exe will be in the dist folder in BubbleScan/ServerCode/dist
Description The program will allow the users to create custom sheets based on the amount of questions and answer choices the user desires. These sheets will then be seamlesssly processed in the program.
Key Development Milestones
- Adding frontend functinality to create custom sheets and preview them