Tagged Questions
0
votes
1answer
30 views
setOneShotPreviewCallback not hitting onPreviewFrame() in callback
I'm creating a video capture activity for an app I'm making, and I want to capture a preview frame as well to use as a playback button. I've set the SurfaceView up in onCreate(...) and hooked up the ...
0
votes
1answer
79 views
Android Camera App preview issue
I'd like to ask for some advice regarding the following problem. I'm currently working on a camera app for android and i am stuck. I used the official android development site for guidance, and the ...
0
votes
0answers
53 views
Camera preview size and preview surface limitations (pre-Gingerbread)
I have been working on a Camera Activity and it works great in anything Gingerbread and above.
I did discover that on an LG Optimus V running Android 2.2.2, that if the preview size I set (selected ...
0
votes
0answers
59 views
Android -camera preview not working if started on click event
I want to build an Android app that displays the preview of the camera in a SurfaceView. It works fine when I execute all of the code in the oncreate method. Here is my code:
preview = ...
0
votes
0answers
54 views
Automatic picture capture and preview android
I am developing an application that takes pictures automatically and send them thanks to websocket but I can't run any preview in the android smartphone.
It's either showing a white page in it or ...
-2
votes
1answer
67 views
“Preview” cannot be resolved to a type, imports are defined [closed]
Why is Eclipse telling me that Preview cannot be resolved to a type??
Where is Preview defined?
Yes, I have tried ctrl+shift+o
import android.app.Activity;
import android.content.pm.ActivityInfo;
...
0
votes
1answer
83 views
Unable to use zoomcontrols in android camrea preview
I am new to android programming. I am developing a simple application called magnifier which will use camera lens to zoom in and out the preview. But I am stuck with my code since zoom in and out are ...
0
votes
0answers
88 views
How to get single preview image?
I am looking for fastest way to get an image, from the three of possible ways -- raw image, post-processed image, and preview -- the last one looks most promising.
However, I can get two former ...
2
votes
0answers
226 views
Recording video from a Service
I'm sorry if there's a duplicate, however wasn't able to find a clear answer after some time of searching. Actually, is it still impossible to capture video without a preview? Is it possible to ...
1
vote
1answer
785 views
GetSupportedPreviewSize returns reverse width and height
I'm using a DroidX to develop an app that uses the camera preview image. The code I'm using is found in numerous places on the web but I noticed that the common method ...
0
votes
1answer
2k views
android - eye detection even without face detection during camera preview
is there any library for detecting an eye in a given rectangle (and the eye's size) , while the camera preview is still showing its content (non stop) ?
i need to find an easy way to acheive this . ...
1
vote
1answer
266 views
How to get raw preview data from Camera object at least 33 frames per second in Android?
Our target device is Samsung Galaxy P2 , and to transmit video we need to have fps is 33 , i.e. 33 frame per second, below is the code what i am using,
List<int[]> ...
4
votes
1answer
1k views
How to get 720p Android Camera Preview Data?
I want to use the camera preview for image recognition. For my
purposes, I need the preview resolution to be as high as possible
(and, at the same time, display the preview to the user).
I created a ...
8
votes
5answers
5k views
Android: how to display camera preview with callback?
First - I've been working on this for some time and tried several solutions, so do not send me the first link that you find on google.
What I need to do is quite simple, I want to manually display ...
0
votes
2answers
759 views
The way to freeze the camera preview
I Implemented a system to take photo in my apps with Android class Camera. All run well but after taken photo I want show the preview at the user and let him the choice to save the picture or cancel ...
5
votes
3answers
5k views
Android, manupulate camera preview frames
I want to make an Android application that uses the camera and applies image processing filters on the preview frames.
package alex.filter;
import java.io.IOException;
import ...
0
votes
3answers
2k views
portrait camera orientation on galaxy tab
I am developing on/for a Samsung Galaxy Tab (7inches). My application has to be in portrait mode only, i.e i have locked it to portrait mode in my application and in the device settings. The problem ...
0
votes
2answers
2k views
Disable Camera Snapshot after calling Camera.takePicture Android
I am calling takePicture() on my camera object while showing a preview of what is being taken using a surfaceView. I want to be able to call takePicture() without the preview screen freezing with a ...
0
votes
1answer
327 views
Keep camera captured by an activity after picture taken
It is necessary for my application to keep the camera captured until released manually by an Activity (I realize this is bad practice, as no other applications will be able to use the camera). I used ...