F
FCBfreak
Is it possibly to apply filters to captured images under the .NET
Compact Framework?
I would like to port an existing C# managed application (full .NET
Framework) to a WinCE embedded development board (which only
supports .NET Compact Framework).
Captured images from webcam device are being loaded into memory and
the developed application then converts these images (image processing
by using gaussian filter etc.) into perceptible audio signals, which
point out the direction of the target.
But as I'm seeing it now, implementing a gaussian filter to smooth out
irrelevant parts in the captured frames requires the namespace
"System.Drawing.Imaging" (to edit images and save information in
bitmaps), this namespace is available when using the complete .NET
Framework, but isn't supported in the .NET Compact Framework.
Maybe I can use the p/invoke method (managed code calling unmanaged
code) to apply image filtering?
Compact Framework?
I would like to port an existing C# managed application (full .NET
Framework) to a WinCE embedded development board (which only
supports .NET Compact Framework).
Captured images from webcam device are being loaded into memory and
the developed application then converts these images (image processing
by using gaussian filter etc.) into perceptible audio signals, which
point out the direction of the target.
But as I'm seeing it now, implementing a gaussian filter to smooth out
irrelevant parts in the captured frames requires the namespace
"System.Drawing.Imaging" (to edit images and save information in
bitmaps), this namespace is available when using the complete .NET
Framework, but isn't supported in the .NET Compact Framework.
Maybe I can use the p/invoke method (managed code calling unmanaged
code) to apply image filtering?