Commit Graph

1452 Commits

Author SHA1 Message Date
Richard Barber
f11de6b915 mac:options font name adjust. 2020-02-17 13:18:40 -08:00
Richard Barber
097375e543 mac: spell font name correctly 2020-02-17 12:21:45 -08:00
Richard Barber
4905b03372 mac: add some comments 2020-02-16 23:47:44 -08:00
Richard Barber
338c2aacce mac:bundle simplification cont'd 2020-02-16 06:08:12 -08:00
Morgan Hardwood
12b1d8f767 Polish translation updated by bwisn, closes #5653 2020-02-15 14:47:34 +01:00
scx
291abfd7a7 Install additional icons
- Install 32x32 icon
 - Install 64x64 icon
 - Install scalable icon
2020-02-08 12:56:40 +01:00
Desmis
b5b2c91078 merge with dev 2020-02-06 16:53:11 +01:00
Desmis
e985a5d288 merge with dev 2020-02-06 16:41:40 +01:00
Morgan Hardwood
cd1e96b41c Changes to merge release 5.8 back into dev 2020-02-06 12:04:28 +01:00
Desmis
a91b9d361e merge with dev 2020-02-06 11:44:03 +01:00
Desmis
a70ab81dcc merge with dev 2020-02-06 11:20:05 +01:00
Morgan Hardwood
aa120768ea Show 5.8 in splash screen
Reverts d6fb05938 for `release-5.8` branch
2020-02-03 18:54:40 +01:00
Morgan Hardwood
160aae7215 Polish translation updated
Updated by Bartłomiej Wiśniowski / bwisn
Closes #5631
2020-02-02 23:23:31 +01:00
Morgan Hardwood
d6fb059382 Revert version in splash screen
Revert version shown in splash screen in dev branch from "5.8"
to "5.7 development" as 5.8 is not tagged yet.
2020-02-02 14:34:46 +01:00
Morgan Hardwood
1f0f05a742 Updated splash screen
SVG splash screen template moved to splash_template.svg

splash.svg now contains just the relevant part shown by RawTherapee.

splash.svg updated for 5.8.
2020-02-02 14:10:49 +01:00
Morgan Hardwood
abe1e3bb2f Polish translation updated
Updated by Bartłomiej Wiśniowski / bwisn
Closes #5630
2020-02-02 14:05:41 +01:00
Morgan Hardwood
364fe35023 generateTranslationDiffs 2020-01-27 16:59:44 +01:00
Desmis
83ebcff455 merge with dev 2020-01-25 08:14:14 +01:00
Desmis
7dd5f81fbd merge with dev 2020-01-25 07:46:38 +01:00
Morgan Hardwood
171668cbd1 Added FUJIFILM X-T30 dual-illuminant DCP
Closes #5387
2020-01-24 01:15:30 +01:00
Morgan Hardwood
299f9f8c85 Added Canon EOS RP dual-illuminant DCP
Closes #5572
2020-01-24 00:26:46 +01:00
Morgan Hardwood
6f89f42202 Added SONY ILCE-6300 dual-illuminant DCP
Closes #5580
2020-01-24 00:09:42 +01:00
Morgan Hardwood
401f86fb3b Added SONY ILCE-6500 dual-illuminant DCP
Closes #5581
2020-01-23 23:34:59 +01:00
Morgan Hardwood
1a7299403a Added FUJIFILM X-T10 dual-illuminant DCP
StdA from DPR studio scene.
D50 from IR shot.

Closes #5612
2020-01-23 23:05:44 +01:00
Lawrence
f16773eb3f Merge branch 'dev' into perspective
Resolve minor conflict in ImProcFunctions::transformGeneral and add new
arguments for use of ImProcFunctions::needsTransform in
PerspectiveCorrection::autocompute.
2020-01-18 18:41:26 -08:00
Lawrence
7395b26db4 Add rotation to camera-based perspective tool
This rotation is different from the Rotate tool and the post-correction
adjustment rotation because it is applied between camera shift and
camera angle. It is equivalent to correcting the camera's roll and is
the same as the rotation calculated by automatic perspective correction.
2020-01-18 17:13:24 -08:00
Lawrence
72dfa1b242 Add auto perspective correction to GUI
Add three buttons for correcting pitch, yaw, or both. Horizontal and/or
vertical tilt adjusters are updated with the automatically computed
values.
2020-01-18 14:32:03 -08:00
Desmis
ba7a61c391 merge with dev 2020-01-13 08:33:45 +01:00
Desmis
4e81cbaa72 merge with dev 2020-01-13 08:02:43 +01:00
Ingo Weyrich
49d594f67a Log transform: add method combobox 2020-01-02 19:28:57 +01:00
Desmis
89bdb7e848 merge with dev 2019-12-30 10:28:19 +01:00
Desmis
31ae02e080 merge with dev 2019-12-30 10:14:27 +01:00
Lawrence
f83a62be5b Add back the old perspective tool
Add perspective correction method chooser to allow choice between the
original perspective tool (simple) and the new one (camera-based).
2019-12-28 17:18:59 -08:00
Lawrence
f514a69104 Group perspective adjusters in frames
Divide perspective correction adjusters into three groups: camera
attributes, post-correction adjustments, and perspective distortion
recovery.
2019-12-27 20:50:18 -08:00
Lawrence
f9a8875bb5 Add more perspective correction adjusters
Add camera lens/sensor shift support with horizontal/vertical shift
adjusters.

Add shifting and rotation of corrected image. This allows
post-correction adjustments to be made more easily given the fixed image
canvas size.

Add scaling of final result. This also helps reduce frustrations with
the fixed image canvas size.

Replace field of view with focal length and crop factor. Use of focal
length and crop factor is more common than diagonal angular field of
view. The new adjusters should be more intuitive for most photographers.
The implementation of perspective correction uses a focal length
relative to the image dimensions. The existing code calculates that
focal length with trigonometry. The new code does it by multiplying
by a ratio.

Replace vertical bias with horizontal and vertical perspective
distortion recovery. Vertical bias is not intuitive as it causes
vertical lines to converge off-center if horizontal correction is
applied. The new adjusters perform perspective distortion on the
projection of the corrected image, allowing vertical/horizontal lines to
converge towards the center lines of the image.

Refactor perspective transformation math to use dynamically computed
homogeneous coordinate matrices instead of pre-calculated formulas. This
should add some overhead, but results in more maintainable code and
possible improved performance due to the reduced number of arithmetic
and assignments needed for each pixel.

Integrate new adjusters in the GUI. This includes fine granularity for
batch processing add/set modes and history.
2019-12-27 16:40:41 -08:00
Morgan Hardwood
898527732b ./tools/generateTranslationDiffs 2019-12-23 12:42:19 +01:00
Morgan Hardwood
c75cc32268 Japanese translation updated by Yz2house
Closes #5576
2019-12-23 12:41:36 +01:00
Lawrence
f4c37598ee Generalize perspective correction
Revise perspective transformation to remove hard-coded angular field of
view and horizontal perspective axis of rotation. Add vertical bias
parameter to retain ability to perform vertical perspective
transformation independent of the horizontal perspective axis of
rotation. Add field of view parameter as a tentative method for
specifying angular field of view.

The current implementation of perspective transformation applies
horizontal perspective transformation in such a way that preserves the
orientation of a horizontal line going through the center of the image.
In common use cases, horizontal lines such as the horizon do not go
through the center of the image. In such cases, the horizontal
perspective axis of rotation should not be parallel to the image's
y-axis. This commit makes the axis of rotation dependent on the vertical
parameter.

The two axes of rotation should be placed at the appropriate distance
from the image in order to prevent stretched or compressed proportions.
In the current implementation, the axes are at a fixed relative distance
from the image. This commit adds the ability to specify the distance in
the form of the diagonal angular field of view.
2019-12-18 10:22:05 -08:00
Morgan Hardwood
56de2e7a07 Help button - new icon, simplified code #5567 2019-12-17 10:38:04 +01:00
Morgan Hardwood
d6f65dc8e2 Added help button to main menu #5566
Opens RawPedia in the default URI handler
2019-12-16 23:43:09 +01:00
Desmis
b2c1f5de66 merge with dev 2019-12-15 08:24:35 +01:00
Desmis
025f444d7e Improve contrast levels with sigma 2019-12-15 08:21:41 +01:00
Morgan Hardwood
0edbdc8862 Added image/x-canon-cr3 mime type #5319 2019-12-12 12:53:39 +01:00
Desmis
44e01ffcb9 merge with dev 2019-12-06 17:30:03 +01:00
Desmis
4761b28333 merge with dev 2019-12-06 17:19:21 +01:00
Morgan Hardwood
164fab28e0 Added Slovenian translation
Translation by Matjaž Jeran / matjazjeran

Closes #5488
2019-12-02 11:25:57 +01:00
Morgan Hardwood
98ac8d5f76 generateTranslationDiffs 2019-12-02 11:24:15 +01:00
Desmis
d701afdef0 merge with dev 2019-12-01 06:56:16 +01:00
Desmis
c0da01cf9a merge with dev 2019-12-01 06:53:23 +01:00
Ingo Weyrich
23e60371ed Use capture sharpening for pixelshift profiles 2019-11-24 23:09:23 +01:00