HomeSort by relevance Sort by last modified time
    Searched refs:Size (Results 401 - 425 of 2560) sorted by null

<<11121314151617181920>>

  /external/opencv3/modules/core/perf/
perf_reduce.cpp 11 typedef std::tr1::tuple<Size, MatType, ROp> Size_MatType_ROp_t;
23 Size sz = get<0>(GetParam());
51 Size sz = get<0>(GetParam());
  /external/opencv3/modules/imgproc/perf/
perf_sepfilters.cpp 17 typedef std::tr1::tuple<Size, MatType, std::tr1::tuple<int, int>, BorderType3x3> Size_MatType_dx_dy_Border3x3_t;
20 typedef std::tr1::tuple<Size, MatType, std::tr1::tuple<int, int>, BorderType3x3ROI> Size_MatType_dx_dy_Border3x3ROI_t;
23 typedef std::tr1::tuple<Size, MatType, std::tr1::tuple<int, int>, BorderType> Size_MatType_dx_dy_Border5x5_t;
26 typedef std::tr1::tuple<Size, MatType, std::tr1::tuple<int, int>, BorderTypeROI> Size_MatType_dx_dy_Border5x5ROI_t;
41 Size size = get<0>(GetParam()); local
47 Mat src(size, CV_8U);
48 Mat dst(size, ddepth);
66 Size size = get<0>(GetParam()) local
94 Size size = get<0>(GetParam()); local
119 Size size = get<0>(GetParam()); local
149 Size size = get<0>(GetParam()); local
174 Size size = get<0>(GetParam()); local
202 Size size = get<0>(GetParam()); local
227 Size size = get<0>(GetParam()); local
    [all...]
  /external/opencv3/modules/java/src/
imgproc+LineSegmentDetector.java 9 import org.opencv.core.Size;
56 // C++: int compareSegments(Size size, Mat lines1, Mat lines2, Mat& _image = Mat())
59 //javadoc: LineSegmentDetector::compareSegments(size, lines1, lines2, _image)
60 public int compareSegments(Size size, Mat lines1, Mat lines2, Mat _image)
63 int retVal = compareSegments_0(nativeObj, size.width, size.height, lines1.nativeObj, lines2.nativeObj, _image.nativeObj);
68 //javadoc: LineSegmentDetector::compareSegments(size, lines1, lines2)
69 public int compareSegments(Size size, Mat lines1, Mat lines2
    [all...]
  /external/opencv3/modules/objdetect/misc/java/test/
CascadeClassifierTest.java 5 import org.opencv.core.Size;
41 cc.detectMultiScale(greyLena, faces, 1.09, 3, Objdetect.CASCADE_SCALE_IMAGE, new Size(30, 30), new Size());
  /external/opencv3/modules/photo/test/
test_denoising.cuda.cpp 64 cv::resize(bgr, bgr, cv::Size(256, 256));
81 cv::resize(bgr_gold, bgr_gold, cv::Size(256, 256));
82 cv::resize(gray_gold, gray_gold, cv::Size(256, 256));
  /external/opencv3/modules/video/misc/java/test/
VideoTest.java 9 import org.opencv.core.Size;
69 Size sz = new Size(3, 3);
  /external/opencv3/samples/cpp/tutorial_code/ImgProc/
Morphology_3.cpp 60 // Specify size on horizontal axis
64 Mat horizontalStructure = getStructuringElement(MORPH_RECT, Size(horizontalsize,1));
75 // Specify size on vertical axis
79 Mat verticalStructure = getStructuringElement(MORPH_RECT, Size( 1,verticalsize));
116 blur(smooth, smooth, Size(2, 2));
  /external/opencv3/samples/cpp/tutorial_code/objectDetection/
objectDetection.cpp 63 face_cascade.detectMultiScale( frame_gray, faces, 1.1, 2, 0|CASCADE_SCALE_IMAGE, Size(30, 30) );
65 for ( size_t i = 0; i < faces.size(); i++ )
68 ellipse( frame, center, Size( faces[i].width/2, faces[i].height/2 ), 0, 0, 360, Scalar( 255, 0, 255 ), 4, 8, 0 );
74 eyes_cascade.detectMultiScale( faceROI, eyes, 1.1, 2, 0 |CASCADE_SCALE_IMAGE, Size(30, 30) );
76 for ( size_t j = 0; j < eyes.size(); j++ )
objectDetection2.cpp 72 face_cascade.detectMultiScale( frame_gray, faces, 1.1, 2, 0, Size(80, 80) );
74 for( size_t i = 0; i < faces.size(); i++ )
80 eyes_cascade.detectMultiScale( faceROI, eyes, 1.1, 2, 0 |CASCADE_SCALE_IMAGE, Size(30, 30) );
81 if( eyes.size() == 2)
85 ellipse( frame, center, Size( faces[i].width/2, faces[i].height/2 ), 0, 0, 360, Scalar( 255, 0, 0 ), 2, 8, 0 );
87 for( size_t j = 0; j < eyes.size(); j++ )
  /external/opencv3/samples/tapi/
clahe.cpp 20 pFilter->setTilesGridSize(Size(1,1));
22 pFilter->setTilesGridSize(Size(tilesize,tilesize));
52 createTrackbar("Tile Size", "CLAHE", &tilesize, 32, (TrackbarCallback)TSize_Callback);
58 Size cur_tilesize;
63 setTrackbarPos("Tile Size", "CLAHE", cur_tilesize.width);
  /external/protobuf/gtest/samples/
sample5_unittest.cc 174 EXPECT_EQ(0u, q0_.Size());
185 EXPECT_EQ(0u, q1_.Size());
191 EXPECT_EQ(1u, q2_.Size());
  /external/webrtc/webrtc/base/
openssldigest.cc 33 size_t OpenSSLDigest::Size() const {
48 if (!md_ || len < Size()) {
54 ASSERT(md_len == Size());
  /frameworks/base/media/mca/filterfw/jni/
jni_native_frame.cpp 37 jint size) {
38 return ToJBool(WrapObjectInJava(new NativeFrame(size), env, thiz, true));
74 jint size) {
78 if (!data || size > frame->Size())
80 jbyteArray result = env->NewByteArray(size);
81 env->SetByteArrayRegion(result, 0, size, reinterpret_cast<const jbyte*>(data));
93 return ToJBool(AttachDataToJBuffer(env, buffer, data, frame->Size()));
118 jint size) {
122 if (!data || size > frame->Size() || (size % sizeof(jint)) != 0
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
ReaderWriter_2_9.h 107 /// uint32_t BitcodeSize; // Size of traditional bitcode file.
117 KnownHeaderSize = 4*4, // Size of header we read.
119 SizeField = 3*4 // Offset in bytes to Size field.
129 unsigned Size = ( BufPtr[SizeField ] |
134 // Verify that Offset+Size fits in the file.
135 if (Offset+Size > unsigned(BufEnd-BufPtr))
138 BufEnd = BufPtr+Size;
  /frameworks/compile/slang/BitWriter_2_9_func/
ReaderWriter_2_9_func.h 107 /// uint32_t BitcodeSize; // Size of traditional bitcode file.
117 KnownHeaderSize = 4*4, // Size of header we read.
119 SizeField = 3*4 // Offset in bytes to Size field.
129 unsigned Size = ( BufPtr[SizeField ] |
134 // Verify that Offset+Size fits in the file.
135 if (Offset+Size > unsigned(BufEnd-BufPtr))
138 BufEnd = BufPtr+Size;
  /frameworks/compile/slang/BitWriter_3_2/
ReaderWriter_3_2.h 107 /// uint32_t BitcodeSize; // Size of traditional bitcode file.
117 KnownHeaderSize = 4*4, // Size of header we read.
119 SizeField = 3*4 // Offset in bytes to Size field.
129 unsigned Size = ( BufPtr[SizeField ] |
134 // Verify that Offset+Size fits in the file.
135 if (Offset+Size > unsigned(BufEnd-BufPtr))
138 BufEnd = BufPtr+Size;
  /hardware/qcom/camera/QCamera2/HAL/test/
qcamera_test.h 58 size_t Size;
86 status_t getCurrentPreviewSize(Size &previewSize);
89 status_t getCurrentPictureSize(Size &pictureSize);
94 status_t getCurrentVideoSize(Size &videoSize);
182 Size getPreviewSizeFromVideoSizes(Size currentVideoSize);
185 Vector<Size> mSupportedPreviewSizes;
186 Vector<Size> mSupportedPictureSizes;
187 Vector<Size> mSupportedVideoSizes;
276 void setViVSize(Size VideoSize, int camIndex)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
TaskPreviewChainedJpeg.java 23 import com.android.camera.util.Size;
49 Size targetSize,
68 new Size(safeCrop.width(), safeCrop.height()),
  /system/bt/embdrv/sbc/decoder/include/
oi_string.h 58 #define OI_MemCopy(to, from, size) memcpy((to), (from), (size))
59 #define OI_MemSet(block, val, size) memset((block), (val), (size))
60 #define OI_MemZero(block, size) memset((block), 0, (size))
77 void OI_MemCopy(void *To, void const *From, OI_UINT32 Size);
85 void OI_MemSet(void *Block, OI_UINT8 Val, OI_UINT32 Size);
93 void OI_MemZero(void *Block, OI_UINT32 Size);
  /cts/tests/camera/src/android/hardware/cts/
Camera_SizeTest.java 79 List<Camera.Size> supportedJpegDimens = parameters.getSupportedPictureSizes();
80 List<Camera.Size> supportedPreviewDimens = parameters.getSupportedPreviewSizes();
85 Camera.Size largestJpegDimen =
86 supportedJpegDimens.get(supportedJpegDimens.size() - 1);
87 Camera.Size largestPreviewDimen =
88 supportedPreviewDimens.get(supportedPreviewDimens.size() - 1);
  /external/compiler-rt/lib/tsan/rtl/
tsan_ignoreset.cc 37 uptr IgnoreSet::Size() const {
  /external/deqp/framework/common/
tcuVectorType.hpp 35 template <typename T, int Size>
  /external/elfutils/tests/
run-readelf-A.sh 33 Owner Size
58 Owner Size
  /external/libchrome/base/win/
scoped_hglobal.h 29 size_t Size() const { return GlobalSize(glob_); }
  /external/llvm/include/llvm/ExecutionEngine/
RuntimeDyld.h 101 /// Allocate a memory block of (at least) the given size suitable for
105 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
109 /// Allocate a memory block of (at least) the given size suitable for data.
112 virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
119 /// \p CodeSize - the total size of all code sections
120 /// \p DataSizeRO - the total size of all read-only data sections
121 /// \p DataSizeRW - the total size of all read-write data sections
139 size_t Size) = 0;
141 size_t Size) = 0;

Completed in 1319 milliseconds

<<11121314151617181920>>