I have one bayer raw file which contains only pixel values in bayer pattern and no metadata.The bayer pattern is known.
Is it possible to the file using RawTherapee?
The following link provides some information:
http://rawpedia.rawtherapee.com/Adding_Support_for_New_Raw_Formats
The information is not enough to solve my problem.
Asked
Active
Viewed 143 times
1
Jogging Song
- 267
- 1
- 2
- 11
1 Answers
1
RawTherapee uses an embedded copy of the DCRAW utility to read and decode the RAW file (original source code). So, you need to add support for your file format here.
user24582
- 781
- 3
- 12
-
Is it possible to support the format without modifying source code? – Jogging Song May 19 '22 at 08:52
-
1The source code of DCRAW is pretty straightforward. You might be able to rewrite some parts to use configuration files, but I doubt that you can support all idiosyncrasies of all RAW formats in configuration, without writing most code twice: as source code and as configuration file. It is much easier to keep it all in one place, i.e in source code. – user24582 May 19 '22 at 21:30
dcraw -Imay do what you need. I haven't tested it. – xiota May 17 '22 at 15:10