Hello,
I am trying to process an image captured from a frame grabber card without converting any image format (like jpg or bmp cuz it wastes lots of times about 50ms)
For video applications Captured data kept in buffer with method like;
unsafe private void genericFilter1_ ProcessData(obj ect Sender, Mitov.VideoLab. VideoProcessDat aEventArgs Args)
{
byte* Vid_Buffer = Args.InBuffer.R ead();
...
....
and to pocess image i have a mothod like;
gxImage image = new gxImage("defaul t");
image.LoadFromM em(byte[] Buffer);
How can i assign Byte array to the address that Vid_buffer points??
I ll appriciate ur help.
Regards..
I am trying to process an image captured from a frame grabber card without converting any image format (like jpg or bmp cuz it wastes lots of times about 50ms)
For video applications Captured data kept in buffer with method like;
unsafe private void genericFilter1_ ProcessData(obj ect Sender, Mitov.VideoLab. VideoProcessDat aEventArgs Args)
{
byte* Vid_Buffer = Args.InBuffer.R ead();
...
....
and to pocess image i have a mothod like;
gxImage image = new gxImage("defaul t");
image.LoadFromM em(byte[] Buffer);
How can i assign Byte array to the address that Vid_buffer points??
I ll appriciate ur help.
Regards..