コード例 #1
0
 public CVImageWithCapabilities(int width, int height, CVDepth depth, int channels) : base(width, height, depth, channels)
 {
 }
コード例 #2
0
 private void Create(int width, int height, CVDepth depth, int channels)
 {
     image = PInvoke.cvCreateImage(new __CvSize(width, height), (int)depth, channels);
     CVUtils.CheckLastError();
     created = true;
 }
コード例 #3
0
 public CVImage(int width, int height, CVDepth depth, int channels)
 {
     Create(width, height, depth, channels);
 }
コード例 #4
0
 public CVImageWithCapabilities(int width, int height, CVDepth depth, int channels)
     : base(width, height, depth, channels)
 {
 }
コード例 #5
0
ファイル: CVImage.cs プロジェクト: ashersyed/opencvdotnet
 private void Create(int width, int height, CVDepth depth, int channels)
 {
     image = PInvoke.cvCreateImage(new __CvSize(width, height), (int) depth,  channels);
     CVUtils.CheckLastError();
     created = true;
 }
コード例 #6
0
ファイル: CVImage.cs プロジェクト: ashersyed/opencvdotnet
 public CVImage(int width, int height, CVDepth depth, int channels)
 {
     Create(width, height, depth, channels);
 }