mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-15 14:50:39 +01:00

The type rtc::scoped_refptr<T> is now part of api/. Please include it from api/scoped_refptr.h. More info: See: https://groups.google.com/forum/#!topic/discuss-webrtc/Mme2MSz4z4o. Bug: webrtc:9887, webrtc:8205 No-Try: True Change-Id: Ic6c7c81e226e59f12f7933e472f573ae097b55bf Reviewed-on: https://webrtc-review.googlesource.com/c/119041 Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26414}
200 lines
7.6 KiB
C++
200 lines
7.6 KiB
C++
/*
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <cstddef>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "absl/strings/match.h"
|
|
#include "api/scoped_refptr.h"
|
|
#include "rtc_base/strings/string_builder.h"
|
|
#include "rtc_tools/frame_analyzer/video_color_aligner.h"
|
|
#include "rtc_tools/frame_analyzer/video_geometry_aligner.h"
|
|
#include "rtc_tools/frame_analyzer/video_quality_analysis.h"
|
|
#include "rtc_tools/frame_analyzer/video_temporal_aligner.h"
|
|
#include "rtc_tools/simple_command_line_parser.h"
|
|
#include "rtc_tools/video_file_reader.h"
|
|
#include "rtc_tools/video_file_writer.h"
|
|
#include "test/testsupport/perf_test.h"
|
|
|
|
namespace {
|
|
|
|
#ifdef WIN32
|
|
const char* const kPathDelimiter = "\\";
|
|
#else
|
|
const char* const kPathDelimiter = "/";
|
|
#endif
|
|
|
|
std::string JoinFilename(std::string directory, std::string filename) {
|
|
return directory + kPathDelimiter + filename;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
/*
|
|
* A command line tool running PSNR and SSIM on a reference video and a test
|
|
* video. The test video is a record of the reference video which can start at
|
|
* an arbitrary point. It is possible that there will be repeated frames or
|
|
* skipped frames as well. The video files should be I420 .y4m or .yuv videos.
|
|
* If both files are .y4m, it's not needed to specify width/height. The tool
|
|
* prints the result to standard output in the Chromium perf format:
|
|
* RESULT <metric>:<label>= <values>
|
|
*
|
|
* The max value for PSNR is 48.0 (between equal frames), as for SSIM it is 1.0.
|
|
*
|
|
* Usage:
|
|
* frame_analyzer --label=<test_label> --reference_file=<name_of_file>
|
|
* --test_file_ref=<name_of_file> --width=<frame_width> --height=<frame_height>
|
|
*/
|
|
int main(int argc, char* argv[]) {
|
|
std::string program_name = argv[0];
|
|
std::string usage =
|
|
"Compares the output video with the initially sent video."
|
|
"\nExample usage:\n" +
|
|
program_name +
|
|
" --reference_file=ref.yuv --test_file=test.yuv --width=320 "
|
|
"--height=240\n"
|
|
"Command line flags:\n"
|
|
" - width(int): The width of the reference and test files. Default: -1\n"
|
|
" - height(int): The height of the reference and test files. "
|
|
" Default: -1\n"
|
|
" - label(string): The label to use for the perf output."
|
|
" Default: MY_TEST\n"
|
|
" Default: ref.yuv\n"
|
|
" - test_file(string): The test YUV file to run the analysis for."
|
|
" Default: test_file.yuv\n"
|
|
" - chartjson_result_file: Where to store perf result in chartjson"
|
|
" format. If not present, no perf result will be stored."
|
|
" Default: None\n"
|
|
" - aligned_output_file: Where to write aligned YUV/Y4M output file."
|
|
" If not present, no file will be written."
|
|
" Default: None\n"
|
|
" - yuv_directory: Where to write aligned YUV ref+test output files."
|
|
" If not present, no files will be written."
|
|
" Default: None\n";
|
|
|
|
webrtc::test::CommandLineParser parser;
|
|
|
|
// Init the parser and set the usage message
|
|
parser.Init(argc, argv);
|
|
parser.SetUsageMessage(usage);
|
|
|
|
parser.SetFlag("width", "-1");
|
|
parser.SetFlag("height", "-1");
|
|
parser.SetFlag("label", "MY_TEST");
|
|
parser.SetFlag("reference_file", "ref.yuv");
|
|
parser.SetFlag("test_file", "test.yuv");
|
|
parser.SetFlag("aligned_output_file", "");
|
|
parser.SetFlag("yuv_directory", "");
|
|
parser.SetFlag("chartjson_result_file", "");
|
|
parser.SetFlag("help", "false");
|
|
|
|
parser.ProcessFlags();
|
|
if (parser.GetFlag("help") == "true") {
|
|
parser.PrintUsageMessage();
|
|
exit(EXIT_SUCCESS);
|
|
}
|
|
parser.PrintEnteredFlags();
|
|
|
|
int width = strtol((parser.GetFlag("width")).c_str(), nullptr, 10);
|
|
int height = strtol((parser.GetFlag("height")).c_str(), nullptr, 10);
|
|
|
|
const std::string reference_file_name = parser.GetFlag("reference_file");
|
|
const std::string test_file_name = parser.GetFlag("test_file");
|
|
|
|
// .yuv files require explicit resolution.
|
|
if ((absl::EndsWith(reference_file_name, ".yuv") ||
|
|
absl::EndsWith(test_file_name, ".yuv")) &&
|
|
(width <= 0 || height <= 0)) {
|
|
fprintf(stderr,
|
|
"Error: You need to specify width and height when using .yuv "
|
|
"files\n");
|
|
return -1;
|
|
}
|
|
|
|
webrtc::test::ResultsContainer results;
|
|
|
|
rtc::scoped_refptr<webrtc::test::Video> reference_video =
|
|
webrtc::test::OpenYuvOrY4mFile(reference_file_name, width, height);
|
|
rtc::scoped_refptr<webrtc::test::Video> test_video =
|
|
webrtc::test::OpenYuvOrY4mFile(test_file_name, width, height);
|
|
|
|
if (!reference_video || !test_video) {
|
|
fprintf(stderr, "Error opening video files\n");
|
|
return 1;
|
|
}
|
|
|
|
const std::vector<size_t> matching_indices =
|
|
webrtc::test::FindMatchingFrameIndices(reference_video, test_video);
|
|
|
|
// Align the reference video both temporally and geometrically. I.e. align the
|
|
// frames to match up in order to the test video, and align a crop region of
|
|
// the reference video to match up to the test video.
|
|
const rtc::scoped_refptr<webrtc::test::Video> aligned_reference_video =
|
|
AdjustCropping(ReorderVideo(reference_video, matching_indices),
|
|
test_video);
|
|
|
|
// Calculate if there is any systematic color difference between the reference
|
|
// and test video.
|
|
const webrtc::test::ColorTransformationMatrix color_transformation =
|
|
CalculateColorTransformationMatrix(aligned_reference_video, test_video);
|
|
|
|
char buf[256];
|
|
rtc::SimpleStringBuilder string_builder(buf);
|
|
for (int i = 0; i < 3; ++i) {
|
|
string_builder << "\n";
|
|
for (int j = 0; j < 4; ++j)
|
|
string_builder.AppendFormat("%6.2f ", color_transformation[i][j]);
|
|
}
|
|
printf("Adjusting test video with color transformation: %s\n",
|
|
string_builder.str());
|
|
|
|
// Adjust all frames in the test video with the calculated color
|
|
// transformation.
|
|
const rtc::scoped_refptr<webrtc::test::Video> color_adjusted_test_video =
|
|
AdjustColors(color_transformation, test_video);
|
|
|
|
results.frames = webrtc::test::RunAnalysis(
|
|
aligned_reference_video, color_adjusted_test_video, matching_indices);
|
|
|
|
const std::vector<webrtc::test::Cluster> clusters =
|
|
webrtc::test::CalculateFrameClusters(matching_indices);
|
|
results.max_repeated_frames = webrtc::test::GetMaxRepeatedFrames(clusters);
|
|
results.max_skipped_frames = webrtc::test::GetMaxSkippedFrames(clusters);
|
|
results.total_skipped_frames =
|
|
webrtc::test::GetTotalNumberOfSkippedFrames(clusters);
|
|
results.decode_errors_ref = 0;
|
|
results.decode_errors_test = 0;
|
|
|
|
webrtc::test::PrintAnalysisResults(parser.GetFlag("label"), &results);
|
|
|
|
std::string chartjson_result_file = parser.GetFlag("chartjson_result_file");
|
|
if (!chartjson_result_file.empty()) {
|
|
webrtc::test::WritePerfResults(chartjson_result_file);
|
|
}
|
|
std::string aligned_output_file = parser.GetFlag("aligned_output_file");
|
|
if (!aligned_output_file.empty()) {
|
|
webrtc::test::WriteVideoToFile(aligned_reference_video, aligned_output_file,
|
|
/*fps=*/30);
|
|
}
|
|
std::string yuv_directory = parser.GetFlag("yuv_directory");
|
|
if (!yuv_directory.empty()) {
|
|
webrtc::test::WriteVideoToFile(aligned_reference_video,
|
|
JoinFilename(yuv_directory, "ref.yuv"),
|
|
/*fps=*/30);
|
|
webrtc::test::WriteVideoToFile(color_adjusted_test_video,
|
|
JoinFilename(yuv_directory, "test.yuv"),
|
|
/*fps=*/30);
|
|
}
|
|
|
|
return 0;
|
|
}
|