Questions tagged [image-capture]

374 questions
3
votes
1 answer

Saving current frame of video-Windows Store app

I have a scenario where pick video from library and save frame as image on clicking a button. like we can capture current frame of video playing in wpf. I had done this in Windows Phone 8- WriteableBitmap bmpCurrentScreenImage = new…
Abhishek
  • 995
  • 13
  • 28
3
votes
1 answer

How to get camera settings from ImageCaptureCore

ImageCaptureCore does not provide an API to get camera settings, like White Balance, ISO etc., but it provides an API method requestSendPTPCommand from which is possible to get camera settings. But the problem is no matter how I call this API, the…
3
votes
1 answer

AVCaptureVideoOrientation landscape modes result in upside down still images

Im using AVCaptureSession for taking pictures and store pictures to album. When i click the button it takes the snapshot and store to album. But when i use landscape mode, then click the button it stores landscape modes result in upside down still…
3
votes
0 answers

Android saving image in default folder with default image name

my application is making photos and viewing them in ImageView. Everything works fine, but images I make in my application are saved in folder DCIM/CAMERA/ with names like "1369434756474" or "1369920366597". I would like to save images like original…
3
votes
0 answers

Android ACTION_IMAGE_CAPTURE intent returns null on onActivityResult

We are facing an issue for passing intent data to onActivityResult method when we start ACTION_IMAGE_CAPTURE intent getting null for intent Here is my code for starting camera activity and passing data to the onActivityResult() don't know whats…
kondal
  • 358
  • 1
  • 6
  • 22
3
votes
1 answer

What is size of thumbnail returned by ACTION_IMAGE_CAPTURE intent

I'm using the standard camera intent to take a photo: Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(takePictureIntent, actionCode); And then in onActivityResult() Bundle extras =…
amit
  • 1,373
  • 2
  • 16
  • 29
3
votes
1 answer

take picture from intent android and send to server java

I recently started learning Android and I want to make an application that takes a picture from camera intent and sends it to a server, but I can only take a picture. Someone can help me? Now place the code. Client... public class SendPhoto extends…
sqtd
  • 485
  • 1
  • 4
  • 6
3
votes
1 answer

Rendering NSView to image: cacheDisplayInRect draws transparent areas differently from usual drawRect call

Greetings! I have a problem and Googling brought no results... I implemented the drawRect method for my NSView (subclass) to draw some shadows and semi-transparent fills. Everything looks great! But now I need to create an NSImage from my NSView…
UJey
  • 1,442
  • 11
  • 15
3
votes
1 answer

Access 2007 Image Capture

I have been trying to figure out how to capture an image withing my Microsoft Access 2007 application using a webcam. We have been paying for a 3rd party application for this in the past - it is used for taking ID card photos, but the software has…
happydba
  • 103
  • 8
2
votes
0 answers

iOS AVFoundation image capture too slow

I am creating session and AVCaptureStillImageOutput this way: __imageCaptureSession = [[AVCaptureSession alloc] init]; __imageCaptureSession.sessionPreset = AVCaptureSessionPresetPhoto; __imageCapture = [[AVCaptureStillImageOutput alloc]…
Martin Pilch
  • 3,245
  • 3
  • 38
  • 61
2
votes
3 answers

UIImagePickerController takePicture is not calling any delegate method

I am creating a sample app which allow use to capture image and record video with custom buttons. I created an instance of UIImagePicker controller and assign delegate and all is done but takePicture, is not calling delegate method. I refer few of…
Kapil Choubisa
  • 5,152
  • 9
  • 65
  • 100
2
votes
1 answer

ImageCapture.takePhoto throws DOMException: platform error

Im trying to use the takePhoto method of image capture, using the following code. addPicture: function (typeEvidence) { if ('mediaDevices' in navigator && 'getUserMedia' in navigator.mediaDevices) { this.typeEvidence = typeEvidence; …
2
votes
0 answers

Android Media Projection Screen Capture Works Differently On Real Device

When I Run The Code Below, Continuous Screen Recording Is Working In The Virtual Device And Capturing The Pictures. However, when the code is run on the real device, they are all the same, except for a few of the captured images (with the exception…
2
votes
0 answers

Android CameraX: ImageCapture a bit different than Preview

I develop app where I want to take photo only on the middle square but by keeping the preview on almost the whole screen like in this picture. However, the imageproxy, after a cropping, does not look like the previous image, the width and height are…
Turvy
  • 882
  • 1
  • 8
  • 23
2
votes
0 answers

Alternatives to Image Capture for mobile Safari

We are creating an app that lets a user capture a number of images and it will try to create a 3D model of the target object. In order to help the users capture useful images we give them some guidance while they move their phone from one capture to…
Alejandro B.
  • 4,807
  • 2
  • 33
  • 61