Пример #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);
 }
 public CVImageWithCapabilities(int width, int height, CVDepth depth, int channels)
     : base(width, height, depth, channels)
 {
 }
Пример #5
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;
 }
Пример #6
0
 public CVImage(int width, int height, CVDepth depth, int channels)
 {
     Create(width, height, depth, channels);
 }