Skip to content

Commit

Permalink
Small tweak to generic hist and sharpen factors
Browse files Browse the repository at this point in the history
  • Loading branch information
amirzaidi committed Feb 4, 2019
1 parent ce96027 commit a2284f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/main/java/amirz/dngprocessor/device/Generic.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ public void neutralPointCorrection(SparseArray<TIFFTag> tags, Rational[] neutral

@Override
public float histFactor(SparseArray<TIFFTag> tags) {
return 0.2f;
return 0.15f;
}

@Override
public float sharpenFactor(SparseArray<TIFFTag> tags) {
return lowLight(tags)
? 0.1f
: 0.325f;
? 0.05f
: 0.25f;
}

@Override
Expand Down

0 comments on commit a2284f1

Please sign in to comment.