Ejemplo n.º 1
0
 public CVImageWithCapabilities(int width, int height, CVDepth depth, int channels) : base(width, height, depth, channels)
 {
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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)
 {
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 6
0
 public CVImage(int width, int height, CVDepth depth, int channels)
 {
     Create(width, height, depth, channels);
 }