forked from remy22/BiometricalSolutions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGrabImage.cpp
More file actions
608 lines (524 loc) · 15.6 KB
/
Copy pathGrabImage.cpp
File metadata and controls
608 lines (524 loc) · 15.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
// GrabImage.cpp : Defines the entry point for the DLL application.
//
#include <streams.h>
#include <qedit.h>
#include <windows.h>
#include <atlbase.h>
#include "stdafx.h"
#include "GrabImage.h"
BOOL APIENTRY DllMain( HANDLE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
HRESULT ConnectFilters(
IGraphBuilder *pGraph,
IBaseFilter *pSrc,
IBaseFilter *pDest);
HRESULT SaveGraphFile(IGraphBuilder *pGraph, WCHAR *wszPath);
HRESULT hr = NULL;
IGraphBuilder *pGraph = NULL;
ICaptureGraphBuilder2 *pBuilder = NULL;
IBaseFilter *pVideoCap = NULL;
IBaseFilter *pGrabberF = NULL;
ISampleGrabber *pGrabber = NULL;
IVideoWindow *pVideoWindow = NULL;
IBaseFilter *pNull = NULL;
#ifdef _DEBUG
FILE *stream = NULL;
#endif
AM_MEDIA_TYPE mt;
HWND hWnd;
double ASPECT_RATIO = 1.2;
//************************************************************************************
void GRABIMAGE_API __stdcall StartPreview(HWND hW) {
hWnd = hW;
// LPCWSTR g_PathFileName = L"C:\\Documents and Settings\\roman\\My Documents\\Roxio\\VideoWave 5 Power\\Capture\\NONAME_004.AVI";
DestroyGraph();
#ifdef _DEBUG
stream = fopen("grab_image.txt", "w");
#endif
// Initialize the COM library.
hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
if (FAILED(hr)) {
// printf("ERROR - Could not initialize COM library");
#ifdef _DEBUG
fclose( stream );
#endif
return;
}
// Create the Filter Graph Manager object and retrieve its
// IGraphBuilder interface.
hr = CoCreateInstance(CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER,
IID_IGraphBuilder, (void **)&pGraph);
if (FAILED(hr)) {
// printf("ERROR - Could not create the Filter Graph Manager.");
CoUninitialize();
#ifdef _DEBUG
fclose( stream );
#endif
// return hr;
return;
}
// Create the Capture Graph Builder.
hr = CoCreateInstance(CLSID_CaptureGraphBuilder2, NULL,
CLSCTX_INPROC_SERVER, IID_ICaptureGraphBuilder2,
(void **)&pBuilder);
if (SUCCEEDED(hr)) {
pBuilder->SetFiltergraph(pGraph);
}
ICreateDevEnum *pDevEnum = NULL;
IEnumMoniker *pEnum = NULL;
// Create the System Device Enumerator.
hr = CoCreateInstance(CLSID_SystemDeviceEnum, NULL,
CLSCTX_INPROC_SERVER, IID_ICreateDevEnum,
reinterpret_cast<void**>(&pDevEnum));
if (SUCCEEDED(hr)) {
// Create an enumerator for the video capture category.
hr = pDevEnum->CreateClassEnumerator(
CLSID_VideoInputDeviceCategory,
&pEnum, 0);
USES_CONVERSION;
WCHAR wachFriendlyName[120];
IMoniker *pMoniker = NULL;
while (pEnum->Next(1, &pMoniker, NULL) == S_OK) {
IPropertyBag *pPropBag;
wachFriendlyName[0] = 0;
hr = pMoniker->BindToStorage(0, 0, IID_IPropertyBag,
(void**)(&pPropBag));
if (FAILED(hr)) {
pMoniker->Release();
continue; // Skip this one, maybe the next one will work.
}
// Find the description or friendly name.
VARIANT varName;
// varName.vt = VT_BSTR;
VariantInit(&varName);
hr = pPropBag->Read(L"Description", &varName, 0);
if (FAILED(hr)) {
hr = pPropBag->Read(L"FriendlyName", &varName, 0);
if(hr == NOERROR) {
lstrcpyW(wachFriendlyName, varName.bstrVal);
SysFreeString(varName.bstrVal);
}
}
VariantClear(&varName);
if (SUCCEEDED(hr)) {
hr = pMoniker->BindToObject(0, 0, IID_IBaseFilter, (void**)&pVideoCap);
if (SUCCEEDED(hr)) {
// Add the video capture filter to the graph with its friendly name
hr = pGraph->AddFilter(pVideoCap, wachFriendlyName);
}
}
IAMAnalogVideoDecoder *pVDecoder;
hr = pBuilder->FindInterface(&PIN_CATEGORY_CAPTURE,
&MEDIATYPE_Video,
pVideoCap,
IID_IAMAnalogVideoDecoder, (void **)&pVDecoder);
if(SUCCEEDED(hr)) {
// int AnalogVideo_NTSC_M = 0x00000001,
// int AnalogVideo_PAL_B = 0x00000010,
pVDecoder->put_TVFormat(AnalogVideo_PAL_B);
pVDecoder->Release();
}
pPropBag->Release();
pMoniker->Release();
}
}
pDevEnum->Release();
pEnum->Release();
// Create the Sample Grabber.
hr = CoCreateInstance(CLSID_SampleGrabber, NULL, CLSCTX_INPROC_SERVER,
IID_IBaseFilter, (void**)&pGrabberF);
if (FAILED(hr)) {
// printf("ERROR - Could not create the Sample Grabber Filter.");
pVideoCap->Release();
pBuilder->Release();
pGraph->Release();
pGraph = NULL;
CoUninitialize();
#ifdef _DEBUG
fclose( stream );
#endif
// return hr;
return;
}
hr = pGraph->AddFilter(pGrabberF, L"Sample Grabber");
if (FAILED(hr)) {
// printf("ERROR - Could not add the Sample Grabber Filter.");
pGrabberF->Release();
pVideoCap->Release();
pBuilder->Release();
pGraph->Release();
pGraph = NULL;
CoUninitialize();
#ifdef _DEBUG
fclose( stream );
#endif
// return hr;
return;
}
// Query the Sample Grabber for the ISampleGrabber interface.
pGrabberF->QueryInterface(IID_ISampleGrabber, (void**)&pGrabber);
if (FAILED(hr)) {
// printf("ERROR - Could not get the ISampleGrabber interface.");
pGrabberF->Release();
pVideoCap->Release();
pBuilder->Release();
pGraph->Release();
pGraph = NULL;
CoUninitialize();
#ifdef _DEBUG
fclose( stream );
#endif
// return hr;
return;
}
ZeroMemory(&mt, sizeof(AM_MEDIA_TYPE));
mt.majortype = MEDIATYPE_Video;
mt.subtype = MEDIASUBTYPE_RGB24;
// Set the Media Type
pGrabber->SetMediaType(&mt);
pGrabber->SetBufferSamples(TRUE);
hr = pBuilder->RenderStream(&PIN_CATEGORY_CAPTURE, &MEDIATYPE_Video, pVideoCap, NULL, pGrabberF);
hr = pBuilder->RenderStream(&PIN_CATEGORY_PREVIEW, &MEDIATYPE_Video, pVideoCap, NULL, NULL);
hr = pGraph->QueryInterface(IID_IVideoWindow, (void **)&pVideoWindow);
if(hr == NOERROR) {
pVideoWindow->put_Owner((OAHWND)hWnd);
pVideoWindow->put_WindowStyle(WS_CHILD | WS_CLIPSIBLINGS);
IBasicVideo *pBasicVideo;
hr = pGraph->QueryInterface(IID_IBasicVideo, (void **)&pBasicVideo);
if(hr == NOERROR) {
LONG lWidth = 0;
LONG lHeight = 0;
hr = pBasicVideo->GetVideoSize(&lWidth, &lHeight);
pBasicVideo->put_SourceWidth(lHeight / ASPECT_RATIO);
pBasicVideo->Release();
}
RECT rc;
GetClientRect(hWnd, &rc);
pVideoWindow->SetWindowPosition(0, 0, rc.right, rc.bottom);
pVideoWindow->put_Visible(OATRUE);
}
// Create the Null Renderer Filter.
hr = CoCreateInstance(CLSID_NullRenderer, NULL, CLSCTX_INPROC_SERVER,
IID_IBaseFilter, reinterpret_cast<void**>(&pNull));
if (FAILED(hr)) {
// printf("ERROR - Could not create the Null Renderer Filter.");
FreeMediaType(mt);
pVideoWindow->Release();
pGrabber->Release();
pGrabberF->Release();
pVideoCap->Release();
pBuilder->Release();
pGraph->Release();
pGraph = NULL;
CoUninitialize();
#ifdef _DEBUG
fclose( stream );
#endif
// return hr;
return;
}
hr = pGraph->AddFilter(pNull, L"NullRenderer");
if (FAILED(hr)) {
// printf("ERROR - Could not add the Null Renderer Filter.");
FreeMediaType(mt);
pNull->Release();
pVideoWindow->Release();
pGrabber->Release();
pGrabberF->Release();
pVideoCap->Release();
pBuilder->Release();
pGraph->Release();
pGraph = NULL;
CoUninitialize();
#ifdef _DEBUG
fclose( stream );
#endif
return;
}
hr = ConnectFilters(pGraph, pGrabberF, pNull);
//#ifdef _DEBUG
// fprintf(stream, "Return code: is %d\n", hr);
//#endif
// Run the graph.
IMediaControl *pMC = NULL;
hr = pGraph->QueryInterface(IID_IMediaControl, (void **)&pMC);
if(SUCCEEDED(hr)) {
hr = pMC->Run();
pMC->Release();
}
#ifdef _DEBUG
// Before we finish, save the filter graph to a file.
SaveGraphFile(pGraph, L"C:\\MyGraph.GRF");
#endif
return;
}
//************************************************************************************
long GRABIMAGE_API __stdcall MakeOneShot(void) {
if (pGraph == NULL)
return 0;
// Set one-shot mode and buffering.
pGrabber->SetOneShot(TRUE);
// stop the graph
IMediaControl *pMC = NULL;
hr = pGraph->QueryInterface(IID_IMediaControl, (void **)&pMC);
if(SUCCEEDED(hr))
{
hr = pMC->Stop();
pMC->Release();
}
// Grab the Sample
// Find the required buffer size.
long cbBuffer = 0;
hr = pGrabber->GetCurrentBuffer(&cbBuffer, NULL);
// fprintf(stream, "Buffer length is %d\n", cbBuffer);
if (cbBuffer <= 0) {
// printf("ERROR - Could not get connected media type.");
FreeMediaType(mt);
pNull->Release();
pVideoWindow->Release();
pGrabber->Release();
pGrabberF->Release();
pVideoCap->Release();
pBuilder->Release();
pGraph->Release();
pGraph = NULL;
CoUninitialize();
#ifdef _DEBUG
fclose( stream );
#endif
return 0;
}
hr = pGrabber->GetConnectedMediaType(&mt);
if (FAILED(hr)) {
// printf("ERROR - Could not get connected media type.");
FreeMediaType(mt);
pNull->Release();
pVideoWindow->Release();
pGrabber->Release();
pGrabberF->Release();
pVideoCap->Release();
pBuilder->Release();
pGraph->Release();
pGraph = NULL;
CoUninitialize();
#ifdef _DEBUG
fclose( stream );
#endif
return 0;
}
// Examine the format block.
VIDEOINFOHEADER *pVih;
if ((mt.formattype == FORMAT_VideoInfo) &&
(mt.cbFormat >= sizeof(VIDEOINFOHEADER)) &&
(mt.pbFormat != NULL) ) {
pVih = (VIDEOINFOHEADER*)mt.pbFormat;
} else {
// Wrong format. Free the format block and return an error.
// printf("ERROR - Wrong format.");
FreeMediaType(mt);
pNull->Release();
pVideoWindow->Release();
pGrabber->Release();
pGrabberF->Release();
pVideoCap->Release();
pBuilder->Release();
pGraph->Release();
pGraph = NULL;
CoUninitialize();
#ifdef _DEBUG
fclose( stream );
#endif
return 0;
}
pVih->bmiHeader.biWidth = pVih->bmiHeader.biHeight / ASPECT_RATIO;
int newStride = ((pVih->bmiHeader.biWidth + 3) & ~3) * pVih->bmiHeader.biBitCount / 8;
pVih->bmiHeader.biSizeImage = newStride * pVih->bmiHeader.biHeight;
DWORD bfSize = (DWORD) (sizeof(BITMAPFILEHEADER) +
pVih->bmiHeader.biSize +
pVih->bmiHeader.biClrUsed * sizeof(RGBQUAD) +
pVih->bmiHeader.biSizeImage);
/*
DWORD bfSize = (DWORD) (sizeof(BITMAPFILEHEADER) +
pVih->bmiHeader.biSize +
pVih->bmiHeader.biClrUsed * sizeof(RGBQUAD) +
cbBuffer);
*/
return bfSize;
}
//************************************************************************************
//void GRABIMAGE_API __stdcall GetBitmap(LPBYTE lpBitsPB) {
void GRABIMAGE_API __stdcall TakeSnap(char* fileName) {
long cbBuffer = 0;
hr = pGrabber->GetCurrentBuffer(&cbBuffer, NULL);
// fprintf(stream, "Buffer length is %d\n", cbBuffer);
char *pBuffer = new char[cbBuffer];
char *pBuffOrg = pBuffer;
if (!pBuffer) {
// Out of memory.
// printf("ERROR - Out of memory.");
FreeMediaType(mt);
pNull->Release();
pVideoWindow->Release();
pGrabber->Release();
pGrabberF->Release();
pVideoCap->Release();
pBuilder->Release();
pGraph->Release();
pGraph = NULL;
CoUninitialize();
#ifdef _DEBUG
fclose( stream );
#endif
return;
}
hr = pGrabber->GetCurrentBuffer(&cbBuffer, (long*)pBuffer);
hr = pGrabber->GetConnectedMediaType(&mt);
if (FAILED(hr)) {
// printf("ERROR - Could not get connected media type.");
FreeMediaType(mt);
pNull->Release();
pVideoWindow->Release();
pGrabber->Release();
pGrabberF->Release();
pVideoCap->Release();
pBuilder->Release();
pGraph->Release();
pGraph = NULL;
CoUninitialize();
#ifdef _DEBUG
fclose( stream );
#endif
return;
}
// Examine the format block.
VIDEOINFOHEADER *pVih;
if ((mt.formattype == FORMAT_VideoInfo) &&
(mt.cbFormat >= sizeof(VIDEOINFOHEADER)) &&
(mt.pbFormat != NULL) ) {
pVih = (VIDEOINFOHEADER*)mt.pbFormat;
} else {
// Wrong format. Free the format block and return an error.
// printf("ERROR - Wrong format.");
FreeMediaType(mt);
pNull->Release();
pVideoWindow->Release();
pGrabber->Release();
pGrabberF->Release();
pVideoCap->Release();
pBuilder->Release();
pGraph->Release();
pGraph = NULL;
CoUninitialize();
#ifdef _DEBUG
fclose( stream );
#endif
return;
}
BITMAPFILEHEADER hdr; // bitmap file-header
hdr.bfType = 0x4d42; // 0x42 = "B" 0x4d = "M"
// Compute the size of the entire file.
// (Round the image width up to a DWORD boundary.)
int origStride = ((pVih->bmiHeader.biWidth + 3) & ~3) * pVih->bmiHeader.biBitCount / 8;
pVih->bmiHeader.biWidth = pVih->bmiHeader.biHeight / ASPECT_RATIO;
int newStride = ((pVih->bmiHeader.biWidth + 3) & ~3) * pVih->bmiHeader.biBitCount / 8;
pVih->bmiHeader.biSizeImage = newStride * pVih->bmiHeader.biHeight;
hdr.bfSize = (DWORD) (sizeof(BITMAPFILEHEADER) +
pVih->bmiHeader.biSize +
pVih->bmiHeader.biClrUsed * sizeof(RGBQUAD) +
pVih->bmiHeader.biSizeImage);
/*
hdr.bfSize = (DWORD) (sizeof(BITMAPFILEHEADER) +
pVih->bmiHeader.biSize +
pVih->bmiHeader.biClrUsed * sizeof(RGBQUAD) +
cbBuffer);
*/
hdr.bfReserved1 = 0;
hdr.bfReserved2 = 0;
// Compute the offset to the array of color indices.
hdr.bfOffBits = (DWORD) sizeof(BITMAPFILEHEADER) +
pVih->bmiHeader.biSize +
pVih->bmiHeader.biClrUsed * sizeof(RGBQUAD);
LPBYTE lpBits = (LPBYTE) GlobalAlloc(GMEM_FIXED, hdr.bfSize);
LPBYTE lpBuff = lpBits;
memcpy (lpBuff, &hdr, sizeof(BITMAPFILEHEADER));
lpBuff += sizeof(BITMAPFILEHEADER);
memcpy (lpBuff, &pVih->bmiHeader, sizeof(BITMAPINFOHEADER));
lpBuff += sizeof(BITMAPINFOHEADER);
// memcpy (lpBuff, pBuffer, cbBuffer);
for (int i = 0; i < pVih->bmiHeader.biHeight; i++) {
memcpy (lpBuff, pBuffer, newStride);
lpBuff += newStride;
pBuffer += origStride;
}
// memcpy (lpBitsPB, lpBits, hdr.bfSize);
//#ifdef _DEBUG
HANDLE hf; // file handle
DWORD dwTmp;
// Create the .BMP file.
hf = CreateFile(fileName,
GENERIC_READ | GENERIC_WRITE,
(DWORD) 0,
NULL,
CREATE_ALWAYS,
FILE_ATTRIBUTE_NORMAL,
(HANDLE) NULL);
// Copy the array of color indices into the .BMP file.
WriteFile(hf, (LPSTR) lpBits, (int) hdr.bfSize, (LPDWORD) &dwTmp, NULL);
// Close the .BMP file.
CloseHandle(hf);
//#endif
GlobalFree((HGLOBAL)lpBits);
delete[] pBuffOrg;
DestroyGraph();
}
//************************************************************************************
void GRABIMAGE_API __stdcall DestroyGraph(void) {
if (pGraph != NULL) {
// hr = pGraph->Abort();
/*
// Set one-shot mode and buffering.
pGrabber->SetOneShot(TRUE);
*/
// stop the graph
IMediaControl *pMC = NULL;
hr = pGraph->QueryInterface(IID_IMediaControl, (void **)&pMC);
if(SUCCEEDED(hr)) {
hr = pMC->Stop();
pMC->Release();
}
FreeMediaType(mt);
pNull->Release();
pVideoWindow->Release();
pGrabber->Release();
pGrabberF->Release();
pVideoCap->Release();
pBuilder->Release();
pGraph->Release();
pGraph = NULL;
CoUninitialize();
#ifdef _DEBUG
fclose( stream );
#endif
}
}
/*
// This is the constructor of a class that has been exported.
// see GrabImage.h for the class definition
CGrabImage::CGrabImage()
{
return;
}
*/