Desmis 467bac3dea
Wavelet levels: denoise and guided filter with hue curve and local contrast (#5894)
* First wavelet denoise

* Gui for wavel denoise

* First version local contrast and denoise

* Second version local contrast and denoise

* second version GUI equalizer

* enable equalizer local contrast denoise 1234

* change local contrast curve defaut

* disable local contrast when curve 1

* denmethod in advanced - standard

* Simulate slider denoise with curve

* Some various chnages

* Chnage reference local contrast

* GUI part reference local contrast

* Enable reference noise mix denoise for local contrast denoise

* Improvment to reference local contrast denoise

* Display comment in console

* Best format string in console

* Change agressive denoise limit to 50 - added tooltip

* Added method quality denoise - change madL in ftblockdn

* Change equalizer 1234 settings - added high level local contrast

* added high levels local contrast curve

* Fixed sigma local contrast

* clean format code

* Some improvments

* normalize level slider high level threshold

* change ordonate curve high level contrast

* Fixed bad level for curve high levels - simplify GUI standard

* several changes - guidefilter final - new double slider threshold

* save provisory work

* save GUI work GF threshold

* save provisory work

* Fixed some bad behavior GUI

* save GUI Hue GF

* Curve Hue for GF

* OMP for hue GF

* addes noisevarhue and fixed some bug

* save GUI equalizer hue

* enable equalizer hue

* Fixed bad behavior GUI in advanced mode

* change some default values

* Others change default values

* Change in progressivity slider threshold local contrast

* simplifie algorithm and GUI

* Added tooltip and chnage some labels

* Change labels and tooltip wavelet denoise

* added level 5 denoise

* Change typo in label guided theshold

* Various changes labels tooltip

* Change minimum wavelet level

* Added level 5 to denoise

* Change slider sigm for a double slider sigm03 sigm45

* small delay for double slider sigm

* Fixed wrong values sigm

* Hide level56 in standard complexity

* Improve in standard complexity

* Various improvment levels 14

* interaction 56 14 - advanced complexity
2020-08-30 08:16:31 +02:00
..
2020-01-27 16:59:44 +01:00
2020-01-27 16:59:44 +01:00
2020-06-03 19:39:58 +02:00
2020-01-27 16:59:44 +01:00
2020-01-27 16:59:44 +01:00
2020-05-31 13:38:38 +02:00
2020-01-27 16:59:44 +01:00
2020-01-27 16:59:44 +01:00
2019-09-10 12:34:57 +02:00
2020-01-27 16:59:44 +01:00
2020-06-05 18:34:03 +02:00
2020-01-27 16:59:44 +01:00
2020-01-27 16:59:44 +01:00
2020-01-27 16:59:44 +01:00
2020-01-27 16:59:44 +01:00
2020-01-27 16:59:44 +01:00

This is the directory where all translations should go.

Translations are loaded for a given term at three levels:

  1) default
  2) <Language>
  3) <Language> <Locale/Variant>

Developers who are adding a new feature should add new strings *only* to 
default.  This file should be comprised of basic English text.  It will be used 
in the event that there are no more specific languages specified.  Once you 
have modified default, you should run ./tools/generateTranslationDiffs (Bash 
script) which will re-generate the localizations with commented out additions 
which you have just added.

Translators should in general implement the <Language> file.  This is the 
generic translation for a given language; for instance, 'French', 'German', 
'Norsk', etc.  If a string exists in this file (and the user has specified this 
language), then RawTherapee will override the value in default with the value 
in <Language>.  Please note that the filename for this file must not contain 
any spaces.

In some situations, translations may differ based on region, locale, etc.  A 
good example of this is the difference in spelling between 'color' (American 
English) and 'colour' (British English). In this case, the vast majority of 
strings are identical between English and English (UK); however, to keep the 
proper spelling in Britain, we have a locale file called 'English (UK)' which
contains the differences between the two.  RawTherapee uses locale files when:
  a) The user has selected a language which has a space in the file name
  b) There is another file which is identical to the locale file up until the 
     space (i.e., 'English' to the locale file 'English (UK)').

If a locale file is used, it is applied in the same manner as <Language> is to 
default.  The locale will override any keys present from the ones in the 
language file (and in turn, the default).

After the generateTranslationDiffs has been run, all untranslated terms for 
a given language/locale will exist at the end of the file, prefixed by a ! 
comment marker.  Translators should go through this section of the file and 
translate all terms which they can. After you have translated a line, just 
remove the ! comment marker.  Comments may be included using the #xx comment 
marker, where xx is a numeric prefix used to make sure automated sorting keeps 
comments in the right order, e.g.:
  #00 Comment line 1...
  #01 Line 2...
  #02 3, etc.

To create a file with only Latin characters from a non-Latin one, you can use 
sed with the "y" command. For example, to create a latin-only "Polish (Latin 
Characters)" file from the non-latin "Polish" one:
  sed 'y/ĄĆĘŁŃÓŚŹŻąćęłńóśźż/ACELNOSZZacelnoszz/' < Polish > "Polish (Latin Characters)"

You can use this Wikipedia "Character sets" category page to help you find all 
the characters in the language file you want to convert into Latin-only:
  http://en.wikipedia.org/wiki/Category:Character_sets

To convert all line terminators in all language files to CRLF (dos/mac/unix)
you can use vim:
  a) cd rtdata/languages
     vim
  b) In vim, type:
     :set ffs=dos
     :args *
     :argdo w
  c) vim will process all language files. Once done, you can close it:
     :q