summaryrefslogtreecommitdiff
path: root/tests/tools/tflite_run/src/bin_image.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tools/tflite_run/src/bin_image.h')
-rw-r--r--tests/tools/tflite_run/src/bin_image.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/tools/tflite_run/src/bin_image.h b/tests/tools/tflite_run/src/bin_image.h
new file mode 100644
index 000000000..845011be6
--- /dev/null
+++ b/tests/tools/tflite_run/src/bin_image.h
@@ -0,0 +1,43 @@
+/*
+ * Copyright (c) 2018 Samsung Electronics Co., Ltd. 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 __TFLITE_RUN_LIBJPEG_H__
+#define __TFLITE_RUN_LIBJPEG_H__
+
+#include <string>
+#include <vector>
+
+#include "tensorflow/contrib/lite/context.h"
+
+class BinImage
+{
+public:
+ BinImage(unsigned int width, unsigned int height, unsigned int channel);
+ ~BinImage();
+
+ void loadImage(const std::string &filename);
+
+ void AssignTensor(TfLiteTensor *t);
+
+private:
+ unsigned int _width;
+ unsigned int _height;
+ unsigned int _channels;
+
+ std::vector<unsigned char> _image;
+};
+
+#endif // __TFLITE_RUN_LIBJPEG_H__