Tagged Questions
1
vote
0answers
29 views
Android camera - how to prevent captured image from showing?
I am developing an app that shows a camera preview, takes a picture, and then shows the picture to the user. Since the window size, preview size and camera capture size do not match up, the app crops ...
0
votes
2answers
92 views
Android camera can't preview, can take phot
I'm displaying a camera preview to an user using surface view. Here's my method for starting it:
private void pickCam(){
if (Camera.getNumberOfCameras() < 1)
return;
if ...
0
votes
1answer
67 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
1answer
121 views
Android Camera Preview Code not working with Nexus7 -surfaceView error
I've created a camera app for android with the android camera code tutorial http://developer.android.com/guide/topics/media/camera.html#custom-camera. It works for the XperiaZ - LgoptimusBlack- ...
0
votes
2answers
70 views
Preview images in Portrait screen mode issues in Samsung Glaxy NoteII for Android apps
I am having problem with the preview of the captured pictures.
I have set up the ImageView to preview the image in the xml file. Once the picture is taken, i get a save or discard preview of the ...
0
votes
0answers
18 views
Camera parameters set on Transformer Pad Infinity
Developing a little camera thing, I've experienced a weird issue. Using standard Camera object (hardware) and standard preview for it (SurfaceView), I set a color effect supported by my hardware, a ...
0
votes
0answers
22 views
Zoom not applied to image in onPreviewFrame
if I set the zoom
if ( cameraParameters.isZoomSupported() ) {
cameraParameters.setZoom(cameraParameters.getMaxZoom());
}
The zoom is correctly applied to the preview surface view but
on an ...
1
vote
2answers
293 views
Android - camera preview not working
I'm trying to write a camera app for android, but I'm having trouble with getting the preview to work. I tried to follow the steps that android gives here, but it doesn't work, the app keeps crashing. ...
2
votes
0answers
152 views
Android camera preview mapping to final picture
We have been building a custom Android camera Activity where a rectangle is
overlayed inside the camera preview and when the photo is captured (at the
press of a button), we want to crop the ...
2
votes
0answers
57 views
IOS Preview in landscape with correct zoom
Who can give me an minimal example in IOS 5 or higher
of an app that captures the video of the backside cam with the following requirements:
The resolution of the image captured by the camera is ...
0
votes
1answer
58 views
Is getPreferredPreviewSizeForVideo() a good way go get the right preview size?
I'm building a part of an android app, that displays a camera preview. I'd like to set the correct (best) preview size possible for the current device.
To accomplish this, I used the following code:
...
3
votes
1answer
295 views
Nexus 4 Camera preview aspect Ratio always requires 16x9 surfaceview? Why
Device Nexus 4
Android ver: 4.2.2
Hoping someone else has found this and can explain how to resolve it....
Nexus 4 supports the following preview sizes: -
W:1280 H:720 Ratio: 1.777777
W:800 H:480 ...
0
votes
1answer
52 views
Camera turns black upon resume
My app uses multiple features for Apple's demo project AVCam. Everything works just fine except when I exit the app and go back in it, it doesn't show the camera preview anymore. Does anyone know what ...
0
votes
0answers
53 views
getoptimalsize for portrait forced camera
I have a custom camera that is supposed and forced to do pictures only on portrait orientation. Everything goes ok untill I have to set the preview and the pictures size. I am using this method for ...
0
votes
0answers
52 views
previewcallback still called after release camera
in my code i set a previewcallback, and while debugging i noticed that after i release the camera in onPause, the previewcallback is called again.
i Supposed that camera.relase() released all the ...
1
vote
0answers
95 views
camera preview on lockscreen
I want add a take picture function in lockscreen , and I need to open the preview on screen , but it's fail all the time , logcat say the Error is about "setPreviewWindow - Null ANativeWindow passed ...
0
votes
1answer
392 views
onPreviewframe only called once
i am working on a camera app, y need to extract some data of the preview each frame so y tried to do it using onPreviewFrame, the problem is that with my code onPreviewFrame is only called once and ...
0
votes
1answer
160 views
Android Camera distorted image
i have a big problem with the camera API in Android. I want to start the preview in the camera in a SurfaceView. That works. But the preview image is distordet. Why does it happens and what is the ...
0
votes
0answers
69 views
XCode Camera Preview
Is there a simple reason why, when I copy Apple's SquareCam code (and other setup, e.g. storyboard links, frameworks, and arc, etc.) verbatim into a new project, everything works except there is no ...
3
votes
0answers
318 views
Android camera surfaceChanged being constantly called
I am developing an app that uses the camera. I have made the preview class like this:
public class MyPreview extends SurfaceView implements SurfaceHolder.Callback, Camera.Preview Callback{
...
...
3
votes
1answer
262 views
Image stabilization when i move phone - Android
I developing application for Android OS which helps you to draw with help of camera. App works in way that capture frames from camera trough onPreviewFrame(byte[] data, Camera camera), and from here ...
3
votes
0answers
196 views
Android camera preview processing
I know that there are already similar questions, but they don't help me.
Currently, I'm playing around with the camera preview and I'd like to apply some custom filters. However, the performance is ...
1
vote
1answer
108 views
Camera in Android - can't get preview to restart? Don't know where pics are stored?
When should a call be made to startPreview on the camera after taking a pic?
Used the code in the demo:
http://developer.android.com/guide/topics/media/camera.html
Works to an extent, but I cannot ...
1
vote
1answer
149 views
Implement Camera API in Android 2.3
I'm working on a camera API. It works perfectly in 4.0 and 4.1 but when I try it on devices with Android 2.3 or less, it crashes in surfacechanged function. I'm using front camera for taking picture. ...
1
vote
1answer
178 views
Setting the background of an xml layout to camera in android
I have a project, where i have a xml layout, with buttons and all of that in it, and i need the background to be the camera, so the preview is behind the buttons, how can i do that?
0
votes
0answers
370 views
OpenGL ES, Draw non-power of 2 camera preview frame
I have to draw camera preview frame that has non POT size. 800x600 for example.
If I understand correctly, strategy is as follows:
1) Draw texture of POT size (but size is bigger than size of our ...
0
votes
0answers
92 views
getExposureCompensation called from preview callback always returns 0
I'm trying to determine how bright the scene in front of my camera is, and although the camera apparently supports the exposure compensation parameters, the value I read for getExposureCompensation() ...
0
votes
1answer
92 views
Actively read 150 x 150 pixels from a camera preview
I have set up an Android camera application that allows me to preview the camera in a Frame Layout within my main Activity. What I would like to do (without using camera specific functionality; I want ...
3
votes
0answers
530 views
Android: Accessing hardware camera preview frame data without drawing them
According to the android camera docs from the Java SDK side, the camera preview frames have to be supplied a (visible and active) surface to be drawn to in order to access the frame data. I have ...
2
votes
1answer
341 views
Android - Distorted Camera Preview
I am currently writing an android app which runs displays a circle drawable on the preview frame, runs edge detection and then takes a photo once the user lines up a coin perfectly in the circle.
For ...
0
votes
2answers
589 views
How to crop image on camera preview “Goggles style” - Android
I'm trying to make a small Android application that reads text from pictures. I've already implemented Tesseract tools for Android and I'm able to recognize text from pictures taken with camera. My ...
0
votes
1answer
504 views
Android: camera's startPreview method not working after stopPreview
In my application i have an image button that basically switches on and off the flash LED. The code is running fine for the first time i.e. On first Click it Switches On the LED and on the Second ...
0
votes
0answers
173 views
Corrupted Camera Preview on HTC desire HD - ANDROID
I make an application with the use of the camera to perform a preview.
Everything works fine except on model "HTC Desire HD".
The preview is cut in two part (half center), the up is ok, and the ...
0
votes
0answers
60 views
How could I modify the camera preview by myself and then displayed in real time?
I want to modify the camera preview by myself and then displayed in real time.But I don't konw which method could do this,who can help me ,thank you!
1
vote
1answer
2k views
Android Camera Preview Switch between cameras
Hi guys i am trying to switch between the device's Front and Back Camera while showing the camera preview. I am following the sample provide by common ware. Below is the code which i am using and ...
1
vote
0answers
110 views
Galaxy Nexus Capture image without starting preview?
I don't have a Galaxy Nexus and it's impossible to buy one. Therefore I would like to know if anyone knows the answer to this question specifically targeted to Galaxy Nexus.
SurfaceView sf = new ...
0
votes
1answer
318 views
Android Camera Preview not working in virtual phone
I made a surfaceview that should display the camera preview. However, When I open it with my virtual android phone, I get a checkered black and white background and a large moving green box instead of ...
0
votes
2answers
733 views
Android Camera Preview framerate
I'm trying to store and manipulate frames of data streaming off of the camera preview. The code to do this is pretty simple (even with converting YUV->RGB), but the framerate is terrible.
If I do ...
1
vote
1answer
2k views
Invisible SurfaceView for Camera Preview
I need to get camera preview data only, but not visible preview.
Since I'm doing all this in a service, I had to create a dummy SurfaceView, which works very well.
I've used the code from this ...
1
vote
1answer
689 views
Android (Camera) - How to syncronize stopPreview() with onPictureTaken()?
I have an app in which the client uses the camera to take a picture. The preview of the image is being shown in the tablet using a SurfaceView, before the person hits my "click" button. When the ...
2
votes
1answer
9k views
Android camera preview tutorial
I have a litte problem with a tutorial that I follow. I want to make a android application with a camera preview, but until now I haven't found any good tutorial that show how to do it. Here is the ...
6
votes
2answers
391 views
Android: onPreviewFrame never called without SurfaceView
On some devices, onPreviewFrame is not called if no SurfaceView was set to display the camera preview.
However, I handle the camera in a service, so I can't set a SurfaceView but I don't want to have ...
0
votes
0answers
140 views
Android: Camera preview from service
I need to open the camera on a (not bound) service but still have a preview in the activity.
How can this be done?
Or is it just not possible?
0
votes
0answers
144 views
Camera preview from service to UI thread
I need to get camera preview data (no recording or taking pictures) over a long time. This means that I have to do that inside a service (it should also continue when the app is closed).
It works all ...
2
votes
1answer
211 views
Android::Xoom: Camera Preview Orientation
I am trying to work with camera preview..
In the manifest file, for the activity I have set screenOrientation as landscape.
Also, android:minSdkVersion is set to 10.
I am using Motorola xoom with ...
0
votes
1answer
318 views
Android - Camera, save pic every 20 seconds [closed]
If it possible to retrieve camera pic in background and save the pic every 30 seconds?
Does anyone have example? Thanks.
1
vote
1answer
189 views
Android Camera - Can we take a part of an image from the full screen
I want to take an particular part of an image from the image preview. Is it possible, if so how to do that?
for ex,
I just want to show some limit to the user, so they can take partial part of an ...
0
votes
1answer
256 views
android camera preview screen intensity
I am using the custom camera application with preview, using the sdk example on nexus s (2.3)
everything works fine, including taking sharp picture, but the preview does not seem to adjust his level ...
1
vote
1answer
731 views
Android Camera - How can i change pixels on Preview?
I would like to change some of the pixels in the preview to be a bit darker than the rest.
Let's say that i would like the top half of the preview to be a bit darker than the bottom half of the ...
2
votes
2answers
640 views
Hide camera preview but still receive preview callbacks
I want to show filtered camera preview in my application.
I'm using Camera.setPreviewCallback() for this. I managed to process callback data and show filtered image in OpenGL view but I have no idea ...
