简体   繁体   中英

Is it Possible to increase the shutter speed of Camera in iphone programmatically?

Increase Shutter Speed programmatically using Obj-C ? Is there any API for that?

Unfortunately, you can't change the shutter speed of the camera. All apps that claim to do this do so using post processing - you can however set the shutter speed for video recording on the iPhone 5S.

I got the Solution...but couldn't implement it till now.

The Founder of Snappy Labs who released an App named Snappy Cam told "First we studied the fast discrete cosine transform (DCT) algorithms...We then extended some of that research to create a new algorithm that's a good fit for the ARM NEON SIMD co-processor instruction set architecture. The final implementation comprises nearly 10,000 lines of hand-tuned assembly code, and over 20,000 lines of low-level C code. (In comparison, the SnappyCam app comprises almost 50,000 lines of Objective C code.)

JPEG compression comprises two parts: the DCT (above), and a lossless Huffman compression stage that forms a compact JPEG file. Having developed a blazing fast DCT implementation, Huffman then became a bottleneck. We innovated on that portion with tight hand-tuned assembly code that leverages special features of the ARM processor instruction set to make it as fast as possible".

by implementing those algorithm we can increase the shutter speed which has been done in SnappyCam App.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM