GitOrigin-RevId: 1e13be30e2c6838d4a2ff768a39c414bc80534bb
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
// Copyright 2020 The MediaPipe Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "mediapipe/framework/formats/image.h"
|
|
|
|
#include "mediapipe/framework/type_map.h"
|
|
|
|
#if !MEDIAPIPE_DISABLE_GPU
|
|
#include "mediapipe/gpu/gl_texture_view.h"
|
|
#endif // !MEDIAPIPE_DISABLE_GPU
|
|
|
|
namespace mediapipe {
|
|
|
|
// TODO Refactor common code from GpuBufferToImageFrameCalculator
|
|
bool Image::ConvertToCpu() const {
|
|
auto view = gpu_buffer_.GetReadView<ImageFrame>();
|
|
use_gpu_ = false;
|
|
return true;
|
|
}
|
|
|
|
// TODO Refactor common code from ImageFrameToGpuBufferCalculator
|
|
bool Image::ConvertToGpu() const {
|
|
#if MEDIAPIPE_DISABLE_GPU
|
|
return false;
|
|
#else
|
|
auto view = gpu_buffer_.GetReadView<GlTextureView>(0);
|
|
use_gpu_ = true;
|
|
return true;
|
|
#endif // MEDIAPIPE_DISABLE_GPU
|
|
}
|
|
|
|
MEDIAPIPE_REGISTER_TYPE(mediapipe::Image, "::mediapipe::Image", nullptr,
|
|
nullptr);
|
|
MEDIAPIPE_REGISTER_TYPE(std::vector<mediapipe::Image>,
|
|
"::std::vector<::mediapipe::Image>", nullptr, nullptr);
|
|
|
|
} // namespace mediapipe
|