When I first got my Fuji X-T1 in September 2014, X-Trans processing in LR was not satisfactory for most of my landscape pictures. I looked at other solutions and came away impressed with Photo Ninja and RawTherapee.
I bought Photo Ninja because it was pretty good and ingeniously integrated in an LR-based workflow. You define Photo Ninja as an external editor. LR produces a TIF file and sends it to Photo Ninja. Photo Ninja can go and retrieve the corresponding RAW file, and when you save your work, Photo Ninja replaces the TIF files LR sent with the result of its own demosaicing and treatment.
As time passed, I came to like RawTherapee more and more, but it is not as well integrated in LR.
So I wrote a Powershell script to call RT so that it mimics PHoto Ninja's file handling :
Param(
[string]$filepath
)
$tiff_file = Get-ChildItem "$filepath"
$save_location = $tiff_file.DirectoryName
$file_basename = $tiff_file.BaseName
$file_basename = $file_basename.Substring(0,8)
$raf_filename = $save_location + '\' + $file_basename + '.raf'
$ArgList = @('-o ' + $tiff_file, $raf_filename, '-w')
$cmd = 'C:\Program Files\RawTherapee\rawtherapee.exe'
Start-Process -FilePath $cmd -ArgumentList $ArgList -Wait -WindowStyle Maximized
$ArgList = @('-o ' + $tiff_file, '-S', '-b16', '-t', '-Y', '-c ' + $raf_filename, '-w')
Start-Process -FilePath $cmd -ArgumentList $ArgList -WaitSince LR cannot run a Powershell script but can run a .bat script, I wrote the following little .bat to call the other script:
rem lr_rt.bat
@echo off
powershell.exe -File D:\usr\bin\lr_rt.ps1 %*In LR, you declare lr_rt.bat as the external editor.
What the main script does is the following:
1. get all the information about the tif file produced by LR
2. from there get the path to the corresponding RAW file
3. build an argument list for RT so that it opens the RAW file
4. run RT a first time, in interactive mode. There, you get RT with your RAW file and you do all your settings. The settings are automatically saved in a .pp3 file that RT will automatically associate with the RAW file in the future.
5. run RT a second time in batch mode to replace LR's tif file with a rendering of your settings in RT.
When you edit your file in RT, there is no need to save anything. When you're finished, just close RT. The .pp3 file will keep all your settings automatically.
My explanations are really more confusing than actually using the thing.
In the mean time, LR's processing of Fuji RAW files has been considerably improved. I do not find that it lack in the fine details department anymore. RT is still maybe a bit better for that, but most of the time it comes down to sharpening.
However, RT still gives way more fine grained control on the processing and that can be useful. One thing that I find major is that RT allows to set the contrast and lightness in Lab mode, meaning I can increased the contrast without getting more saturated colours. RT has excellent film simulations as well, much much better than in LR. There are other things, but more marginally useful to me.
Hope this can be useful to someone