C# 클래스 Emgu.CV.StereoGC

Use Graph Cut algorithm to find stereo correspondence
상속: DisposableObject
파일 보기 프로젝트 열기: fajoy/RTSPExample 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
State Emgu.CV.Structure.MCvStereoGCState

공개 메소드들

메소드 설명
FindStereoCorrespondence ( Byte>.Image left, Byte>.Image right, Int16>.Image leftDisparity, Int16>.Image rightDisparity ) : void

Computes disparity map for the input rectified stereo pair.

StereoGC ( int numberOfDisparities, int maxIters ) : System

Creates the stereo correspondence state and initializes it.

보호된 메소드들

메소드 설명
DisposeObject ( ) : void

Release the stereo state and all the memory associate with it

메소드 상세

DisposeObject() 보호된 메소드

Release the stereo state and all the memory associate with it
protected DisposeObject ( ) : void
리턴 void

FindStereoCorrespondence() 공개 메소드

Computes disparity map for the input rectified stereo pair.
public FindStereoCorrespondence ( Byte>.Image left, Byte>.Image right, Int16>.Image leftDisparity, Int16>.Image rightDisparity ) : void
left Byte>.Image The left single-channel, 8-bit image
right Byte>.Image The right image of the same size and the same type
leftDisparity Int16>.Image The optional output single-channel 16-bit signed left disparity map of the same size as input images.
rightDisparity Int16>.Image The optional output single-channel 16-bit signed right disparity map of the same size as input images
리턴 void

StereoGC() 공개 메소드

Creates the stereo correspondence state and initializes it.
public StereoGC ( int numberOfDisparities, int maxIters ) : System
numberOfDisparities int The number of disparities. The disparity search range will be state.minDisparity <= disparity < state.minDisparity + state.numberOfDisparities
maxIters int Maximum number of iterations. On each iteration all possible (or reasonable) alpha-expansions are tried. The algorithm may terminate earlier if it could not find an alpha-expansion that decreases the overall cost function value
리턴 System

프로퍼티 상세

State 공개적으로 프로퍼티

The state structure
public MCvStereoGCState,Emgu.CV.Structure State
리턴 Emgu.CV.Structure.MCvStereoGCState