Alberto Griggio
95a5f3d662
fixed compilation that was broken by merging 'enhanced-inspector-mode'
2018-03-27 13:46:20 +02:00
Alberto Griggio
15813abbed
Merge pull request #4457 from Beep6581/hilite-recon-color-propagation-new
...
some tweaks to the colour propagation method for highlight recovery
2018-03-27 12:18:06 +02:00
Alberto Griggio
a0a9488c20
Merge pull request #4459 from Beep6581/enhanced-inspector-mode
...
feature: added option to use a (fast) neutral RAW rendering in 'inspector mode'
2018-03-27 12:17:22 +02:00
Desmis
75fb5a697e
merge with dev
2018-03-27 10:31:46 +02:00
Alberto Griggio
f5342cc24a
Merge pull request #4461 from Beep6581/custom-working-profiles
...
added possibility to specify extra working spaces via a json file
2018-03-27 08:34:58 +02:00
Desmis
1062869d01
merge with Dev
2018-03-26 14:59:08 +02:00
Morgan Hardwood
4511b693e1
Updated PREFERENCES_SND_THRESHOLDSECS key and generateTranslationDiffs
2018-03-25 01:28:42 +01:00
Beep6581
e6c580211a
Merge pull request #4468 from luzpaz/misc-typos
...
Misc. typos
2018-03-25 01:23:16 +01:00
luz.paz
aa706e5f8d
+ source typo
2018-03-24 19:42:53 -04:00
luz.paz
b41fea1c6f
Misc. typos
...
Found via `codespell -q 3 -I ../rawtherapy-whitelist.txt --skip="./rtdata/languages"`
2018-03-24 19:42:08 -04:00
heckflosse
45fcbe9052
Fix broken colour toning when b&w is enabled
2018-03-24 10:28:43 +01:00
Hombre
bf6702fa56
Scroll wheel (and possibly touchpad) better handled, see #3923
2018-03-23 23:21:05 +01:00
heckflosse
806e1b32bb
Fix B&W colour cast when lab tool is disabled
2018-03-23 15:39:00 +01:00
Alberto Griggio
aecbc2cf24
fixed compilation problem
2018-03-23 14:37:57 +01:00
Alberto Griggio
1b828987be
fixed capitalization of 'RAW' --> 'raw'
2018-03-22 23:11:12 +01:00
heckflosse
8883f45b7e
pixelshift: bugfix for transitions and improvement for monochrome motion mask. fixes #4456
2018-03-22 18:31:37 +01:00
Alberto Griggio
c4933e36c8
merged 'improved-gamut-warning' into 'dev'
2018-03-22 16:21:43 +01:00
Alberto Griggio
6f83d57458
some tweaks to the colour propagation method for highlight recovery
...
with the attempt to make it "smoother" and more realistic (or at least eye
pleasing) in some corner cases
2018-03-22 15:45:18 +01:00
Alberto Griggio
7ab6f59c28
merged 'raw-line-noise-direction' into 'dev'
2018-03-22 13:56:58 +01:00
heckflosse
32e9c454f5
Don't report vibrance processing time if vibrance is disabled
2018-03-22 02:16:57 +01:00
heckflosse
a75de0a6c5
Merge branch 'dev' into vibrance_review
2018-03-22 02:01:42 +01:00
Alberto Griggio
46a556fbaa
tweaked procparams adjustment for the fast pipeline (denoise and RL deconvolution radius)
2018-03-21 22:49:06 +01:00
Alberto Griggio
4c3c7a4c09
fixed bug in setting BPC in the gamut warning
2018-03-22 22:50:39 +01:00
Alberto Griggio
e1df76fe75
Merge pull request #4455 from Beep6581/fuji-14bit-load-raw
...
added support for Fuji X-A3 (ported from Libraw)
2018-03-21 19:55:52 +01:00
Alberto Griggio
15d8e2917a
added support for Fuji X-A3 (ported from Libraw)
...
See #4447
2018-03-21 18:03:27 +01:00
Ingo Weyrich
b0092a2436
Merge pull request #4454 from Beep6581/monochrome-thumb
...
Fix wrong monochrome thumbnails
2018-03-21 17:41:31 +01:00
heckflosse
386d43a508
Fix bug I introduced in sony_arq_load_raw()
2018-03-21 17:37:22 +01:00
Desmis
34594d357f
merge with dev
2018-03-21 08:43:25 +01:00
heckflosse
2591364b54
Fixed wrong replacement of rgb_cam matrix
2018-03-20 23:06:22 +01:00
heckflosse
59ebf99f63
Add support for embedded single channel previews, fixes #4419
2018-03-20 22:20:25 +01:00
heckflosse
b29029527d
Fix black thumb when applying a processing profile to a monochrome dng with wrong rgb_cam matrix
2018-03-20 22:18:42 +01:00
Morgan Hardwood
32d081add1
Slow down cowboy... changed 5.5-dev to 5.4-dev
2018-03-20 21:39:21 +01:00
Desmis
a08c7b4182
merge with dev
2018-03-20 18:21:51 +01:00
Alberto Griggio
c7c8f68e32
fixed segfault in the oog check when the gamut profile is null
2018-03-20 15:50:55 +01:00
Alberto Griggio
b09bf381b4
added possibility to specify extra working spaces via a json file
...
The JSON file is called workingspaces.json, it can be either in the global iccprofiles directory, or in the user's ICC profiles dir (set in preferences).
The format is the following:
{"working_spaces": [
{
"name" : "ACES",
"file" : "/path/to/ACES.icc"
},
{
"name" : "ACEScg",
"matrix" : [0.7184354, 0.16578523, 0.09882643, 0.29728935, 0.66958117, 0.03571544, -0.00647622, 0.01469771, 0.66732561]
}
]}
if "matrix" is present, "file" is ignored. If only "file" is present, the matrix is extracted from the ICC profile. For this, we look only at the R, G, and B matrix columns and the white point set in the profile. Bradford adaptation is used to convert the matrix to D50. Anything else (LUT, TRC, ...) in the profile is ignored.
It is the user's responsibility to ensure that the profile is suitable to be used as a working space.
2018-03-20 15:06:09 +01:00
Ingo Weyrich
33a24bb1d3
Merge pull request #4449 from Beep6581/flatfield_monochrom
...
Flatfield correction for monochrome raw files, fixes #4418
2018-03-20 14:44:45 +01:00
heckflosse
84c56f55b2
Accessing a lut with a double precision floating point index truncates, fixes #4431
2018-03-20 14:40:58 +01:00
Ingo Weyrich
4e9478df24
Merge pull request #4442 from Beep6581/arq_review
...
Speedup for sony_arq_load_raw()
2018-03-20 14:34:12 +01:00
Ingo Weyrich
3c6f314bb1
Merge pull request #4406 from Beep6581/pfcorrect-cleanup
...
review and speedups for 'rtengine/PF_correct_RT.cc'
2018-03-20 14:29:03 +01:00
heckflosse
196e88473a
Merge branch 'dev' into pfcorrect-cleanup
2018-03-20 14:26:55 +01:00
Ingo Weyrich
5dee5d4df4
Merge pull request #4413 from Beep6581/rcd-speedup
...
Speedup for rcd demosaic
2018-03-20 14:06:26 +01:00
heckflosse
56c736f106
Disabled timing code in amaze and rcd demosaic
2018-03-20 14:04:01 +01:00
Morgan Hardwood
2efdfba293
Prepare to merge 5.4 from releases back into dev
2018-03-20 13:54:02 +01:00
Alberto Griggio
7096c9656a
Fix for #4447 (support for Fuji X-A10)
2018-03-20 13:18:53 +01:00
Morgan Hardwood
a5e8eb9c8a
Formatted RELEASE_NOTES
...
The document now looks better in the About dialog/splash screen which
does not use a monospace font.
2018-03-20 12:04:15 +01:00
Morgan Hardwood
e1362d2d20
Preparing for release 5.4
2018-03-20 11:41:22 +01:00
Morgan Hardwood
b4366a4a72
Merge branch 'dev' into release5.4
2018-03-20 01:34:48 +01:00
Morgan Hardwood
ac0bcd06c4
Added dual-illuminant SONY DSLR-A580 DCP
2018-03-20 01:21:37 +01:00
Morgan Hardwood
f00baa5739
Added dual-illuminant MINOLTA DYNAX 7D DCP
2018-03-20 01:12:46 +01:00
heckflosse
e03646fc5b
Code review and speedup for ImProcFunctions::vibrance(), also fixes #4443
2018-03-19 01:34:15 +01:00