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