1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
/*
* Copyright (c) 2018 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 "rtc_tools/frame_analyzer/video_geometry_aligner.h"
#include <map>
#include "api/make_ref_counted.h"
#include "api/video/i420_buffer.h"
#include "rtc_base/checks.h"
#include "rtc_tools/frame_analyzer/video_quality_analysis.h"
#include "third_party/libyuv/include/libyuv/scale.h"
namespace webrtc {
namespace test {
namespace {
bool IsValidRegion(const CropRegion& region,
const scoped_refptr<I420BufferInterface>& frame) {
return region.left >= 0 && region.right >= 0 && region.top >= 0 &&
region.bottom >= 0 && region.left + region.right < frame->width() &&
region.top + region.bottom < frame->height();
}
} // namespace
scoped_refptr<I420BufferInterface> CropAndZoom(
const CropRegion& crop_region,
const scoped_refptr<I420BufferInterface>& frame) {
RTC_CHECK(IsValidRegion(crop_region, frame));
const int uv_crop_left = crop_region.left / 2;
const int uv_crop_top = crop_region.top / 2;
const int cropped_width =
frame->width() - crop_region.left - crop_region.right;
const int cropped_height =
frame->height() - crop_region.top - crop_region.bottom;
// Crop by only adjusting pointers.
const uint8_t* y_plane =
frame->DataY() + frame->StrideY() * crop_region.top + crop_region.left;
const uint8_t* u_plane =
frame->DataU() + frame->StrideU() * uv_crop_top + uv_crop_left;
const uint8_t* v_plane =
frame->DataV() + frame->StrideV() * uv_crop_top + uv_crop_left;
// Stretch the cropped frame to the original size using libyuv.
scoped_refptr<I420Buffer> adjusted_frame =
I420Buffer::Create(frame->width(), frame->height());
libyuv::I420Scale(y_plane, frame->StrideY(), u_plane, frame->StrideU(),
v_plane, frame->StrideV(), cropped_width, cropped_height,
adjusted_frame->MutableDataY(), adjusted_frame->StrideY(),
adjusted_frame->MutableDataU(), adjusted_frame->StrideU(),
adjusted_frame->MutableDataV(), adjusted_frame->StrideV(),
frame->width(), frame->height(), libyuv::kFilterBox);
return adjusted_frame;
}
CropRegion CalculateCropRegion(
const scoped_refptr<I420BufferInterface>& reference_frame,
const scoped_refptr<I420BufferInterface>& test_frame) {
RTC_CHECK_EQ(reference_frame->width(), test_frame->width());
RTC_CHECK_EQ(reference_frame->height(), test_frame->height());
CropRegion best_region;
double best_ssim = Ssim(reference_frame, test_frame);
typedef int CropRegion::*CropParameter;
CropParameter crop_parameters[4] = {&CropRegion::left, &CropRegion::top,
&CropRegion::right, &CropRegion::bottom};
while (true) {
// Find the parameter in which direction SSIM improves the most.
CropParameter best_parameter = nullptr;
const CropRegion prev_best_region = best_region;
for (CropParameter crop_parameter : crop_parameters) {
CropRegion test_region = prev_best_region;
++(test_region.*crop_parameter);
if (!IsValidRegion(test_region, reference_frame))
continue;
const double ssim =
Ssim(CropAndZoom(test_region, reference_frame), test_frame);
if (ssim > best_ssim) {
best_ssim = ssim;
best_parameter = crop_parameter;
best_region = test_region;
}
}
// No improvement among any direction, stop iteration.
if (best_parameter == nullptr)
break;
// Iterate in the best direction as long as it improves SSIM.
for (CropRegion test_region = best_region;
IsValidRegion(test_region, reference_frame);
++(test_region.*best_parameter)) {
const double ssim =
Ssim(CropAndZoom(test_region, reference_frame), test_frame);
if (ssim <= best_ssim)
break;
best_ssim = ssim;
best_region = test_region;
}
}
return best_region;
}
scoped_refptr<I420BufferInterface> AdjustCropping(
const scoped_refptr<I420BufferInterface>& reference_frame,
const scoped_refptr<I420BufferInterface>& test_frame) {
return CropAndZoom(CalculateCropRegion(reference_frame, test_frame),
reference_frame);
}
scoped_refptr<Video> AdjustCropping(const scoped_refptr<Video>& reference_video,
const scoped_refptr<Video>& test_video) {
class CroppedVideo : public Video {
public:
CroppedVideo(const scoped_refptr<Video>& reference_video,
const scoped_refptr<Video>& test_video)
: reference_video_(reference_video), test_video_(test_video) {
RTC_CHECK_EQ(reference_video->number_of_frames(),
test_video->number_of_frames());
RTC_CHECK_EQ(reference_video->width(), test_video->width());
RTC_CHECK_EQ(reference_video->height(), test_video->height());
}
int width() const override { return test_video_->width(); }
int height() const override { return test_video_->height(); }
size_t number_of_frames() const override {
return test_video_->number_of_frames();
}
scoped_refptr<I420BufferInterface> GetFrame(size_t index) const override {
const scoped_refptr<I420BufferInterface> reference_frame =
reference_video_->GetFrame(index);
// Only calculate cropping region once per frame since it's expensive.
if (!crop_regions_.count(index)) {
crop_regions_[index] =
CalculateCropRegion(reference_frame, test_video_->GetFrame(index));
}
return CropAndZoom(crop_regions_[index], reference_frame);
}
private:
const scoped_refptr<Video> reference_video_;
const scoped_refptr<Video> test_video_;
// Mutable since this is a cache that affects performance and not logical
// behavior.
mutable std::map<size_t, CropRegion> crop_regions_;
};
return make_ref_counted<CroppedVideo>(reference_video, test_video);
}
} // namespace test
} // namespace webrtc
|