Browse Source

git-svn-id: https://emgucv.svn.sourceforge.net/svnroot/emgucv/trunk@279 d7f09016-e345-0410-b530-edf29a71df78

UWP10
canming 17 years ago
parent
commit
125be546c8
  1. 2
      Emgu.CV/CameraCalibration/CameraCalibration.cs
  2. 4
      Emgu.CV/UI/ImageBox.cs

2
Emgu.CV/CameraCalibration/CameraCalibration.cs

@ -91,7 +91,7 @@ namespace Emgu.CV
public static void StereoCalibrate(Point3D<float>[][] objectPoints, Point2D<float>[][] imagePoints1, Point2D<float>[][] imagePoints2, IntrinsicCameraParameters intrinsicParam1, IntrinsicCameraParameters intrinsicParam2, ref MCvSize imageSize, CvEnum.CALIB_TYPE flags, ref MCvTermCriteria termCrit, out ExtrinsicCameraParameters extrinsicParams, out Matrix<float> foundamentalMatrix, out Matrix<float> essentialMatrix )
{
Debug.Assert(objectPoints.Length == imagePoints1.Length && objectPoints.Length == imagePoints2.Length, "The number of images for objects points should be equal to the number of images for image points");
int imageCount = objectPoints.Length;
//int imageCount = objectPoints.Length;
#region get the matrix that represent the object points
List<Point<float>> objectPointList = new List<Point<float>>();

4
Emgu.CV/UI/ImageBox.cs

@ -182,8 +182,8 @@ namespace Emgu.CV.UI
private void BuildOperationMenuItem(IImage image)
{
operationsToolStripMenuItem.DropDownItems.Clear();
List<KeyValuePair<String, MethodInfo>> l = new List<KeyValuePair<string,MethodInfo>>( Reflection.ReflectIImage.GetImageMethods(image));
int n = l.Count;
//List<KeyValuePair<String, MethodInfo>> l = new List<KeyValuePair<string,MethodInfo>>( Reflection.ReflectIImage.GetImageMethods(image));
//int n = l.Count;
operationsToolStripMenuItem.DropDownItems.AddRange(
BuildOperationTree( Reflection.ReflectIImage.GetImageMethods(image)));

Loading…
Cancel
Save