简体   繁体   中英

What are some common focus stacking algorithms?

I want to write my own focus stacking software but haven't been able to find a suitable explanation of any algorithm for extracting the in-focus portions of each image in the stack.

For those who are not familiar with focus stacking, this Wikipedia article does a nice job of explaining the idea.

Can anyone point me in the right direction for finding an algorithm? Even some key words to search would be helpful.

I realise this is over a year old but for anyone who is interested...

I have had a fair bit of experience in machine vision and this is how I would do it:

  1. Load every image in memory
  2. Perform a Gaussian blur on each image on one of the channels (maybe Green):

    The simplest Gaussian kernel is:

    1 2 1

    2 4 2

    1 2 1

    The idea is to loop through every pixel and look at the pixels immediately adjacent. The pixel that you are looping through is multiplied by 4, and the neighboring pixels are multiplied by whatever value corresponds to the kernel above.

    You can make a larger Gaussian kernel by using the equation:

    exp(-(((x*x)/2/c/c+(y*y)/2/c/c)))

    where c is the strength of the blur

  3. Perform a Laplacian Edge Detection kernel on each Gaussian Blurred image but do not apply a threshold

    The simplest Laplacian operator is:

    -1 -1 -1

    -1 8 -1

    -1 -1 -1

    same deal as the Gaussian, slide the kernel over the entire image and generate a result.

    An equation to work out larger kernels is here:

    (-1/pi/c/c/c/c)*(1-(x*x+y*y)/2/c/c)*exp(-(x*x+y*y)/2/c/c)

  4. Take the absolute value of the Laplacian of Gaussian result. this will quantify the strength of edges with respect to the size and strength of your kernel.

  5. Now create a blank image, loop through each pixel and find the strongest edge in the LoG (ie the highest value in the image stack) and take the RGB value for that pixel from the corresponding image.

Here is an example in MATLAB that I have created:

http://www.magiclantern.fm/forum/index.php?topic=11886.0

You are free to use it for whatever you like. It will create a file called Outsharp.bmp which is what you are after.

To better your output image you could: - Compensate for differences in lightness levels between images (ie histogram matching or simple level adjustment) - Create a custom algorithm to reject image noise - Manually adjust the stack after you have generated it - Apply a Gaussian blur (be sure to divide the result by 16) on the focus map so that the individual images are better merged

Good luck!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM