Browse Source

Implement RenderMethod for CharucoCameraCalibrationModel

EMGUCV_5_0
Canming Huang 2 years ago
parent
commit
69de455d15
  1. 12
      Emgu.CV.Models/CharucoCameraCalibrationModel.cs

12
Emgu.CV.Models/CharucoCameraCalibrationModel.cs

@ -68,6 +68,17 @@ namespace Emgu.CV.Models
Clear();
}
/// <summary>
/// The rendering method
/// </summary>
public RenderType RenderMethod
{
get
{
return RenderType.Overwrite;
}
}
/// <summary>
/// Clear and reset the model. Required Init function to be called again before calling ProcessAndRender.
/// </summary>
@ -258,6 +269,7 @@ namespace Emgu.CV.Models
{
imageInMat.CopyTo(imageOut);
//DetectorParameters p = DetectorParameters.GetDefault();
ArucoInvoke.DetectMarkers(imageIn, ArucoDictionary, corners, ids, _detectorParameters, rejected);
if (ids.Size > 0)

Loading…
Cancel
Save