The image-capture tag has no wiki summary.
0
votes
0answers
17 views
Captured image gets distorted when saved - Android Surfaceholder HTC Desire S
I'm using the Surfaceholder and the camera to capture an image but when I do it on my HTC Desire S the captured image looks like this. This is not what it looks like in the preview-view.
It works ...
2
votes
2answers
33 views
OpenCV Capture from Camera Results in Noisy-like Image
I am using OpenCV on an embedded target board (FriendlyARM mini6410, processor arm 1176 running linux kernel 2.6.38).
I compiled OpenCV 2.4.4 library using toolchain provided for the board, found in ...
0
votes
1answer
63 views
Screen Capture program in VB.NET
I had created an application that captures the screenshot of desktop screen. It works very well with button I have used in form. But now I want to make that thing works automatically using timers but ...
0
votes
1answer
39 views
Upload image directly to server without storing in local directory
How can I store the images which is taken from camera, directly to the server without storing in local system file?
I have tried to work out below:
Intent intent = new ...
0
votes
0answers
58 views
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 ...
0
votes
1answer
29 views
Mirrored image when capturing from webcam
I'm capturing images from a webcam using code based on the example from http://msdn.microsoft.com/en-us/library/windows/desktop/dd407288(v=vs.85).aspx#example_code
It works fine except one strange ...
0
votes
0answers
31 views
canvas.drawWindow is not a function
I am working on adding the contents of an iFrame to the canvas in order to save it as an image. I get the 'canvas.drawWindow is not a function' error in FF.
I understand that this only works with ...
1
vote
2answers
225 views
Run Bash from Java Program to Capture Webcam Image on Raspberry Pi
On my Raspberry Pi, I can successfully capture and save images from my Logitech Pro 9000 USB webcam from LXTerminal with the following bash line:
fswebcam -d /dev/video0 /home/pi/image.jpg
I want ...
0
votes
2answers
138 views
Java WebCam Capture And Display [closed]
Im currently looking to building a simple application.
I've had a look at other application and stack overflow questions which dont seem to help.
I want to make the application use the build i web ...
0
votes
0answers
17 views
how can i capture imageview only?
I'm tyring to save an imageview with a labelview on top of it using the following.
- (IBAction)save:(id)sender{
UIGraphicsBeginImageContextWithOptions(self.imageView.bounds.size, NO, [[UIScreen ...
0
votes
0answers
107 views
Save 3D matrix(depth and RGB) from Kinect using C# and sending those matrices to matlab using COM objects
FileStream streamColor1 = new FileStream(@"C:\Kintelligent\image1rgb.png", FileMode.Create);
BmpBitmapEncoder encoderColor1 = new BmpBitmapEncoder();
TextBlock myTextBlockColor1 = new TextBlock();
...
0
votes
0answers
99 views
Phonegap: Issue when use photoswipe when append dynamic picture to gallery
I have a Phonegap application for Android, i use photoswipe to show gallery which was load from sdcard. But the first time show gallery by photoswipe, I can't go back current page contains this ...
0
votes
1answer
95 views
JavaCV Grabber webcam only working on my computer?
So I created an executable JAR using this code and everything works fine on my machine however I tested it on some other computers and the webcam capture never starts. The indicator light doesn't come ...
0
votes
1answer
29 views
Get/set video resolution when capturing image
I'm capturing images from my webcam with some code that mainly bases on this: Using the Sample Grabber.
Here I only get the default resolution of 640x480 while the connected camera is able to show ...
1
vote
1answer
86 views
Capture images in native resolution from Webcam
when asking Google I get a lot of information and - and that's my problem - many different ways of capturing images from an Webcam using Windows. It seems the programming interface that gives this ...
0
votes
1answer
197 views
Get maximum resolution when capturing image data with cvQueryFrame()
I capture some image data from a HD cam using OpenCV and this code (relevant snippets only):
data->capture =cvCaptureFromCAM(data->config.device); // open the device
...
IplImage ...
1
vote
0answers
86 views
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 ...
15
votes
9answers
628 views
How to capture image from small View(portion) in Android?
i need to capture image from required portion of the screen.
capture image from camera.
at that time other screen content as it is.
how is this possible?
1
vote
2answers
44 views
Take image from camera and redirect to particular page
I got a problem regarding my app, I have created the camera functionality, but I need that after taking the image, the page should redirect to another activity with having that image.
I have used the ...
-3
votes
1answer
89 views
Fast way to capture single images from Android-Camera [duplicate]
Since I could not find any useful documentation that shows how to get just single frames/images from camera I'm asking it here, may be somebody has a hint where to start.
I want to use single images ...
0
votes
0answers
82 views
Fast way to capture single images from Camera [closed]
I want to use single images from camera in a fast way. Means I want to retrieve a single image, then do some internal processing on it (which may need some time) and retrieve the next image as soon as ...
0
votes
1answer
84 views
iOS capture UIView with UIImageView inside
I'm trying to get a UIView screen capture on iOS.
In my view I have two UIImageView with animations.
The code that I using it to capture the view is:
...
0
votes
2answers
269 views
Capture and save a photo in XAML/C# for a Windows store application
I'm trying to take and save a photo using a windows surface device.
I'm using the code below to take a photo and this work but I'd like to automatically create a directory on the device's local drive ...
0
votes
0answers
45 views
Taking parent and child windows screenshot in windows using greenshot
I am trying to take a screenshot of parent window + child window using Greenshot tool.
Use case:
Select a folder and go to properties window. with Alt + Prnt Scrn, take screenshot (It will give a ...
0
votes
0answers
103 views
Connecting External Webcam Matlab MacOSX
I'm trying to connect an external webcam (Icecam2) to my computer (Macbook Pro running MacOSX 10.8.2) using Matlab, version 7.11.0. I've been trying this string of commands -
imaqwinfo
which ...
0
votes
0answers
87 views
wordpress camera image capture and save
I 'm currently having a project that uses Advanced Custom Fields on the frontend helping the user to upload his photo and store it in a post.
What i would like to add is having the choice of instantly ...
0
votes
0answers
21 views
ICA Manager(Morena 7) cannot identifying devices connected on Mac OS X(10.7)
I am trying to scan single image from selected device on Mac OS , iam using Morena7 as Morena6 is not supported for 64 bit Mac
Here is my sample code,
private void simpleScan() throws Exception {
// ...
1
vote
0answers
77 views
Capturing video data from a machine
What is the best way to capture video data from a machine (running either Windows or Linux)? So basically I need to run some form of program that will intercept(make a copy of) all forms of video data ...
1
vote
3answers
362 views
How to pass the captured image to a different activity to set to the image view in android
I have two Activities first activity has the dynamic image view and on click i am calling the second activity where camera in invoked to capture a image, now i am able to invoke camera and capture a ...
0
votes
2answers
137 views
I cannot return the previous activity with using ActivityForResult
I have these codes. Camera opened, the picture is taken, but when I click on "ok" button, nothing happened. The only way to get back to previous activity is clicking the "x" button which is not useful ...
0
votes
1answer
167 views
Saving bitmap at custom path and with custom name
my program captures an image (as bitmap) but I don't know (and couldn't find) how to save it with a custom name at a custom path... Here's my image capture codes. Can I do it? Or is there any way ...
0
votes
2answers
62 views
Convert a layout to an image, how to have a good quality?
I have a layout in an Android activity, I convert it as an image and then share it on different social networks.
The things is that the quality is not good at all, I have artifacts on the image, and ...
1
vote
1answer
90 views
Is it possible to count no of human faces in web cam `capture` from server side?
i am new to ASP.Net
I want to implement project which is need to every random time web cam captures images from the client side.
And I want to send those capture images to Server, There ...
-2
votes
1answer
136 views
Take a photo and upload it to the server on iOS [closed]
I am developing an iOS application which brings some journalist tools together. Its main functionalities are taking photos, capturing videos and sound records and upload them to the server. The use ...
0
votes
0answers
104 views
HTML5 photo capture on BlackBerry Playbook
How can I my strictly web-based application allow users on the BlackBerry Playbook to upload photos captured with the device camera? Or, how can it at least launch the camera application on the ...
0
votes
4answers
735 views
java.lang.OutOfMemoryError in android while getting image from gallery in android
I'm picking a picture from gallery using code
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.gallery);
Intent i = new ...
0
votes
0answers
112 views
Memory deallocation with jpegStillImageNSDataRepresentation and writeImageToSavedPhotosAlbum
I am using the following code to capture and image then potentially store it to the photo library. If however I capture the image but not store it (i.e., some_condition variable is true in the code ...
0
votes
2answers
321 views
Android Saving Captured Image As Android Camera Captured
I'm trying to open android's own camera application from my application.It is working!But i have a problem when i want to get information like,
-Image ID
-Image Display Name
-Image Title
-Image ...
0
votes
1answer
99 views
OpenText DokuStar Capture Center Extraction Enhancement
Since there is virtually no documentation or code snippets on programming inside OpenText Capture Center. I need some input from someone with experience.
Here is the crux of what I need...
In the ...
1
vote
1answer
105 views
using XML in Corona to link captured images with recorded audio
I am working on a camera&recorder project in Corona which executes as follows:
Upon touch, the camera takes picture, and audio starts recording. Upon next touch:
the previous picture is saved ...
0
votes
5answers
745 views
Capture a div as an image
I have some div tags containing charts rendered by javascript. I want to export them in an image format by the press of a button. I don't know if it's possible to capture a div tag as an image using ...
0
votes
0answers
392 views
HTC Desire C - Camera/photo issue in app
My company has a commercial app that runs on android, iOS and WP7/8.
Today a customer called having issues with using the photo capture part of our app in Android.
The phone is a Desire C and he ...
0
votes
2answers
163 views
How can I capture the whole web page in an Android phone while using its browser?
When I visit a web page using Android browser I can capture the visible part of the web page making a screenshot of the whole screen, but I need capture the whole web page, including the part of the ...
1
vote
0answers
195 views
Android: how to access camera capture when application running at background
I have been searching for this to implement to my application.As i understand that i can use broadcast receiver for listen camera capture.But i need more specific information about captured image or ...
0
votes
2answers
85 views
Store picture take in the app directory and give a custom name to it. [closed]
I am creating a camera app for iphone, and I am facing one issue.
I want to be able to give the picture I take, to be stored in the app's private directory and also to give picture a custom name to ...
0
votes
0answers
40 views
UIView: How to capture the part out of the parent frame?
I use below code to capture a uiview as an image. It works for the most part. But this uiview has a uiimage its origin.x is -6. So only part of this image is captured, how to solve it? TIA.
...
4
votes
2answers
342 views
cvCaptureFromCAM() / cvQueryFrame(): disable automatic image correction?
I'm using the two OpenCV functions mentioned above to retrieve frames from my webcam. No additional properties are set, just running with default parameters.
While reading frames in a loop I can see ...
1
vote
0answers
214 views
cvCaptureFromCAM() / cvQueryFrame(): get native resolution of connected camera?
I'm using the two OpenCV functions mentioned above to retrieve frames from my webcam. No additional properties are set, just running with default parameters.
Here cvQueryFrame() always returns frames ...
3
votes
1answer
398 views
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 ...
1
vote
2answers
1k views
android loading image from sd card into imageview creats out of memory error in Samsung SIII
in my app i have an option to show the images in sd card, from that the user can select one image and it will be loaded in the the image view of my next activity.
I have tested the app in two of my ...





