HomeSort by relevance Sort by last modified time
    Searched refs:image_size (Results 26 - 50 of 63) sorted by null

12 3

  /external/ImageMagick/coders/
icon.c 131 image_size,
397 icon_info.image_size=ReadBlobLSBLong(image);
128 image_size, member in struct:_IconInfo
    [all...]
  /external/opencv/cvaux/src/
cv3dtracker.cpp 135 CvSize image_size = cvSize(samples[c]->width, samples[c]->height); local
149 CV_CALL(gray_img = cvCreateImage(image_size, IPL_DEPTH_8U, 1));
167 CV_CALL(tmp_img = cvCreateImage(image_size, IPL_DEPTH_8U, 1));
229 image_size,
  /external/opencv3/modules/cudaarithm/src/
arithm.cpp 412 void create(Size image_size, Size templ_size);
425 void ConvolutionImpl::create(Size image_size, Size templ_size)
427 result_size = Size(image_size.width - templ_size.width + 1,
428 image_size.height - templ_size.height + 1);
  /external/freetype/src/sfnt/
ttsbit.c 1277 FT_ULong image_size; local
1343 FT_ULong image_size, mm, num_glyphs; local
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format5.cc 231 void IndexSubTableFormat5::Builder::SetImageSize(int32_t image_size) {
233 EblcTable::Offset::kIndexSubTable5_imageSize, image_size);
  /external/opencv3/modules/calib3d/test/
test_homography.cpp 84 int image_size; member in class:CV_HomographyTest
108 image_size = 100;
258 src_data[2*i] = (float)cvtest::randReal(rng)*image_size;
259 src_data[2*i+1] = (float)cvtest::randReal(rng)*image_size;
281 double t_x = cvtest::randReal(rng)*sqrt(image_size*1.0),
282 t_y = cvtest::randReal(rng)*sqrt(image_size*1.0);
    [all...]
  /external/opencv3/modules/java/src/
calib3d+Calib3d.java 176 // C++: void estimateNewCameraMatrixForUndistortRectify(Mat K, Mat D, Size image_size, Mat R, Mat& P, double balance = 0.0, Size new_size = Size(), double fov_scale = 1.0)
179 //javadoc: estimateNewCameraMatrixForUndistortRectify(K, D, image_size, R, P, balance, new_size, fov_scale)
180 public static void estimateNewCameraMatrixForUndistortRectify(Mat K, Mat D, Size image_size, Mat R, Mat P, double balance, Size new_size, double fov_scale)
183 estimateNewCameraMatrixForUndistortRectify_0(K.nativeObj, D.nativeObj, image_size.width, image_size.height, R.nativeObj, P.nativeObj, balance, new_size.width, new_size.height, fov_scale);
188 //javadoc: estimateNewCameraMatrixForUndistortRectify(K, D, image_size, R, P)
189 public static void estimateNewCameraMatrixForUndistortRectify(Mat K, Mat D, Size image_size, Mat R, Mat P)
192 estimateNewCameraMatrixForUndistortRectify_1(K.nativeObj, D.nativeObj, image_size.width, image_size.height, R.nativeObj, P.nativeObj);
199 // C++: double calibrate(vector_Mat objectPoints, vector_Mat imagePoints, Size image_size, Mat& K, Mat& D, vector_Mat& rvecs, vector_Mat& tvecs, int flags = 0, TermCriteria criteria = Term (…)
    [all...]
  /external/opencv/cv/include/
cvcompat.h 585 CvSize image_size, CvPoint2D32f* _image_points, CvPoint3D32f* _object_points,
603 cvCalibrateCamera2( &object_points, &image_points, &point_counts, image_size,
610 CvSize image_size, CvPoint2D64f* _image_points, CvPoint3D64f* _object_points,
628 cvCalibrateCamera2( &object_points, &image_points, &point_counts, image_size,
638 CvSize CV_UNREFERENCED(image_size), CvPoint2D32f* _image_points,
663 CvSize CV_UNREFERENCED(image_size), CvPoint2D64f* _image_points,
    [all...]
cv.h     [all...]
  /art/runtime/gc/collector/
immune_spaces_test.cc 80 size_t image_size,
86 image_size,
114 /*image_size*/map->Size(),
  /external/autotest/client/tests/kvm/tests/
qemu_img.py 20 image_size = params.get("image_size", "10G")
206 if not image_size in img_info:
  /art/runtime/
image.h 104 uint32_t image_size,
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/ui/
AttractionListFragment.java 70 mImageSize = getResources().getDimensionPixelSize(R.dimen.image_size)
DetailFragment.java 97 int imageSize = getResources().getDimensionPixelSize(R.dimen.image_size)
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/ui/
AttractionListFragment.java 70 mImageSize = getResources().getDimensionPixelSize(R.dimen.image_size)
DetailFragment.java 97 int imageSize = getResources().getDimensionPixelSize(R.dimen.image_size)
  /development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/ui/
AttractionListFragment.java 70 mImageSize = getResources().getDimensionPixelSize(R.dimen.image_size)
DetailFragment.java 97 int imageSize = getResources().getDimensionPixelSize(R.dimen.image_size)
  /external/sfntly/cpp/src/sample/chromium/
subsetter_impl.cc 434 int32_t image_size = 0; local
439 image_size = builder2->ImageSize();
445 image_size = builder5->ImageSize();
460 new_builder->SetImageSize(image_size);
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_window.py 230 image_size=None):
249 self.image_frame = ImageFrame(size=image_size)
  /external/opencv3/modules/calib3d/include/opencv2/
calib3d.hpp     [all...]
  /frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
VideoDumpView.java 484 int image_size = mWidth * mHeight * VideoDumpConfig.BYTES_PER_PIXEL; local
485 mBuffer = ByteBuffer.allocate(image_size);
  /external/freetype/include/freetype/internal/
tttypes.h 561 /* image_size :: For index formats 2 and 5. This is the size in */
586 FT_ULong image_size; member in struct:TT_SBit_RangeRec_
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/internal/
tttypes.h 561 /* image_size :: For index formats 2 and 5. This is the size in */
586 FT_ULong image_size; member in struct:TT_SBit_RangeRec_
    [all...]
  /external/pdfium/third_party/freetype/include/freetype/internal/
tttypes.h 561 /* image_size :: For index formats 2 and 5. This is the size in */
586 FT_ULong image_size; member in struct:TT_SBit_RangeRec_
    [all...]

Completed in 604 milliseconds

12 3