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
1 answer

Key and mouse listening, automation

I am looking to create an overlay to a strategy game called Dune 2000. It is annoying that to create 10 soldiers, you have to click the icon everytime one is completed. There is no queue. So without interfering in how the game works, i would like to…
Bartlomiej Lewandowski
  • 10,771
  • 14
  • 44
  • 75
0
votes
1 answer

Data capture from flash application

I'm implementing software to casino auto-play. I'm using .NET technology and C# language. The main problem is how to capture data from casino game (here is the link to the game …
0
votes
1 answer

Android Image captured force close

When I capture an image from the camera then load it using startActivityForResult(intent, RESULT_LOAD_IMAGE); using HTC one it's working fine, but using large phones .. like S2 the app crashed ( fore close ) this is my…
John Jared
  • 790
  • 3
  • 16
  • 40
0
votes
1 answer

error in Displaying video in opencv

#include #include int main(int argc,char** argv[]) { cvNamedWindow("video",CV_WINDOW_AUTOSIZE); CvCapture* capture = cvCreateFileCapture("Input_1.avi"); if (!capture) { std::cout << "!!!…
Karthik Murugan
  • 1,595
  • 4
  • 19
  • 26
0
votes
1 answer

C++ Retrieve Content From a Remote Console Application

Introduction: I'm an administrator currently working on the dedicated servers of the game "Sniper Elite V2". SEV2's dedicated servers are running under windows in a console application. We are able to run this application under Linux too, with…
0
votes
0 answers

why can't my program (coded with libpcap) capture wireless 80211 packets?

I have written a program to capture wireless network packets from my network interface card(ralink 2870(USB),atheros(PCI),etc).Now I am not able to capture the correct format packet I needed,even no packets was captured.1st,I tried turned my card to…
0
votes
1 answer

Faster way of screen capture (java)

I find the robot.createScreenCapture(rectangle) method of screen capturing extremely slow. I aim to create a smooth GIF Animation and to fulfill this I need to capture my screen (at around 1 frame per 10-30ms). Doing so whilst saving the buffered…
Bob Let
  • 123
  • 1
  • 5
  • 13
0
votes
1 answer

Associating HTTP Requests with Responses in large packet capture

I am attempting to work with large packet captures from wireshark that have been output in pdml format. These captures are then loaded into python using the lxml library to traverse over them. The issue I am having is that I can pull out…
EEP
  • 715
  • 1
  • 4
  • 17
0
votes
2 answers

How to Capture screen in android and covert it to image

How can I capture screen content in android programmatically?
0
votes
2 answers

Regex expression to capture hyphenated word between lines, and non hyphenated words

I am trying to write a regular expression, in java, that matches words and hyphenated words. So far I have: Pattern p1 = Pattern.compile("\\w+(?:-\\w+)",Pattern.CASE_INSENSITIVE); Pattern p2 =…
MacAttack
  • 25
  • 6
0
votes
1 answer

How to capture black and white video using in iPhone

Possible Duplicate: Recording video in Black and White How to capture the black and white video I am developing iPhone application. In this application i need to capture the video that video format is black and white video. I trying to solve this…
iSara
  • 919
  • 3
  • 10
  • 24
0
votes
2 answers

Is there any way to port ffmpeg command to Android without root the device?

This link http://www.roman10.net/how-to-port-ffmpeg-the-program-to-androidideas-and-thoughts/ talks about port ffmpeg command to Android. Can anyone describe more detail? My purpose is to record user's behavior on Android device and save as video…
user1429903
  • 31
  • 1
  • 4
0
votes
1 answer

Raw input or global hook to capture keystrokes?

I have an application that captures keystrokes. But i have read a little bit about win7 problems that if the hook dont respond in a couple of seconds, the hook is terminated. And because of that some think Raw input is better. But i really dont know…
syncis
  • 1,395
  • 4
  • 25
  • 43
0
votes
3 answers

Accessing multiple captures in a RegEx (Newbie thing...)

in this regex multiple capture I have to add "g" flag to obtain all items... "aaa bbb ccc \n.000.\n \n.111.\n sd555 dsf \n.222.\n ddd ".match( /^.(.*).$/gm ) when I add the "g" (global) flag ?how do access the captured groups... there should be 3…
ZEE
  • 2,931
  • 5
  • 35
  • 47
0
votes
2 answers

PHP exec capture text

I am having a problem with capturing text when I make an exec call to a perl script that just prints a lot of text. What happens when I run the following code is I get a 1 word result: "Array". I need to be able to capture the results so that I can…