我有一个简单的问题:我需要在平板电脑上切换两个相机。正面和背面。默认情况下,前置摄像头始终由Emgu CV使用。
感谢。
答案 0 :(得分:0)
确定。有一个不同的构造函数。我正在建立Emgu CV的7线演示。
使用正确的重载构造函数,这就是我的诀窍:
private Capture _capture;
private void InitCapture(Int32 _camIndex) {
try {
if (_capture != null) {
Application.Idle -= ProcessFrame;
}
_capture = new Capture(_camIndex);
Application.Idle += ProcessFrame;
}
catch (NullReferenceException excpt) {
XtraMessageBox.Show(excpt.Message);
}
}
private void ProcessFrame(object sender, EventArgs arg) {
Image<Bgr, Byte> frame = _capture.QueryFrame();
ImageBoxCapture.Image = frame;
}
private void CharmsBarBase_ButtonTop01Click(object sender, EventArgs e) {
InitCapture(0);
}
private void CharmsBarBase_ButtonTop02Click(object sender, EventArgs e) {
InitCapture(1);
}
问候。