Files
test/source/blender/compositor/operations/COM_KeyingScreenOperation.cc
Aras Pranckevicius f5f7024040 Cleanup: Remove now-unused "tiled" compositor implementation
New ("fullframe") CPU compositor backend is being used now, and all the code
related to "tiled" CPU compositor is just never used anymore. The new backend
is faster, uses less memory, better matches GPU compositor, etc.

TL;DR: 20 thousand lines of code gone.

This commit:
- Removes various bits and pieces related to "tiled" compositor (execution
  groups, one-pixel-at-a-time node processing, read/write buffer operations
  related to node execution groups).
- "GPU" (OpenCL) execution device, that was only used by several nodes of
  the tiled compositor.
  - With that, remove CLEW external library too, since nothing within Blender
    uses OpenCL directly anymore.

Pull Request: https://projects.blender.org/blender/blender/pulls/118819
2024-02-28 16:59:16 +01:00

188 lines
5.5 KiB
C++

/* SPDX-FileCopyrightText: 2012 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
#include "COM_KeyingScreenOperation.h"
#include "DNA_defaults.h"
#include "BLI_array.hh"
#include "BLI_math_color.h"
#include "BLI_math_geom.h"
#include "BLI_math_vector.hh"
#include "BLI_math_vector_types.hh"
#include "BKE_movieclip.h"
#include "BKE_tracking.h"
#include "IMB_imbuf.hh"
#include "IMB_imbuf_types.hh"
namespace blender::compositor {
KeyingScreenOperation::KeyingScreenOperation()
{
this->add_output_socket(DataType::Color);
movie_clip_ = nullptr;
framenumber_ = 0;
tracking_object_[0] = 0;
cached_marker_points_ = nullptr;
}
void KeyingScreenOperation::init_execution()
{
BLI_assert(cached_marker_points_ == nullptr);
if (movie_clip_) {
cached_marker_points_ = compute_marker_points();
}
}
void KeyingScreenOperation::deinit_execution()
{
delete cached_marker_points_;
cached_marker_points_ = nullptr;
}
Array<KeyingScreenOperation::MarkerPoint> *KeyingScreenOperation::compute_marker_points()
{
MovieTracking *tracking = &movie_clip_->tracking;
const MovieTrackingObject *tracking_object = nullptr;
if (tracking_object_[0]) {
tracking_object = BKE_tracking_object_get_named(tracking, tracking_object_);
if (!tracking_object) {
return nullptr;
}
}
else {
tracking_object = BKE_tracking_object_get_active(tracking);
}
BLI_assert(tracking_object != nullptr);
int clip_frame = BKE_movieclip_remap_scene_to_clip_frame(movie_clip_, framenumber_);
/* count sites */
int sites_total = 0;
LISTBASE_FOREACH (MovieTrackingTrack *, track, &tracking_object->tracks) {
const MovieTrackingMarker *marker = BKE_tracking_marker_get(track, clip_frame);
if (marker->flag & MARKER_DISABLED) {
continue;
}
float pos[2];
add_v2_v2v2(pos, marker->pos, track->offset);
if (!IN_RANGE_INCL(pos[0], 0.0f, 1.0f) || !IN_RANGE_INCL(pos[1], 0.0f, 1.0f)) {
continue;
}
sites_total++;
}
if (!sites_total) {
return nullptr;
}
MovieClipUser user = *DNA_struct_default_get(MovieClipUser);
BKE_movieclip_user_set_frame(&user, clip_frame);
ImBuf *ibuf = BKE_movieclip_get_ibuf(movie_clip_, &user);
if (!ibuf) {
return nullptr;
}
Array<MarkerPoint> *marker_points = new Array<MarkerPoint>(sites_total);
int track_index = 0;
LISTBASE_FOREACH_INDEX (MovieTrackingTrack *, track, &tracking_object->tracks, track_index) {
const MovieTrackingMarker *marker = BKE_tracking_marker_get(track, clip_frame);
if (marker->flag & MARKER_DISABLED) {
continue;
}
const float2 position = float2(marker->pos) + float2(track->offset);
if (!IN_RANGE_INCL(position.x, 0.0f, 1.0f) || !IN_RANGE_INCL(position.y, 0.0f, 1.0f)) {
continue;
}
ImBuf *pattern_ibuf = BKE_tracking_get_pattern_imbuf(ibuf, track, marker, true, false);
MarkerPoint &marker_point = (*marker_points)[track_index];
marker_point.position = position;
marker_point.color = float4(0.0f);
if (pattern_ibuf) {
for (int j = 0; j < pattern_ibuf->x * pattern_ibuf->y; j++) {
if (pattern_ibuf->float_buffer.data) {
marker_point.color += float4(&pattern_ibuf->float_buffer.data[4 * j]);
}
else {
uchar *rrgb = pattern_ibuf->byte_buffer.data;
marker_point.color += float4(srgb_to_linearrgb(float(rrgb[4 * j + 0]) / 255.0f),
srgb_to_linearrgb(float(rrgb[4 * j + 1]) / 255.0f),
srgb_to_linearrgb(float(rrgb[4 * j + 2]) / 255.0f),
srgb_to_linearrgb(float(rrgb[4 * j + 3]) / 255.0f));
}
}
marker_point.color /= pattern_ibuf->x * pattern_ibuf->y;
IMB_freeImBuf(pattern_ibuf);
}
}
IMB_freeImBuf(ibuf);
return marker_points;
}
void KeyingScreenOperation::determine_canvas(const rcti &preferred_area, rcti &r_area)
{
r_area = COM_AREA_NONE;
if (movie_clip_) {
MovieClipUser user = *DNA_struct_default_get(MovieClipUser);
int width, height;
int clip_frame = BKE_movieclip_remap_scene_to_clip_frame(movie_clip_, framenumber_);
BKE_movieclip_user_set_frame(&user, clip_frame);
BKE_movieclip_get_size(movie_clip_, &user, &width, &height);
r_area = preferred_area;
r_area.xmax = r_area.xmin + width;
r_area.ymax = r_area.ymin + height;
}
}
void KeyingScreenOperation::update_memory_buffer_partial(MemoryBuffer *output,
const rcti &area,
Span<MemoryBuffer *> inputs)
{
if (!cached_marker_points_) {
output->fill(area, COM_COLOR_TRANSPARENT);
return;
}
const int2 size = int2(this->get_width(), this->get_height());
const float squared_shape_parameter = math::square(1.0f / smoothness_);
for (BuffersIterator<float> it = output->iterate_with(inputs, area); !it.is_end(); ++it) {
const float2 normalized_pixel_location = float2(it.x, it.y) / float2(size);
float4 weighted_sum = float4(0.0f);
float sum_of_weights = 0.0f;
for (const MarkerPoint &marker_point : *cached_marker_points_) {
const float2 difference = normalized_pixel_location - marker_point.position;
const float squared_distance = math::dot(difference, difference);
const float gaussian = math::exp(-squared_distance * squared_shape_parameter);
weighted_sum += marker_point.color * gaussian;
sum_of_weights += gaussian;
}
weighted_sum /= sum_of_weights;
copy_v4_v4(it.out, weighted_sum);
}
}
} // namespace blender::compositor