Reputation: 345
Increase Shutter Speed programmatically using Obj-C ? Is there any API for that?
Upvotes: 1
Views: 4372
Reputation: 345
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.
Upvotes: 0
Reputation: 1639
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.
Upvotes: 1