-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: In order to control compression quality, we need to be able to compare VRS files using an algorithm that can compare image differences and provide a score. The FileImageCompare facility will compare VRS files, using a filtered reader so we don't necessarily have to read every single frame (which can be slow). meta: Ocean provides an MS-SSIM implementation, which is an industry standard which we can simply depend on. Reviewed By: kiminoue7 Differential Revision: D51345482 fbshipit-source-id: 3cc6d9c70b62cc9239ca01e2ea05bb74567620ed
- Loading branch information
1 parent
638373d
commit e41be16
Showing
3 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,8 @@ | |
* limitations under the License. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <functional> | ||
#include <string> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters