Emgu CV 1.5 Upgrade Instructions: Difference between revisions
Jump to navigation
Jump to search
DonaldBaker (talk | contribs) No edit summary |
m Undo revision 1703 by DonaldBaker (talk) Spam |
||
Line 10: | Line 10: | ||
* Replace Circle<TDepth> with CircleF | * Replace Circle<TDepth> with CircleF | ||
* Include Emgu.CV.Structure namespace for codes that use Managed [[OpenCV]] structures (MCv***). | * Include Emgu.CV.Structure namespace for codes that use Managed [[OpenCV]] structures (MCv***). | ||
Latest revision as of 11:45, 22 January 2013
Upgrading from Emgu CV 1.4 to 1.5
The following steps must be performed to upgrade from Emgu CV 1.4 to 1.5:
- Replace Point2D<int> and MCvPoint with System.Drawing.Point
- Replace Point2D<float> and MCvPoint2D32F with System.Drawing.PointF
- Replace Point2D<double> with MCvPoint2D64F
- Replace MCvSize with System.Drawing.Size
- Replace Rectangle<TDepth> with System.Drawing.Rectangle.
- Replace LineSegment2D<int> with LineSegment2D
- Replace LineSegment2D<float> with LineSegment2DF
- Replace Circle<TDepth> with CircleF
- Include Emgu.CV.Structure namespace for codes that use Managed OpenCV structures (MCv***).