Le 21/12/2015 21:33, Francisco Cribari a écrit :
I am running Darktable 2.0 RC4 on Fedora 23. I imported a Fujifilm
X100T RAW file (.RAF) into Darktable and noticed that the Fujifilm
X100S base curve is not listed and also that the camera has not been
profiled for denoise (denoise profile module). The Fuji X100T camera,
nonetheless, has the same sensor, processor and lens as its
predecessor, the Fuji X100S. I would then expect that the Fujifilm
X100S base curve and (especially) that the X100S denoise profiled
would be applied to X100T RAW files. Am I missing something? Is there
an easy way to make the X100S denoise profiled data available for
X100T RAW files? Thanks. FC P.S. The Fuji X100S is listed as
supported and the Fuji X100T is listed as not supported in
http://www.darktable.org/resources/camera-support/ .
Hi Francisco,
to duplicate the basecurve, you can apply this change to the database
library.db
with sqlite3 do :
|create temp table tbl as select * from presets where name = "Fujifilm
X100S" ;||
||update tbl set name = "Fujifilm X100T", model = "%X100T%",
writeprotect = 0 ;||
||insert into presets select * from tbl ;||
|
to verify the change:
|select * from presets where name like "Fujifilm%";|
be sure to save the file library.db before applying changes !
This works perfectly with dt 1.6. I have not yet installed dt 2.0, but I
think it should also work with this version since the presets system has
has not been modified.
Concerning noise profile, with dt 2.0 this should be easy since the
profiles are now stored in external json files.
JP
------------------------------------------------------------------------------
_______________________________________________
Darktable-users mailing list
Darktable-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-users