Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QcmpCompressionLibrary
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BioinformaticDataCompression
QcmpCompressionLibrary
Commits
a561bcda
Commit
a561bcda
authored
4 years ago
by
Vojtech Moravec
Browse files
Options
Downloads
Patches
Plain Diff
Avoid unneccessary local variables.
parent
051469bf
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/cz/it4i/qcmp/utilities/Utils.java
+2
-4
2 additions, 4 deletions
src/main/java/cz/it4i/qcmp/utilities/Utils.java
with
2 additions
and
4 deletions
src/main/java/cz/it4i/qcmp/utilities/Utils.java
+
2
−
4
View file @
a561bcda
...
...
@@ -13,8 +13,7 @@ public class Utils {
}
public
static
double
calculatePsnr
(
final
double
mse
,
final
int
signalMax
)
{
final
double
psnr
=
10.0
*
Math
.
log10
((
Math
.
pow
(
signalMax
,
2
)
/
mse
));
return
psnr
;
return
(
10.0
*
Math
.
log10
((
Math
.
pow
(
signalMax
,
2
)
/
mse
)));
}
public
static
<
T
>
boolean
arrayContains
(
final
T
[]
array
,
final
T
element
)
{
...
...
@@ -141,8 +140,7 @@ public class Utils {
for
(
final
int
val
:
difference
)
{
sum
+=
Math
.
pow
(
val
,
2
);
}
final
double
mse
=
(
sum
/
(
double
)
difference
.
length
);
return
mse
;
return
(
sum
/
(
double
)
difference
.
length
);
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment