HomeSort by relevance Sort by last modified time
    Searched defs:_channels (Results 1 - 20 of 20) sorted by null

  /external/opencv3/3rdparty/openexr/IlmImf/
ImfB44Compressor.h 107 const ChannelList & _channels; member in class:Imf::B44Compressor
ImfPizCompressor.h 105 const ChannelList & _channels; member in class:Imf::PizCompressor
ImfPxr24Compressor.h 99 const ChannelList & _channels; member in class:Imf::Pxr24Compressor
  /external/opencv3/modules/core/misc/java/src/java/
core+MatOfByte.java 9 private static final int _channels = 1; field in class:MatOfByte
17 if( !empty() && checkVector(_channels, _depth) < 0 )
28 if( !empty() && checkVector(_channels, _depth) < 0 )
40 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
46 int num = a.length / _channels;
52 int num = checkVector(_channels, _depth);
55 byte[] a = new byte[num * _channels];
core+MatOfDMatch.java 11 private static final int _channels = 4; field in class:MatOfDMatch
19 if( !empty() && checkVector(_channels, _depth) < 0 )
30 if( !empty() && checkVector(_channels, _depth) < 0 )
42 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
51 float buff[] = new float[num * _channels];
54 buff[_channels*i+0] = m.queryIdx;
55 buff[_channels*i+1] = m.trainIdx;
56 buff[_channels*i+2] = m.imgIdx;
57 buff[_channels*i+3] = m.distance;
67 float buff[] = new float[num * _channels];
    [all...]
core+MatOfDouble.java 9 private static final int _channels = 1; field in class:MatOfDouble
17 if( !empty() && checkVector(_channels, _depth) < 0 )
28 if( !empty() && checkVector(_channels, _depth) < 0 )
40 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
46 int num = a.length / _channels;
52 int num = checkVector(_channels, _depth);
55 double[] a = new double[num * _channels];
core+MatOfFloat.java 9 private static final int _channels = 1; field in class:MatOfFloat
17 if( !empty() && checkVector(_channels, _depth) < 0 )
28 if( !empty() && checkVector(_channels, _depth) < 0 )
40 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
46 int num = a.length / _channels;
52 int num = checkVector(_channels, _depth);
55 float[] a = new float[num * _channels];
core+MatOfFloat4.java 9 private static final int _channels = 4; field in class:MatOfFloat4
17 if( !empty() && checkVector(_channels, _depth) < 0 )
28 if( !empty() && checkVector(_channels, _depth) < 0 )
40 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
46 int num = a.length / _channels;
52 int num = checkVector(_channels, _depth);
55 float[] a = new float[num * _channels];
core+MatOfFloat6.java 9 private static final int _channels = 6; field in class:MatOfFloat6
17 if( !empty() && checkVector(_channels, _depth) < 0 )
28 if( !empty() && checkVector(_channels, _depth) < 0 )
40 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
46 int num = a.length / _channels;
52 int num = checkVector(_channels, _depth);
55 float[] a = new float[num * _channels];
core+MatOfInt.java 10 private static final int _channels = 1; field in class:MatOfInt
18 if( !empty() && checkVector(_channels, _depth) < 0 )
29 if( !empty() && checkVector(_channels, _depth) < 0 )
41 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
47 int num = a.length / _channels;
53 int num = checkVector(_channels, _depth);
56 int[] a = new int[num * _channels];
core+MatOfInt4.java 10 private static final int _channels = 4; field in class:MatOfInt4
18 if( !empty() && checkVector(_channels, _depth) < 0 )
29 if( !empty() && checkVector(_channels, _depth) < 0 )
41 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
47 int num = a.length / _channels;
53 int num = checkVector(_channels, _depth);
56 int[] a = new int[num * _channels];
core+MatOfKeyPoint.java 11 private static final int _channels = 7; field in class:MatOfKeyPoint
19 if( !empty() && checkVector(_channels, _depth) < 0 )
30 if( !empty() && checkVector(_channels, _depth) < 0 )
42 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
50 float buff[] = new float[num * _channels];
53 buff[_channels*i+0] = (float) kp.pt.x;
54 buff[_channels*i+1] = (float) kp.pt.y;
55 buff[_channels*i+2] = kp.size;
56 buff[_channels*i+3] = kp.angle;
57 buff[_channels*i+4] = kp.response
    [all...]
core+MatOfPoint.java 9 private static final int _channels = 2; field in class:MatOfPoint
17 if( !empty() && checkVector(_channels, _depth) < 0 )
28 if( !empty() && checkVector(_channels, _depth) < 0 )
40 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
48 int buff[] = new int[num * _channels];
51 buff[_channels*i+0] = (int) p.x;
52 buff[_channels*i+1] = (int) p.y;
62 int buff[] = new int[num * _channels];
65 ap[i] = new Point(buff[i*_channels], buff[i*_channels+1])
    [all...]
core+MatOfPoint2f.java 9 private static final int _channels = 2; field in class:MatOfPoint2f
17 if( !empty() && checkVector(_channels, _depth) < 0 )
28 if( !empty() && checkVector(_channels, _depth) < 0 )
40 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
48 float buff[] = new float[num * _channels];
51 buff[_channels*i+0] = (float) p.x;
52 buff[_channels*i+1] = (float) p.y;
62 float buff[] = new float[num * _channels];
65 ap[i] = new Point(buff[i*_channels], buff[i*_channels+1])
    [all...]
core+MatOfPoint3.java 9 private static final int _channels = 3; field in class:MatOfPoint3
17 if( !empty() && checkVector(_channels, _depth) < 0 )
28 if( !empty() && checkVector(_channels, _depth) < 0 )
40 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
48 int buff[] = new int[num * _channels];
51 buff[_channels*i+0] = (int) p.x;
52 buff[_channels*i+1] = (int) p.y;
53 buff[_channels*i+2] = (int) p.z;
63 int buff[] = new int[num * _channels];
66 ap[i] = new Point3(buff[i*_channels], buff[i*_channels+1], buff[i*_channels+2])
    [all...]
core+MatOfPoint3f.java 9 private static final int _channels = 3; field in class:MatOfPoint3f
17 if( !empty() && checkVector(_channels, _depth) < 0 )
28 if( !empty() && checkVector(_channels, _depth) < 0 )
40 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
48 float buff[] = new float[num * _channels];
51 buff[_channels*i+0] = (float) p.x;
52 buff[_channels*i+1] = (float) p.y;
53 buff[_channels*i+2] = (float) p.z;
63 float buff[] = new float[num * _channels];
66 ap[i] = new Point3(buff[i*_channels], buff[i*_channels+1], buff[i*_channels+2])
    [all...]
core+MatOfRect.java 10 private static final int _channels = 4; field in class:MatOfRect
18 if( !empty() && checkVector(_channels, _depth) < 0 )
29 if( !empty() && checkVector(_channels, _depth) < 0 )
41 super.create(elemNumber, 1, CvType.makeType(_depth, _channels));
49 int buff[] = new int[num * _channels];
52 buff[_channels*i+0] = (int) r.x;
53 buff[_channels*i+1] = (int) r.y;
54 buff[_channels*i+2] = (int) r.width;
55 buff[_channels*i+3] = (int) r.height;
66 int buff[] = new int[num * _channels];
    [all...]
  /external/opencv3/modules/imgcodecs/src/
grfmt_pxm.cpp 375 int _channels = img.channels(), depth = (int)img.elemSize1()*8; local
376 int channels = _channels > 1 ? 3 : 1;
424 if( _channels == 3 )
437 if( _channels == 1 )
grfmt_jpeg.cpp 595 int _channels = img.channels(); local
596 int channels = _channels > 1 ? 3 : 1;
692 if( _channels == 3 )
697 else if( _channels == 4 )
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 126 milliseconds