HomeSort by relevance Sort by last modified time
    Searched defs:size (Results 1726 - 1750 of 11184) sorted by null

<<61626364656667686970>>

  /external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/
NPP_staging.hpp 116 NcvSize32u size; ///< frame size member in struct:NppStInterpolationState
130 /** Size of a buffer required for interpolation.
134 * \param srcSize [IN] Frame size (both frames must be of the same size)
136 * \param hpSize [OUT] Where to store computed size (host memory)
162 * \param srcSize [IN] Source image size
165 * \param dstSize [OUT] Destination image size
170 * \param nKernelSize [IN] Size of the kernel in pixels
196 * \param srcSize [IN] Source image size
    [all...]
  /external/opencv3/modules/cudawarping/test/
test_remap.cpp 58 cv::Size dsize = xmap.size();
115 PARAM_TEST_CASE(Remap, cv::cuda::DeviceInfo, cv::Size, MatType, Interpolation, BorderType, UseRoi)
118 cv::Size size; local
130 size = GET_PARAM(1);
141 static double M[2][3] = { {std::cos(aplha), -std::sin(aplha), size.width / 2.0},
144 xmap.create(size, CV_32FC1);
145 ymap.create(size, CV_32FC1);
147 for (int y = 0; y < size.height; ++y
    [all...]
test_resize.cpp 59 cv::Size dsize(cv::saturate_cast<int>(src.cols * fx), cv::saturate_cast<int>(src.rows * fy));
120 PARAM_TEST_CASE(Resize, cv::cuda::DeviceInfo, cv::Size, MatType, double, Interpolation, UseRoi)
123 cv::Size size; local
132 size = GET_PARAM(1);
144 cv::Mat src = randomMat(size, type);
146 cv::cuda::GpuMat dst = createMat(cv::Size(cv::saturate_cast<int>(src.cols * coeff), cv::saturate_cast<int>(src.rows * coeff)), type, useRoi);
147 cv::cuda::resize(loadMat(src, useRoi), dst, cv::Size(), coeff, coeff, interpolation);
165 PARAM_TEST_CASE(ResizeSameAsHost, cv::cuda::DeviceInfo, cv::Size, MatType, double, Interpolation, UseRoi)
168 cv::Size size local
    [all...]
  /external/opencv3/modules/features2d/src/
keypoint.cpp 71 //this is only necessary if the keypoints size is greater than the number of desired points.
72 if( n_points >= 0 && keypoints.size() > (size_t)n_points )
105 void KeyPointsFilter::runByImageBorder( std::vector<KeyPoint>& keypoints, Size imageSize, int borderSize )
126 float size = keyPt.size; local
127 return (size < minSize) || (size > maxSize);
176 if( kp1.size != kp2.size )
177 return kp1.size > kp2.size
    [all...]
  /external/opencv3/modules/flann/include/opencv2/
flann.hpp 116 @param features Matrix of containing the features(points) to index. The size of the matrix is
210 at least knn size.
212 at least knn size.
229 int size() const { return nnIndex->size(); } function in class:cv::flann::GenericIndex
273 ::cvflann::Matrix<ElementType> m_query((ElementType*)&query[0], 1, query.size());
274 ::cvflann::Matrix<int> m_indices(&indices[0], 1, indices.size());
275 ::cvflann::Matrix<DistanceType> m_dists(&dists[0], 1, dists.size());
306 ::cvflann::Matrix<ElementType> m_query((ElementType*)&query[0], 1, query.size());
307 ::cvflann::Matrix<int> m_indices(&indices[0], 1, indices.size());
372 int size() const function in class:cv::flann::Index_
    [all...]
  /external/opencv3/modules/imgproc/perf/
perf_histogram.cpp 10 typedef tr1::tuple<Size, MatType> Size_Source_t;
12 typedef TestBaseWithParam<Size> TestMatSize;
22 Size size = get<0>(GetParam()); local
24 Mat source(size.height, size.width, type);
51 Size size = get<0>(GetParam()); local
53 Mat source(size.height, size.width, type)
79 Size size = get<0>(GetParam()); local
107 Size size = GetParam(); local
129 const Size size = get<0>(GetParam()); local
    [all...]
  /external/opencv3/modules/imgproc/src/
blend.cpp 125 Size size = _src1.size(); local
128 CV_Assert(size == _src2.size() && size == _weights1.size() && size == _weights2.size());
131 _dst.create(size, type)
    [all...]
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
util.hpp 115 std::vector<int> size; member in class:cv::detail::DisjointSets
140 int numVertices() const { return static_cast<int>(edges_.size()); }
153 CV_EXPORTS bool overlapRoi(Point tl1, Point tl2, Size sz1, Size sz2, Rect &roi);
155 CV_EXPORTS Rect resultRoi(const std::vector<Point> &corners, const std::vector<Size> &sizes);
156 CV_EXPORTS Rect resultRoiIntersection(const std::vector<Point> &corners, const std::vector<Size> &sizes);
159 // Returns random 'count' element subset of the {0,1,...,size-1} set
160 CV_EXPORTS void selectRandomSubset(int count, int size, std::vector<int> &subset);
  /external/opencv3/modules/stitching/test/ocl/
test_warpers.cpp 60 Size size = randomSize(1, MAX_VALUE); local
62 src = randomMat(size, CV_32FC1, -500, 500);
94 OCL_OFF(warper->buildMaps(src.size(), K, R, xmap, ymap));
95 OCL_ON(warper->buildMaps(usrc.size(), K, R, uxmap, uymap));
115 OCL_OFF(warper->buildMaps(src.size(), K, R, xmap, ymap));
116 OCL_ON(warper->buildMaps(usrc.size(), K, R, uxmap, uymap));
136 OCL_OFF(warper->buildMaps(src.size(), K, R, xmap, ymap));
137 OCL_ON(warper->buildMaps(usrc.size(), K, R, uxmap, uymap));
  /external/opencv3/modules/superres/perf/
perf_superres.cpp 97 cv::Size size = frame0.size(); local
101 flow1.create(size, CV_32FC2);
106 flow1.create(size, CV_32FC1);
107 flow2.create(size, CV_32FC1);
126 const Size size = get<0>(GetParam()); local
129 Mat frame(size, type);
187 const Size size = get<0>(params) local
    [all...]
  /external/opencv3/modules/video/test/
test_tvl1optflow.cpp 92 Size size; local
94 file.read((char*) &size.width, sizeof(int));
95 file.read((char*) &size.height, sizeof(int));
97 flow.create(size);
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_endpoint.hpp 130 /// Get the underlying size of the endpoint in the native type.
131 std::size_t size() const function in class:asio::ip::basic_endpoint
133 return impl_.size();
136 /// Set the underlying size of the endpoint in the native type.
  /external/parameter-framework/upstream/remote-processor/
Message.cpp 54 bool CMessage::isValidAccess(size_t offset, size_t size) const
56 return offset + size <= getMessageDataSize();
60 void CMessage::writeData(const void *pvData, size_t size)
62 assert(isValidAccess(_uiIndex, size));
64 auto first = MAKE_ARRAY_ITERATOR(static_cast<const uint8_t *>(pvData), size);
65 auto last = first + size;
70 _uiIndex += size;
73 void CMessage::readData(void *pvData, size_t size)
75 assert(isValidAccess(_uiIndex, size));
78 auto last = first + size;
89 uint32_t size = static_cast<uint32_t>(strData.length()); local
    [all...]
  /external/pcre/dist/
pcre_stringpiece.h 78 : ptr_(str.data()), length_(static_cast<int>(str.size())) { }
89 int size() const { return length_; } function in class:pcrecpp::StringPiece
143 return string(data(), size());
  /external/pcre/dist/sljit/
sljitExecAllocator.c 41 header contains the size of the previous and the next block. These sizes
43 Block size:
44 0 - The block is a free_block, with a different size member.
46 n - The block is used at the moment, and the value contains its size.
47 Previous block size:
49 n - The size of the previous block.
51 Using these size values we can go forward or backward on the block chain.
74 * the size is always divisible by CHUNK_SIZE
84 static SLJIT_INLINE void* alloc_chunk(sljit_uw size)
86 return VirtualAlloc(NULL, size, MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE)
128 sljit_uw size; member in struct:block_header
136 sljit_uw size; member in struct:free_block
    [all...]
sljitNativeX86_64.c 94 sljit_si i, tmp, size, saved_register_size; local
108 size = reg_map[i] >= 8 ? 2 : 1;
109 inst = (sljit_ub*)ensure_buf(compiler, 1 + size);
111 INC_SIZE(size);
118 size = reg_map[i] >= 8 ? 2 : 1;
119 inst = (sljit_ub*)ensure_buf(compiler, 1 + size);
121 INC_SIZE(size);
128 size = args * 3;
129 inst = (sljit_ub*)ensure_buf(compiler, 1 + size);
132 INC_SIZE(size);
258 sljit_si i, tmp, size; local
    [all...]
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_gif.cpp 20 static void* _gif_alloc_func(unsigned int size) {
21 return FX_Alloc(char, size);
162 uint8_t size = *buf++; local
163 if (size) {
164 pAttribute->m_strAuthor = CFX_ByteString(buf, size);
168 buf += size;
169 size = *buf++;
170 if (size == 20) {
171 FXSYS_memcpy(pAttribute->m_strTime, buf, size);
  /external/pdfium/core/src/fxcrt/
fxcrt_windows.cpp 85 LARGE_INTEGER size = {}; local
86 if (!::GetFileSizeEx(m_hFile, &size)) {
89 return (FX_FILESIZE)size.QuadPart;
  /external/pdfium/third_party/freetype/src/base/
ftpatent.c 30 FT_ULong size )
37 if ( FT_FRAME_ENTER( size ) )
41 end = p + size;
172 FT_ULong offset, num_ins, size; local
176 offset = service->get_location( face, gindex, &size );
177 if ( size == 0 )
  /external/pdfium/third_party/freetype/src/cid/
cidobjs.c 89 /* SIZE FUNCTIONS */
95 cid_size_get_globals_funcs( CID_Size size )
97 CID_Face face = (CID_Face)size->root.face;
102 module = FT_Get_Module( size->root.face->driver->root.library,
113 CID_Size size = (CID_Size)cidsize; local
121 funcs = cid_size_get_globals_funcs( size );
133 CID_Size size = (CID_Size)cidsize; local
135 PSH_Globals_Funcs funcs = cid_size_get_globals_funcs( size );
156 cid_size_request( FT_Size size,
162 FT_Request_Metrics( size->face, req )
    [all...]
cidobjs.h 54 /* A handle to a Type 1 size object. */
122 cid_size_done( FT_Size size ); /* CID_Size */ variable
125 cid_size_init( FT_Size size ); /* CID_Size */ variable
128 cid_size_request( FT_Size size, /* CID_Size */
  /external/pdfium/third_party/freetype/src/sfnt/
ttbdf.c 145 FT_Size size = FT_FACE(face)->size; local
168 if ( size == NULL || property_name == NULL )
180 if ( _ppem == size->metrics.y_ppem )
  /external/pdfium/third_party/freetype/src/type1/
t1objs.c 50 /* SIZE FUNCTIONS */
52 /* note that we store the global hints in the size's "internal" root */
59 T1_Size_Get_Globals_Funcs( T1_Size size )
61 T1_Face face = (T1_Face)size->root.face;
66 module = FT_Get_Module( size->root.face->driver->root.library,
77 T1_Size size = (T1_Size)t1size; local
80 if ( size->root.internal )
85 funcs = T1_Size_Get_Globals_Funcs( size );
87 funcs->destroy( (PSH_Globals)size->root.internal );
89 size->root.internal = NULL
97 T1_Size size = (T1_Size)t1size; local
122 T1_Size size = (T1_Size)t1size; local
    [all...]
t1objs.h 43 /* A handle to a Type 1 size object. */
88 /* Type 1 size record. */
98 T1_Size_Done( FT_Size size ); variable
101 T1_Size_Request( FT_Size size,
105 T1_Size_Init( FT_Size size ); variable
  /external/pdfium/third_party/zlib_v128/
gzwrite.c 14 state->size to non-zero. Return -1 on failure or 0 on success. */
53 state->size = state->want;
57 strm->avail_out = state->size;
79 if (state->size == 0 && gz_init(state) == -1)
107 strm->avail_out = state->size;
148 n = GT_OFF(state->size) || (z_off64_t)state->size > len ?
149 (unsigned)len : state->size;
196 if (state->size == 0 && gz_init(state) == -1)
207 if (len < state->size) {
312 int size, len; local
392 int size, len; local
    [all...]

Completed in 523 milliseconds

<<61626364656667686970>>