so maybe Iāll look like a total newbie (again!) but I have found that the Darktable rendering of RAW images coming out of my X-T2 are far from matching the ones from the camera. All sorts of aliasing issues and lighting and colors⦠While Iām used to having different rendering between the camera and Darktable (I also had problems with my Canon Powershot G12), this is making me go simply back to shoot in plain JPG, which is a little frustrating.
Is this something those styles could fix? How do I install those styles anyways? And should those styles be shipped with DT (and applied!) by default?
Based on your description of your problems I donāt think these dtstyles will help at all. You can however install them by placing them in your .config/darktable/styles directory. (gnu/linux user right?) A dev should answer the shipping question but Iām guessing that they wonāt ship this type of style.
Itās always a good idea to post some images of the problems youāre having. Ideally with RAW and xmp files so we can see your settings.
Yep. Debian GNU/Linux āstretchā 9.3. Iām curious to hear why they wouldnāt ship such styles⦠Thanks for the docs!
Well, back when I had those problems, this forum didnāt exist. I whined and fretted on IRC, but that didnāt do anyone any good. Now that thereās such a great community here, I may try my luck again next time I have that trouble! But obviously, a new thread would probably be a better placeā¦
I find using Fujifilmās Silkypix to convert the .raf file retains the ooc jpeg color very well. Once converted, dt can do the rest. An added benefit is that it has all the Fuji film similation.
As I understand it, Silkypix, although itās Fujiās proprietary product and processing, does not quite match the performance of their in-camera processing for output quality. Iāll try these styles though, just to get the Acros for my X100Tāthe only thing Iām missingāalthough I donāt know if the image from the Tās sensor is up to the challenge compared to the Fās new sensor.
Are there any special considerations installing these styles on MacOS?
To be honest, this hunt for the exactest match of these Fuji in-camera processing appears a little esoteric to me. Since these styles are more an approximation to the approximation given by the haldCluts, I would not expect too much accuracy
I like the basic look of the CC and Acros styles and it can be quite convenient to use them like these. Moreover, I donāt use them exclusively for Fuji raws. Here is an example of the Acros style applied to a Nikon raw:
Beautiful. Yes, itās another simulation of a film and youāre right, itās an approximation. Now that I have darktable and these styles, Iām going back to FINE (JPEG) + RAW instead of bracketing JPEG simulations and choosing among them.
Iām reviving this old thread just to let others know about a little trick to make the styles collection in Darktable a bit more ācleanā by using the hierarchical naming convention supported in DT 2.6.2 (not sure if itās back compatible as well; Iām just saying that Iāve discovered this work in the current release Iām using which is 2.6.2).
After downloading the styles from here: https://blog.sowerby.me/fuji-film-simulation-profiles/ (making sure you follow the link for the darktable archive obv), run this batch script to change the <name> tag (copy the following to a text file, call it whatever.sh, and run it with bash whatever.sh; this works on linux and mac).
#!/bin/bash
OIFS="$IFS"
IFS=$'\n'
for file in `find . -type f -name "*.dtstyle"`
do
echo "file = $file"
sed 's/<name>Fuji XTrans III - /<name>Fuji XTrans III|/g' "$file">temp.dat
mv temp.dat "$file"
done
IFS="$OIFS"