// // Created by Marc on 19/06/2021. // #pragma once #include #include namespace vision { using namespace facebook; using namespace jni; struct JImageProxy : public JavaClass { static constexpr auto kJavaDescriptor = "Landroidx/camera/core/ImageProxy;"; public: int getWidth() const; int getHeight() const; bool getIsValid() const; int getPlanesCount() const; int getBytesPerRow() const; void close(); }; } // namespace vision