diff --git a/README.md b/README.md index bd669e9..83e7919 100644 --- a/README.md +++ b/README.md @@ -21,3 +21,35 @@ https://www.thingiverse.com/thing:142282/files - Steps: number of steps for this scene. - Distance per step: how far to move between the steps. + +## Example results + +This is the first image that was made using this project: + +![](example_images/220213_macro_cent.jpg) + +Depth of field for my setup is a little more than 1mm, so this image is +composed from 30 different shots, each 1mm apart. Here's an animation of the +non-fused images: + +![](example_images/220213_macro_cent_-_animation.gif) + +The images were taken as JPG. For some reason the align-program did strange +things with my full size images, so I reduced them in size first -- it's only a +first test: + +``` +for i in *.JPG; do convert $i -resize 50% $i.tif; done +``` + +Then I was able to align all images: + +``` +align_image_stack -ma aligned_ AJ9E94*.tif +``` + +Once all images had been alignes, I created the final image from my stack of photos: + +``` +enfuse -o result.tif --exposure-weight=0 --saturation-weight=0 --contrast-weight=1 --hard-mask --contrast-edge-scale=0.5 aligned_00* +```