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
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
/**
* @class vtkWin32VideoSource
* @brief Video-for-Windows video digitizer
*
* vtkWin32VideoSource grabs frames or streaming video from a
* Video for Windows compatible device on the Win32 platform.
* @warning
* With some capture cards, if this class is leaked and ReleaseSystemResources
* is not called, you may have to reboot before you can capture again.
* vtkVideoSource used to keep a global list and delete the video sources
* if your program leaked, due to exit crashes that was removed.
*
* @sa
* vtkVideoSource vtkMILVideoSource
*/
#ifndef vtkWin32VideoSource_h
#define vtkWin32VideoSource_h
#include "vtkIOVideoModule.h" // For export macro
#include "vtkVideoSource.h"
VTK_ABI_NAMESPACE_BEGIN
class vtkWin32VideoSourceInternal;
class VTKIOVIDEO_EXPORT vtkWin32VideoSource : public vtkVideoSource
{
public:
static vtkWin32VideoSource* New();
vtkTypeMacro(vtkWin32VideoSource, vtkVideoSource);
void PrintSelf(ostream& os, vtkIndent indent) override;
/**
* Standard VCR functionality: Record incoming video.
*/
void Record() override;
/**
* Standard VCR functionality: Play recorded video.
*/
void Play() override;
/**
* Standard VCR functionality: Stop recording or playing.
*/
void Stop() override;
/**
* Grab a single video frame.
*/
void Grab() override;
///@{
/**
* Request a particular frame size (set the third value to 1).
*/
void SetFrameSize(int x, int y, int z) override;
void SetFrameSize(int dim[3]) override { this->SetFrameSize(dim[0], dim[1], dim[2]); }
///@}
/**
* Request a particular frame rate (default 30 frames per second).
*/
void SetFrameRate(float rate) override;
/**
* Request a particular output format (default: VTK_RGB).
*/
void SetOutputFormat(int format) override;
///@{
/**
* Turn on/off the preview (overlay) window.
*/
void SetPreview(int p);
vtkBooleanMacro(Preview, int);
vtkGetMacro(Preview, int);
///@}
/**
* Bring up a modal dialog box for video format selection.
*/
void VideoFormatDialog();
/**
* Bring up a modal dialog box for video input selection.
*/
void VideoSourceDialog();
/**
* Initialize the driver (this is called automatically when the
* first grab is done).
*/
void Initialize() override;
/**
* Free the driver (this is called automatically inside the
* destructor).
*/
void ReleaseSystemResources() override;
///@{
/**
* For internal use only
*/
void LocalInternalGrab(void*);
void OnParentWndDestroy();
///@}
protected:
vtkWin32VideoSource();
~vtkWin32VideoSource() override;
char WndClassName[16];
int BitMapSize;
int Preview;
vtkWin32VideoSourceInternal* Internal;
void CheckBuffer();
void UnpackRasterLine(char* outptr, char* inptr, int start, int count) override;
void DoVFWFormatSetup();
void DoVFWFormatCheck();
private:
vtkWin32VideoSource(const vtkWin32VideoSource&) = delete;
void operator=(const vtkWin32VideoSource&) = delete;
};
VTK_ABI_NAMESPACE_END
#endif
|