Click here to Skip to main content
15,921,905 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to Convert vector::reference to vector::iterator ? Pin
Chris Losinger14-Dec-11 2:22
professionalChris Losinger14-Dec-11 2:22 
AnswerRe: How to Convert vector::reference to vector::iterator ? Pin
Stefan_Lang14-Dec-11 5:40
Stefan_Lang14-Dec-11 5:40 
GeneralRe: How to Convert vector::reference to vector::iterator ? Pin
002comp14-Dec-11 17:30
002comp14-Dec-11 17:30 
Questionhow to test a compressed file in MFC? Pin
Le@rner13-Dec-11 20:20
Le@rner13-Dec-11 20:20 
AnswerRe: how to test a compressed file in MFC? Pin
Richard MacCutchan13-Dec-11 22:09
mveRichard MacCutchan13-Dec-11 22:09 
GeneralRe: how to test a compressed file in MFC? Pin
Le@rner13-Dec-11 23:52
Le@rner13-Dec-11 23:52 
GeneralRe: how to test a compressed file in MFC? Pin
Richard MacCutchan14-Dec-11 0:08
mveRichard MacCutchan14-Dec-11 0:08 
GeneralRe: how to test a compressed file in MFC? Pin
Le@rner14-Dec-11 0:35
Le@rner14-Dec-11 0:35 
GeneralRe: how to test a compressed file in MFC? Pin
Richard MacCutchan14-Dec-11 0:38
mveRichard MacCutchan14-Dec-11 0:38 
GeneralRe: how to test a compressed file in MFC? Pin
Le@rner14-Dec-11 0:46
Le@rner14-Dec-11 0:46 
QuestionRe: how to test a compressed file in MFC? Pin
David Crow14-Dec-11 3:34
David Crow14-Dec-11 3:34 
AnswerRe: how to test a compressed file in MFC? Pin
Le@rner14-Dec-11 17:16
Le@rner14-Dec-11 17:16 
QuestionRe: how to test a compressed file in MFC? Pin
David Crow15-Dec-11 2:07
David Crow15-Dec-11 2:07 
QuestionMessure function execution time Pin
columbos1492713-Dec-11 1:40
columbos1492713-Dec-11 1:40 
AnswerRe: Messure function execution time Pin
enhzflep13-Dec-11 1:48
enhzflep13-Dec-11 1:48 
GeneralRe: Messure function execution time Pin
columbos1492713-Dec-11 2:09
columbos1492713-Dec-11 2:09 
AnswerRe: Messure function execution time Pin
Stefan_Lang13-Dec-11 2:29
Stefan_Lang13-Dec-11 2:29 
JokeRe: Messure function execution time Pin
Code-o-mat13-Dec-11 5:12
Code-o-mat13-Dec-11 5:12 
QuestionProblem with owner drawn listbox and double buffering Pin
aangerma13-Dec-11 1:26
aangerma13-Dec-11 1:26 
QuestionRe: Problem with owner drawn listbox and double buffering Pin
CPallini13-Dec-11 1:49
mveCPallini13-Dec-11 1:49 
QuestionThread Sync Pin
columbos1492712-Dec-11 22:22
columbos1492712-Dec-11 22:22 
AnswerRe: Thread Sync Pin
Richard MacCutchan12-Dec-11 22:55
mveRichard MacCutchan12-Dec-11 22:55 
AnswerRe: Thread Sync Pin
Albert Holguin13-Dec-11 3:19
professionalAlbert Holguin13-Dec-11 3:19 
AnswerRe: Thread Sync PinPopular
Chuck O'Toole13-Dec-11 4:02
Chuck O'Toole13-Dec-11 4:02 
I just want to point out that if, as you say "the problem is that the grabbing is faster then my calculation", then you are destined to lose frames. Threads and frame queues may help with the management of the arriving data but it is basic queueing, if your per-frame processing time exceeds the frame inter-arrival time, you will have problems. This basic tenet was masterfully demonstrated by the late Lucile Ball in the famous "chocolate candy factory" skit. Processing/interarrival mismatch[^]

Once you get the synchronization of the threads and queueing out of the way, you either need to make your processing faster or decide on how you choose which incoming frames to discard.

modified 13-Dec-11 10:46am.

GeneralRe: Thread Sync Pin
Chris Meech13-Dec-11 7:07
Chris Meech13-Dec-11 7:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.