Questions tagged [picturecallback]

6 questions
2
votes
0 answers

How can I add thermal effect to YUV image

After googling a lot. I find a way to change Preview of a single frame. Correct me if i am wrong. camera.setPreviewCallback(new PreviewCallback() callBack let you get the frame of a Camera in byte. Now you can save it or modify it. First of…
Zar E Ahmer
  • 33,936
  • 20
  • 234
  • 300
1
vote
0 answers

How to receive a confirmation for a picture being saved when takePicture() is being used

How to receive a confirmation for a picture being saved when takePicture() is being used such that finish() can be used after that. I used camera.takePicture(null,null,p); finish(); But by using this I'm unable to get the picture used since finish…
1
vote
1 answer

Custom camera photos are not showing in Windows Explorer

I've followed the instructions on android's website on how to create a custom camera application and so far i made it. I've created a layout with a take a picture button and it works fine, the images are saved on the sdcard using the…
Apostrofix
  • 2,140
  • 8
  • 44
  • 71
0
votes
0 answers

Asynchronous call to onPictureTaken from Camera.takePicture() not occurring for saving captured images every x seconds

I am trying to build an android app to capture images and save them on SD card every x seconds automatically. The call from takePicture() to onPictureTaken() for PictureCallback never occurs for me. Following is the activity on create object which…
0
votes
1 answer

Taking photo in android

Hi I am developing my app with Camera functionality with SurfaceView. I want to take picture when surface view created. In my fragment's onCreateView method, initialized everything what I need. @Override public View onCreateView(LayoutInflater…
Karthikeyan Ve
  • 2,550
  • 4
  • 22
  • 40
0
votes
1 answer

GC cleaning the object before calling onPictureTaken method

I have developed an app that takes photos without previewing them to the user. My problem is that before carrying out the OnPictureTaken method, sometimes the GC cleans the object created by the method Camera.takePicture(). Therefore, when it…