blob: 4d7ec17a1c0420b65c358b93e77a9fc880bf474e [file] [log] [blame]
/* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
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.
==============================================================================*/
#ifndef TENSORFLOW_LITE_SUPPORT_JAVA_SRC_NATIVE_TASK_VISION_JNI_UTILS_H_
#define TENSORFLOW_LITE_SUPPORT_JAVA_SRC_NATIVE_TASK_VISION_JNI_UTILS_H_
#include <jni.h>
#include "tensorflow_lite_support/cc/port/statusor.h"
#include "tensorflow_lite_support/cc/task/vision/core/frame_buffer.h"
#include "tensorflow_lite_support/cc/task/vision/proto/class_proto_inc.h"
namespace tflite {
namespace task {
namespace vision {
// Creates a Java Category object based on Class.
jobject ConvertToCategory(JNIEnv* env, const Class& classification);
FrameBuffer::Orientation ConvertToFrameBufferOrientation(JNIEnv* env,
jint jorientation);
// Creates FrameBuffer from a direct ByteBuffer.
::tflite::support::StatusOr<std::unique_ptr<FrameBuffer>>
CreateFrameBufferFromByteBuffer(JNIEnv* env,
jobject jimage_byte_buffer,
jint width,
jint height,
jint jorientation,
jint jcolor_space_type);
// Creates FrameBuffer from a byte array.
::tflite::support::StatusOr<std::unique_ptr<FrameBuffer>>
CreateFrameBufferFromBytes(JNIEnv* env,
jbyteArray jimage_bytes,
jint width,
jint height,
jint jorientation,
jint jcolor_space_type,
jlongArray jbyte_array_handle);
// Creates FrameBuffer from YUV planes.
::tflite::support::StatusOr<std::unique_ptr<FrameBuffer>>
CreateFrameBufferFromYuvPlanes(JNIEnv* env,
jobject jy_plane,
jobject ju_plane,
jobject jv_plane,
jint width,
jint height,
jint row_stride_y,
jint row_stride_uv,
jint pixel_stride_uv,
jint jorientation);
} // namespace vision
} // namespace task
} // namespace tflite
#endif // TENSORFLOW_LITE_SUPPORT_JAVA_SRC_NATIVE_TASK_VISION_JNI_UTILS_H_