From c2a69ab4763c1e73cf256dc4c7f69a33045ae985 Mon Sep 17 00:00:00 2001 From: MediaPipe Team Date: Thu, 9 Mar 2023 12:18:16 -0800 Subject: [PATCH] Update ImageFrameToGpuBufferCalculator to use api2 and GpuBuffer conversions PiperOrigin-RevId: 515407159 --- mediapipe/gpu/BUILD | 2 - .../image_frame_to_gpu_buffer_calculator.cc | 62 +++++++++++-------- 2 files changed, 36 insertions(+), 28 deletions(-) diff --git a/mediapipe/gpu/BUILD b/mediapipe/gpu/BUILD index 83948226a..02fb2ff20 100644 --- a/mediapipe/gpu/BUILD +++ b/mediapipe/gpu/BUILD @@ -918,8 +918,6 @@ cc_library( visibility = ["//visibility:public"], deps = [ ":gl_calculator_helper", - ":gpu_buffer_storage_image_frame", - "//mediapipe/framework/api2:node", "//mediapipe/framework:calculator_framework", "//mediapipe/framework/formats:image_frame", "//mediapipe/framework/port:status", diff --git a/mediapipe/gpu/image_frame_to_gpu_buffer_calculator.cc b/mediapipe/gpu/image_frame_to_gpu_buffer_calculator.cc index c67fb0c62..2a8331db8 100644 --- a/mediapipe/gpu/image_frame_to_gpu_buffer_calculator.cc +++ b/mediapipe/gpu/image_frame_to_gpu_buffer_calculator.cc @@ -12,63 +12,73 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "mediapipe/framework/api2/node.h" #include "mediapipe/framework/calculator_framework.h" #include "mediapipe/framework/formats/image_frame.h" #include "mediapipe/framework/port/status.h" #include "mediapipe/gpu/gl_calculator_helper.h" +#ifdef __APPLE__ +#include "mediapipe/objc/util.h" +#endif + namespace mediapipe { -namespace api2 { -class ImageFrameToGpuBufferCalculator - : public RegisteredNode { +// Convert ImageFrame to GpuBuffer. +class ImageFrameToGpuBufferCalculator : public CalculatorBase { public: - static constexpr Input kIn{""}; - static constexpr Output kOut{""}; + ImageFrameToGpuBufferCalculator() {} - MEDIAPIPE_NODE_INTERFACE(ImageFrameToGpuBufferCalculator, kIn, kOut); - - static absl::Status UpdateContract(CalculatorContract* cc); + static absl::Status GetContract(CalculatorContract* cc); absl::Status Open(CalculatorContext* cc) override; absl::Status Process(CalculatorContext* cc) override; private: +#if !MEDIAPIPE_GPU_BUFFER_USE_CV_PIXEL_BUFFER GlCalculatorHelper helper_; +#endif // !MEDIAPIPE_GPU_BUFFER_USE_CV_PIXEL_BUFFER }; +REGISTER_CALCULATOR(ImageFrameToGpuBufferCalculator); // static -absl::Status ImageFrameToGpuBufferCalculator::UpdateContract( +absl::Status ImageFrameToGpuBufferCalculator::GetContract( CalculatorContract* cc) { + cc->Inputs().Index(0).Set(); + cc->Outputs().Index(0).Set(); // Note: we call this method even on platforms where we don't use the helper, // to ensure the calculator's contract is the same. In particular, the helper // enables support for the legacy side packet, which several graphs still use. - return GlCalculatorHelper::UpdateContract(cc); + MP_RETURN_IF_ERROR(GlCalculatorHelper::UpdateContract(cc)); + return absl::OkStatus(); } absl::Status ImageFrameToGpuBufferCalculator::Open(CalculatorContext* cc) { + // Inform the framework that we always output at the same timestamp + // as we receive a packet at. + cc->SetOffset(TimestampDiff(0)); +#if !MEDIAPIPE_GPU_BUFFER_USE_CV_PIXEL_BUFFER MP_RETURN_IF_ERROR(helper_.Open(cc)); +#endif // !MEDIAPIPE_GPU_BUFFER_USE_CV_PIXEL_BUFFER return absl::OkStatus(); } absl::Status ImageFrameToGpuBufferCalculator::Process(CalculatorContext* cc) { - auto image_frame = std::const_pointer_cast( - mediapipe::SharedPtrWithPacket(kIn(cc).packet())); - auto gpu_buffer = api2::MakePacket( - std::make_shared( - std::move(image_frame))) - .At(cc->InputTimestamp()); - // This calculator's behavior has been to do the texture upload eagerly, and - // some graphs may rely on running this on a separate GL context to avoid - // blocking another context with the read operation. So let's request GPU - // access here to ensure that the behavior stays the same. - // TODO: have a better way to do this, or defer until later. - helper_.RunInGlContext( - [&gpu_buffer] { auto view = gpu_buffer->GetReadView(0); }); - kOut(cc).Send(std::move(gpu_buffer)); +#if MEDIAPIPE_GPU_BUFFER_USE_CV_PIXEL_BUFFER + CFHolder buffer; + MP_RETURN_IF_ERROR(CreateCVPixelBufferForImageFramePacket( + cc->Inputs().Index(0).Value(), &buffer)); + cc->Outputs().Index(0).Add(new GpuBuffer(buffer), cc->InputTimestamp()); +#else + const auto& input = cc->Inputs().Index(0).Get(); + helper_.RunInGlContext([this, &input, &cc]() { + auto src = helper_.CreateSourceTexture(input); + auto output = src.GetFrame(); + glFlush(); + cc->Outputs().Index(0).Add(output.release(), cc->InputTimestamp()); + src.Release(); + }); +#endif // MEDIAPIPE_GPU_BUFFER_USE_CV_PIXEL_BUFFER return absl::OkStatus(); } -} // namespace api2 } // namespace mediapipe