Searched defs:_channels (Results 1 - 20 of 20) sorted by relevance

/external/opencv3/3rdparty/openexr/IlmImf/
H A DImfB44Compressor.h107 const ChannelList & _channels; member in class:Imf::B44Compressor
H A DImfPizCompressor.h105 const ChannelList & _channels; member in class:Imf::PizCompressor
H A DImfPxr24Compressor.h99 const ChannelList & _channels; member in class:Imf::Pxr24Compressor
/external/opencv3/modules/core/misc/java/src/java/
H A Dcore+MatOfByte.java9 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];
H A Dcore+MatOfDMatch.java11 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...]
H A Dcore+MatOfDouble.java9 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];
H A Dcore+MatOfFloat.java9 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];
H A Dcore+MatOfFloat4.java9 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];
H A Dcore+MatOfFloat6.java9 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];
H A Dcore+MatOfInt.java10 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];
H A Dcore+MatOfInt4.java10 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];
H A Dcore+MatOfKeyPoint.java11 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*
[all...]
H A Dcore+MatOfPoint.java9 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
[all...]
H A Dcore+MatOfPoint2f.java9 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
[all...]
H A Dcore+MatOfPoint3.java9 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], buf
[all...]
H A Dcore+MatOfPoint3f.java9 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], buf
[all...]
H A Dcore+MatOfRect.java10 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/ImageMagick/Magick++/lib/Magick++/
H A DStatistic.h240 std::vector<ChannelMoments> _channels; member in class:Magick::ImageMoments
278 std::vector<ChannelPerceptualHash> _channels; member in class:Magick::ImagePerceptualHash
303 std::vector<ChannelStatistics> _channels; member in class:Magick::ImageStatistics
/external/opencv3/modules/imgcodecs/src/
H A Dgrfmt_pxm.cpp375 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 )
H A Dgrfmt_jpeg.cpp595 int _channels = img.channels(); local
596 int channels = _channels > 1 ? 3 : 1;
692 if( _channels == 3 )
697 else if( _channels == 4 )

Completed in 207 milliseconds