A tool for measuring height changes using a laser level and a webcam.
Project description
LaserVision: Real-time Laser Measurement with a Webcam
This is the software component in building a highly accurate measurement device primarily used in a similar way to a surface plate. Sofar measurements are attainable between 0.5um - 2um in repeated measurements.
Video on the usage of this tool:
Because of how image sensor technology has progressed, we can use that as the basis of a highly accurate measurement device. This tool works by reading the laser sensor’s intensity values on a webcam with its camera lens taken off. An image sensor off a typical $15 webcam is about 3mm wide and has a resolution of FHD (1920x1080). This means that each light sensor is in the range of 1-5 microns in size.
The camera sensor is mounted at 90 degree angle so the wide direction is vertical. This gives a high coverage to sense the beam and also rescues power source based noise like PWM noise in switching power supplies.
The laser beam can be a point or a preferred horizontal line (like in a self leveling laser that I am using). We take the mean of each row (ex 1080 pixels wide) reshaping the 2D image into a 1D array. We then take this 1D array and fit a gaussian curve to it to find the center point. Finally converting the pixel position into physical height from calculations based on the physical size of the sensor to its resolution.
Further improvements reaching sub-pixel noise can be done by multisampling the results, smoothing out the luminosity noise in the 1D array, and removal of outliers by percentage.
This tool is based on the hard work of this original Java tool but using a different base language Python and further changes to improve its accuracy and usability, and sample speed.
Installation Steps
Follow these steps to install the Python program:
1. Clone the Repository
Start by cloning the repository containing the Python program to your local machine. Open a terminal and run the following command:
git clone https://github.com/bhowiebkr/laser-level-webcam.git
2. Create a Virtual Environment
Navigate to the cloned repository directory using the cd command:
cd laser-level-webcam
Next, create a virtual environment for isolating the program's dependencies. Run the following commands:
2a. if you are missing virtualenv, install it with pip
pip install virtualenv
2b. Setup the virtualenv:
virtualenv venv
3. Activate the Virtual Environment
Activate the virtual environment to start using it.
.\venv\Scripts\activate
4. Install Required Packages
The program's required packages are listed in the requirements.txt file. This will install the packages into the virtual environmnent setup in step 2. To install these packages, run the following command:
pip install -r requirements.txt
This command uses pip
to install the packages specified in the requirements.txt file.
5. Run the Python Program
After installing the required packages, you are ready to run the Python program:
python.exe laser_level_tool/main.py
We run the main.py
file in the laser_level_tool
directory
Usage
I’ll make a video explaining this tool and the workflow in greater detail, but in the meantime, work from the left to the right of the tool. Some helpful tips:
- About 100 sub-samples. I tried up to 1000 sub-samples and didn’t find much more of a difference.
- remove 50% of the outliers
- crank the smoothing way up
- let the tool stay on for at least 5 minutes so the webcam sensor stays at a consistent temp. It will drift while getting up to temp. It might be best to test this on your own sensor by taking the same measurement from a cold start and time how long it takes before the samples stop drifting.
- Make sure nobody is walking around.
- Don’t stand when taking a sample because it’ll pick up your leg muscles. Sit and don’t move.
- Disable auto exposure and auto color temp. Disable anything that says auto in the device config with the extra attribute button (bottom left)
- If using a self leveling laser level. Anything will make the beam wobble. Look out for sources like people, computers/electronics with fans, HVAC systems, etc.
License
This project is licensed under the GNU Public License 3.0. See the LICENSE
file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file laser_level_webcam-1.0.0.tar.gz
.
File metadata
- Download URL: laser_level_webcam-1.0.0.tar.gz
- Upload date:
- Size: 17.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3bf4e487a3148c83f396d385504b79748492808ebbb545a2da90ec114c5f17d2 |
|
MD5 | 05c5719f9950a69cbbf8d8d778a5a2c5 |
|
BLAKE2b-256 | a6f9f001c051388a66fa19c3ddb4aa8500e979cd6b42f95a22d810f7403d2811 |
File details
Details for the file laser_level_webcam-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: laser_level_webcam-1.0.0-py3-none-any.whl
- Upload date:
- Size: 19.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf0495edf9066b2da5f87e9d56be85edfdcad2c0cdeab3c47708398bc9219da5 |
|
MD5 | 4ab2e5b8c95de1d08f04cf460618565c |
|
BLAKE2b-256 | 323039ebde4a9a0d2582e1af0806799a76c2f650c20e12f55ba1e7625ec7fb7d |