| Line2DFitSize Method |
Fits this line to the specified size (for drawing)
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public void FitSize(
int width,
int height,
out Point pt1,
out Point pt2
)
Public Sub FitSize (
width As Integer,
height As Integer,
<OutAttribute> ByRef pt1 As Point,
<OutAttribute> ByRef pt2 As Point
)
public:
void FitSize(
int width,
int height,
[OutAttribute] Point% pt1,
[OutAttribute] Point% pt2
)
member FitSize :
width : int *
height : int *
pt1 : Point byref *
pt2 : Point byref -> unit
Parameters
- width
- Type: SystemInt32
Width of fit size - height
- Type: SystemInt32
Height of fit size - pt1
- Type: OpenCvSharpPoint
1st edge point of fitted line - pt2
- Type: OpenCvSharpPoint
2nd edge point of fitted line
See Also