Fading Coder

One Final Commit for the Last Sprint

Android Image Capture: Custom API and System Intent Approaches

Android offers two primary approaches for capturing images: delegating to a system camera application via an implicit Intent, or directly controlling the hardware using the Camera API. Deleagting to the system camera application involves constructing an Intent with the ACTION_IMAGE_CAPTURE action. T...

Android OpenGL ES – Camera Preview and Recording with Filters

This article demonstrates a combination of OpenGL ES, camera integration, and real-time filter application on textures. The objective is to preview camera feeds, apply filters, and record the output seamlessly. Preview and Capture Workflow High-Level Understanding: The image stream acquired from the...