libstacker
A multithreaded port of the python code found here: github.com/maitek/image_stacking
This crate contains multithreaded functions that aligns and stacks images using OpenCV and Rayon.
Read more about image alignment with OpenCV here.
Usage:
Download the test images:
git clone https://github.com/maitek/image_stacking image_stacking_py
Build the code:
Opencv-rust can be little tricky to install. Follow the instructions from rust opencv
You will need the "clang-runtime" feature if you experience problems with your clang environment .
or
Run the example:
or
and then wait a few seconds. The program should sort the images by quality, drop the least sharp image, and align and stack the rest. The result should be two windows showing the stacked images using two different alignment methods.
API
let keypoint_match_img: Mat = keypoint_match?;
Depending on the parameters the ecc_match()
is much slower, but also more accurate.
let ecc_match_img: Mat = ecc_match?;
Todo
- Figure out the docs.rs problem
- Figure out what to do with
.reshape()
inkeypoint_match()
Figure out some opencv parametersresponsibility sneakily shifted to end user.- Complete the
sharpness_tenengrad()
function. Mat not square? - Command line options in the example
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.