HBMR algorithm discussion

Hi everyone
I am Jacek Gozdz (cuniek), author of DCB demosaicing (using different account and email, as old one is down).

For few last years (yes, years!) I was thinking about an algorithm that would resolve moire. I called it HBMR, and did the basic math for it but could not find time to actually test it. Time is passing and I decided to share my thoughts with You. Maybe someone will code it and check if it works? Maybe someone knows it is worth nothing? Share Your thoughts and knowledge.

I wrote a short pdf explaining it. I tried to keep it simple and compact. It is just a hypothesis! I dont know if it works! Thanks for every input.

hbmr.pdf (29.0 KB)

7 Likes

@Jacek_Gozdz Thank you for sharing! If you can provide the test images that you may have used for developing the algorithm or past ones, even better.

There is one. Notice the stockings and right-hand side of the dress

_DSC1776.NEF (25.8 MB)

1 Like

@Iain may also be interested in playing with it in G’MIC.

I have done some amateur experiments with removing moire. See here:

and:

I don’t have the math background to immediately understand your PDF

My approach was always multi-channel. I think sampling theory makes undoing moiré from only a single channel’s data nearly impossible.

And I think the only way to undo it is to create a higher resolution image that can contain the frequencies you need to create. This is possible with the red and blue channels in a RAW file, because those are under-sampled, but the green channel is not so easy.

@Iain Combining data from different channels would be another step, after proving my approach gives any meaningful results.

This appears like a one-dimensional sliding sample set with a Hann type window. Do you propose to apply the transform in multiple directions?

@HIRAM It is one-dimensional, but technically there is no window. I fit sine function into RAW data and then look for another sine function that fits the same points but has greater frequency. The latter should, that is my assumption, represent original signal in moire area better.

Answering Your question - after chcecking initial results, I was planning to do it multi-dimensional and merge results. Maybe even cross-channel and multi-dimensional.

Does your initial code use fftw as do some other RT functions?

@HIRAM I dont have any code, therefore no. That’s the whole point of this post. I dont have time and skills to code it and check if it works. If anyone is willing to code it I would be most grateful. Maybe I could even start experimenting having a working foundation.

Can you construct pseudo-code, basically a step-by-step recipe for how you obtain a result from the presented formulæ?

1 Like

@HIRAM Ok, I’ll try and send it.

1 Like

@HIRAM here is an updated version of my pdf with additional section of pseudocode (at the end). I did what I could to find all the exceptions (division by zero etc.) but I am pretty sure there is a lot of things that would have to be corrected to make it work.

If working, it should create a proper green channel, enough to see if there is any point in putting more effort to it.

Thanks in advance

hbmrcode.pdf (37.1 KB)

2 Likes

Maybe @Jens-Hanno_Schwalm is interested as well

But of course there had to be a mistake in my pseudocode. A single, important, letter in last line. Here is corrected version to avoid confusion.
hbmrcode.pdf (37.2 KB)

@paperdigits yes i am, already read the pdf :slight_smile:

@Jacek_Gozdz and @Iain i am certainly interested in this and would love to come back to cooperative work (some dt stuff pending here like opencl for color equalizer, …) so my timeframe would be not-before-july.

Let’s say, Jacek hypothesis is correct and we can detect moire-affected regions by this tool.

How could we make use of it?

  1. I don’t think we can tune pre-demosaiced rgb data in a meaningful way so the demosaicers behave fine. Anyone with better ideas? Maybe some “pre-blurring”?
  2. In dt we could create a “moire-mask” (like the one we have for details …) but would that really help?
  3. I don’t think we currently have a good tool in dt handling/correcting/diminishing moire effects. So what would be the way to correct?
3 Likes

@hannoschwalm If my hypothesis is 100% correct, than it would be possible to recreate proper data, getting sharp, true-to-life, and moire free image. Once again - if I am 100% correct.

ok, let’s hope for the 100% then :slight_smile:

So about the correct place in the processing pipeline, for sure before demosaicing. Also likely before we do other stuff on raw data like highlights reconstruction (not so important i guess) but for sure before we do raw chromatic aberration correction.

That would mean best place would be an additional module … I will take care of that and we will see if it’s leading to something. @Iain - would you be able to do a prototype? :-))

3 Likes

About pipeline - the way I designed it, it should be done during demosaicing. The best way to start would be to make it a separate demosaicing method. If working, it should be part of demosaicing module, and work locally, replacing data created by demosaicing algorithm. Or built into DCB.

In this case I could also chceck influence of white balance and CA correction, as they can be easily turned off,

I’ve quickly translate the pseudo-code to GMIC but I think I did something wrong because it does not look good. I will try to figure it out.

2 Likes