-
Hi, I'm developing a small app to test the performance (memory, CPU and time) and the differences between demosaicing algorithms in .NET (+Gtk), and I decided to use Magick.NET, because it seemed like a very good option and the best in quantity of supported formats. I have implemented everything already, but I don't know how to set/change the demosaicing algorithm to use for RAW file conversions. The Libraw documentation indicates that the user_qual field is the same as -q working with dcraw, but I have not found anything similar in the Magick.NET source code. int user_qual; Is there a way to select the algorithm to use? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
We don't have this option available yet. I just pushed a change to make this possible in ImageMagick. And I will add an option to make this available in the next release of Magick.NET by a new property called |
Beta Was this translation helpful? Give feedback.
We don't have this option available yet. I just pushed a change to make this possible in ImageMagick. And I will add an option to make this available in the next release of Magick.NET by a new property called
InterpolationQuality
in theDngReadDefines
class.