Capture a Bgr image frame that is half width and half height. Mainly used by WCF when sending image to remote locations in a band width conservertive senario

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public virtual Image<Bgr, byte> QuerySmallFrame()
Visual Basic (Declaration)
Public Overridable Function QuerySmallFrame As Image(Of Bgr, Byte)
Visual C++
public:
virtual Image<Bgr, unsigned char>^ QuerySmallFrame()

Return Value

A Bgr image frame that is half width and half height

Implements

ICapture..::.QuerySmallFrame()()()

Remarks

Internally, this is a cvQueryFrame operation follow by a cvPyrDown

See Also