Questions tagged [capture]

capture is the process of converting a set of pixels on a screen into a bitmap image stored in memory

1457 questions
0
votes
2 answers

directX capture renderer in C++

I have to get (shared memory or GPU memory) the directX render from a windows application called "Myapp" and apply this render (view) to four directX simple applications (only exactly the same view as the first windows application "Myapp") Someone…
stack_nh
  • 1
  • 1
0
votes
1 answer

Dumping wave audio to stdout using Windows API

I've been working in a quite entertaining project, I want to capture audio from the stereo mix on windows in PCM 44100 Hz 16 bit and pack it through the net with netcat (using cygwin). The goal of this project is to be able to connect windows output…
0
votes
2 answers

Special Desktop Screenshot Programmatically

I'm sorry for maybe asking the obvious. But I want to ask anyways because maybe there is a hidden way to do that. Of course all programmatically. Can I capture a desktop screenshot without all the windows on top of it ? just background (image) and…
Bitterblue
  • 13,162
  • 17
  • 86
  • 124
0
votes
2 answers

Capture ENTER KeyEvent and Do a Click instead

I have added ENTER Key to the default FocusTraversalKeys as such... private void focus() { Set forwardKeys = getFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS); Set newForwardKeys = new java.util.HashSet(forwardKeys); …
HMH
  • 33
  • 6
0
votes
3 answers

Fiddler doesn't capture iPad traffic

Fiddler is installed on my windows machine, ipad wifi setting are 'manual' and setting the windows machine as proxy. When running fiddler echo service from the ipad browser it is shown in fiddler, but no other http request from the ipad, either…
0
votes
1 answer

Capture the screen image without screen capture spamming

Is there a way to capture the screen image without screen capture spamming? I'm trying to get the image from my screen similar way to something like LogMeIn does or Join.Me in Java. But I can't seem to find an efficient way of doing it other than…
brad95411
  • 141
  • 1
  • 1
  • 12
0
votes
1 answer

Is capturing screen image and displaying it on an application every second effective?

I'm new to programming but I really wish to improve, right now learning Java. Basically there is this game, online strategy it's pretty basic with most of the images are static and very few of them change. I wish to change how I view the game from…
Var_Matt1
  • 19
  • 5
0
votes
0 answers

Capturing a photo on x86 Atom Windows 8, DirectShow

I don't have a C background, so pointers seem to be my downfall. Working with a Lenovo Thinkpad tablet running full blown Windows (Atom processor). I ported the sample project DXSnap to vb.net. It works fine on my laptop, but on the tablet I'm…
Aaron
  • 1,313
  • 16
  • 26
0
votes
1 answer

RGBDToolKit calibrate correspondence cannot display the live view by my canon digital camera

Hi~ I am trying to calibrate my depth camera with my digital camera.. but I meet some problem using the RGBDKinectCapture... 1、why the calibrate correspondence cannot show the RGB view from my digital camera?? (canon EOS 600D) I have set it the live…
GanLiting
  • 21
  • 3
0
votes
2 answers

How can my perl script invoke and exe and post process it

I need my script to do a simple operation: Use unix script command to log the activities on the screen to a file execute a shell script ( there are multiple lines output by this script to STDOUT) Stop the script command Analyse the output of the…
0
votes
1 answer

Cocos2d Screen capture and get sprite from UIImage

I'm very headache about this problem, I'm using these code for capturing a part of the screen -(UIImage *) glToUIImage { userphotoCount++; [CCDirector sharedDirector].nextDeltaTimeZero = YES; CGSize winSize = [CCDirector…
0
votes
1 answer

Capturing images while record button clicked in ios simultaneously

Iam using UIImagePicker to record video when i click the record button i want to capture the frame with sound and add it into one array .Please help me to accomplish the same thanks in advance .
naveen
  • 69
  • 7
0
votes
1 answer

Get all screen pixels colors with C#

I am building a project to get the color of certain screen pixels. The project already works however I would like to know if there's a better and faster way to do it. here's a part of the code I'm using: In here I want to get the colors of certain…
0
votes
2 answers

Java generics: compilation failure using captures

Why does the below code fail to compile? Can this example be simplified (to fewer classes) to demonstrate equivalent error? The error message produced is: func(capture of ? extends A) in ... cannot be aplied to B private static interface A {} …
Leonid
  • 22,360
  • 25
  • 67
  • 91
0
votes
1 answer

std::getline() is not ending/capturing

This does not work. playing = true; while (playing) { std::string command; std::cin.ignore(1); std::getline(std::cin, command); execute(command); std::cout << "asdasd"; } Whenever the program runs, it does not input whenever I…
Astrognome
  • 303
  • 3
  • 9