|
Revision 32745, 1.4 kB
(checked in by schima, 4 years ago)
|
|
minor updates
|
| Line | |
|---|
| 1 | using System;
|
|---|
| 2 | using System.Collections.Generic;
|
|---|
| 3 | using System.Linq;
|
|---|
| 4 | using System.Text;
|
|---|
| 5 | using KwsmLab.OpenCvSharp.Extern;
|
|---|
| 6 |
|
|---|
| 7 | namespace KwsmLab.OpenCvSharp
|
|---|
| 8 | {
|
|---|
| 9 | #if LANG_JP
|
|---|
| 10 | /// <summary>
|
|---|
| 11 | /// 輪郭の近似手法
|
|---|
| 12 | /// </summary>
|
|---|
| 13 | #else
|
|---|
| 14 | /// <summary>
|
|---|
| 15 | /// The operation flags of cvStereoRectify
|
|---|
| 16 | /// </summary>
|
|---|
| 17 | #endif
|
|---|
| 18 | public enum StereoRectificationFlag : int
|
|---|
| 19 | {
|
|---|
| 20 | #if LANG_JP
|
|---|
| 21 | /// <summary>
|
|---|
| 22 | /// フラグなし (=0).
|
|---|
| 23 | /// 利用できる画像領域が最大になるように(エピポーラ線の傾きに従って)片方の画像を水平・垂直方向に移動する.
|
|---|
| 24 | /// </summary>
|
|---|
| 25 | #else
|
|---|
| 26 | /// <summary>
|
|---|
| 27 | /// Default value (=0).
|
|---|
| 28 | /// the function can shift one of the image in horizontal or vertical direction (depending on the orientation of epipolar lines) in order to maximise the useful image area.
|
|---|
| 29 | /// </summary>
|
|---|
| 30 | #endif
|
|---|
| 31 | Default = 0,
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 | #if LANG_JP
|
|---|
| 35 | /// <summary>
|
|---|
| 36 | /// 平行化後のビューにおいて各カメラの主点(光学中心)が同じ座標になるようにする.
|
|---|
| 37 | /// [CV_CALIB_ZERO_DISPARITY]
|
|---|
| 38 | /// </summary>
|
|---|
| 39 | #else
|
|---|
| 40 | /// <summary>
|
|---|
| 41 | /// the function makes the principal points of each camera have the same pixel coordinates in the rectified views.
|
|---|
| 42 | /// [CV_CALIB_ZERO_DISPARITY]
|
|---|
| 43 | /// </summary>
|
|---|
| 44 | #endif
|
|---|
| 45 | ZeroDisparity = CvConst.CV_CALIB_ZERO_DISPARITY_,
|
|---|
| 46 | };
|
|---|
| 47 | } |
|---|