HomeSort by relevance Sort by last modified time
    Searched refs:imageSize (Results 1 - 25 of 451) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/main/
texcompress_cpal.h 35 GLsizei imageSize, const void *palette);
texstore.h 112 GLsizei imageSize, const GLvoid *data);
121 GLsizei imageSize, const GLvoid *data);
teximage.h 259 GLint border, GLsizei imageSize,
265 GLsizei height, GLint border, GLsizei imageSize,
272 GLsizei imageSize, const GLvoid *data);
282 GLsizei imageSize, const GLvoid *data);
287 GLenum format, GLsizei imageSize,
294 GLsizei imageSize, const GLvoid *data);
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageTestsUtil.cpp 58 tcu::UVec3 getShaderGridSize (const ImageType imageType, const tcu::UVec3& imageSize)
64 return tcu::UVec3(imageSize.x(), 1u, 1u);
67 return tcu::UVec3(imageSize.x(), imageSize.z(), 1u);
70 return tcu::UVec3(imageSize.x(), imageSize.y(), 1u);
74 return tcu::UVec3(imageSize.x(), imageSize.y(), imageSize.z());
77 return tcu::UVec3(imageSize.x(), imageSize.y(), 6u)
    [all...]
vktImageTestsUtil.hpp 101 tcu::UVec3 getShaderGridSize (const ImageType imageType, const tcu::UVec3& imageSize); //!< Size used for addresing image in a shader
102 tcu::UVec3 getLayerSize (const ImageType imageType, const tcu::UVec3& imageSize); //!< Size of a single layer
103 deUint32 getNumLayers (const ImageType imageType, const tcu::UVec3& imageSize); //!< Number of array layers (for array and cube types)
104 deUint32 getNumPixels (const ImageType imageType, const tcu::UVec3& imageSize); //!< Number of texels in an image
174 inline vk::VkDeviceSize getImageSizeBytes (const tcu::IVec3& imageSize, const vk::VkFormat format)
176 return tcu::getPixelSize(vk::mapVkFormat(format)) * imageSize.x() * imageSize.y() * imageSize.z();
vktImageQualifiersTests.cpp 68 const tcu::UVec3 getLocalWorkGroupSize (const ImageType imageType, const tcu::UVec3& imageSize)
70 const tcu::UVec3 computeGridSize = getShaderGridSize(imageType, imageSize);
78 const tcu::UVec3 getNumWorkGroups (const ImageType imageType, const tcu::UVec3& imageSize)
80 const tcu::UVec3 computeGridSize = getShaderGridSize(imageType, imageSize);
81 const tcu::UVec3 localWorkGroupSize = getLocalWorkGroupSize(imageType, imageSize);
115 const tcu::UVec3& imageSize,
126 for (deUint32 layerNdx = 0; layerNdx < getNumLayers(imageType, imageSize); ++layerNdx)
160 return passedLayers == getNumLayers(imageType, imageSize);
207 const tcu::UVec3& imageSize,
230 const tcu::UVec3& imageSize,
    [all...]
vktImageAtomicOperationTests.cpp 248 const tcu::UVec3& imageSize,
268 const tcu::UVec3& imageSize,
274 , m_imageSize (imageSize)
321 const tcu::UVec3& imageSize,
341 const tcu::UVec3& imageSize,
347 , m_imageSize (imageSize)
396 const tcu::UVec3& imageSize,
430 const tcu::UVec3& imageSize,
436 , m_imageSize (imageSize)
591 const tcu::UVec3& imageSize,
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesTestsUtil.cpp 60 tcu::UVec3 getShaderGridSize(const ImageType imageType, const tcu::UVec3& imageSize, const deUint32 mipLevel)
62 const deUint32 mipLevelX = std::max(imageSize.x() >> mipLevel, 1u);
63 const deUint32 mipLevelY = std::max(imageSize.y() >> mipLevel, 1u);
64 const deUint32 mipLevelZ = std::max(imageSize.z() >> mipLevel, 1u);
72 return tcu::UVec3(imageSize.x(), 1u, 1u);
75 return tcu::UVec3(mipLevelX, imageSize.z(), 1u);
81 return tcu::UVec3(mipLevelX, mipLevelY, imageSize.z());
90 return tcu::UVec3(mipLevelX, mipLevelY, 6u * imageSize.z());
98 tcu::UVec3 getLayerSize(const ImageType imageType, const tcu::UVec3& imageSize)
105 return tcu::UVec3(imageSize.x(), 1u, 1u)
    [all...]
vktSparseResourcesImageSparseBinding.cpp 62 const tcu::UVec3& imageSize,
77 const tcu::UVec3& imageSize,
81 , m_imageSize (imageSize)
91 const tcu::UVec3& imageSize,
104 const tcu::UVec3& imageSize,
108 , m_imageSize (imageSize)
444 const tcu::UVec3 imageSize = imageParametersArray[imageTypeNdx].imageSizes[imageSizeNdx];
447 stream << imageSize.x() << "_" << imageSize.y() << "_" << imageSize.z()
    [all...]
  /external/opencv3/samples/cpp/
stereo_calib.cpp 74 Size imageSize;
90 if( imageSize == Size() )
91 imageSize = img.size();
92 else if( img.size() != imageSize )
175 imageSize, R, T, E, F,
230 imageSize, R, T, R1, R2, P1, P2, Q,
231 CALIB_ZERO_DISPARITY, 1, imageSize, &validRoi[0], &validRoi[1]);
270 stereoRectifyUncalibrated(Mat(allimgpt[0]), Mat(allimgpt[1]), F, imageSize, H1, H2, 3);
279 initUndistortRectifyMap(cameraMatrix[0], distCoeffs[0], R1, P1, imageSize, CV_16SC2, rmap[0][0], rmap[0][1]);
280 initUndistortRectifyMap(cameraMatrix[1], distCoeffs[1], R2, P2, imageSize, CV_16SC2, rmap[1][0], rmap[1][1])
    [all...]
3calibration.cpp 48 Size imageSize, Size boardSize,
90 double err = calibrateCamera(objpt, imgpt, imageSize, cameraMatrix,
140 imageSize, R, T, E, F,
179 Size boardSize, imageSize;
274 imageSize = view.size();
294 run3Calibration(imgpt[0], imgpt[1], imgpt[2], imageSize,
316 fs << "imageWidth" << imageSize.width;
317 fs << "imageHeight" << imageSize.height;
325 imageSize, R12, T12, R13, T13,
327 imageSize, 0, 0, CALIB_ZERO_DISPARITY)
    [all...]
calibration.cpp 138 Size imageSize, Size boardSize, Pattern patternType,
156 double rms = calibrateCamera(objectPoints, imagePoints, imageSize, cameraMatrix,
171 Size imageSize, Size boardSize,
191 fs << "image_width" << imageSize.width;
192 fs << "image_height" << imageSize.height;
269 Size imageSize, Size boardSize, Pattern patternType, float squareSize,
277 bool ok = runCalibration(imagePoints, imageSize, boardSize, patternType, squareSize,
285 saveCameraParams( outputFilename, imageSize,
299 Size boardSize, imageSize;
454 runAndSave(outputFilename, imagePoints, imageSize,
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderImageLoadStoreTests.cpp 695 static void setTextureStorage (glu::CallLogWrapper& glLog, TextureType imageType, deUint32 internalFormat, const IVec3& imageSize, deUint32 textureBufGL)
704 const int numBytes = format.getPixelSize() * imageSize.x();
709 DE_ASSERT(imageSize.y() == 1 && imageSize.z() == 1);
717 glLog.glTexStorage2D(textureTarget, 1, internalFormat, imageSize.x(), imageSize.y());
718 DE_ASSERT(imageSize.z() == 1);
723 glLog.glTexStorage3D(textureTarget, 1, internalFormat, imageSize.x(), imageSize.y(), imageSize.z())
    [all...]
  /packages/apps/Camera2/src/com/android/camera/ui/
ZoomView.java 72 Point imageSize = FilmstripItemUtils.decodeBitmapDimension(isForDimensions);
78 if (imageSize == null) {
82 RectF fullResRect = new RectF(0, 0, imageSize.x - 1, imageSize.y - 1);
89 rotationMatrix.mapRect(fullResRect, new RectF(0, 0, imageSize.x - 1,
90 imageSize.y - 1));
116 region.intersect(0, 0, imageSize.x - 1, imageSize.y - 1);
  /external/opencv3/samples/cpp/tutorial_code/calib3d/camera_calibration/
camera_calibration.cpp 221 bool runCalibrationAndSave(Settings& s, Size imageSize, Mat& cameraMatrix, Mat& distCoeffs,
252 Size imageSize;
269 if( runCalibrationAndSave(s, imageSize, cameraMatrix, distCoeffs, imagePoints))
278 runCalibrationAndSave(s, imageSize, cameraMatrix, distCoeffs, imagePoints);
283 imageSize = view.size(); // Format input image.
385 getOptimalNewCameraMatrix(cameraMatrix, distCoeffs, imageSize, 1, imageSize, 0),
386 imageSize, CV_16SC2, map1, map2);
456 static bool runCalibration( Settings& s, Size& imageSize, Mat& cameraMatrix, Mat& distCoeffs,
473 double rms = calibrateCamera(objectPoints, imagePoints, imageSize, cameraMatrix
    [all...]
  /external/deqp/modules/internal/
ditImageIOTests.cpp 63 const int imageSize = texture.getAccess().getSlicePitch()*texture.getDepth();
64 const deUint32 hash = deMemoryHash(texture.getAccess().getDataPtr(), imageSize);
  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJTransformer.java 57 * image of length <code>imageSize</code> bytes stored in
62 * @param imageSize size of the JPEG image (in bytes)
64 public TJTransformer(byte[] jpegImage, int imageSize) throws Exception {
66 setSourceImage(jpegImage, imageSize);
  /external/opencv3/modules/java/src/
calib3d+Calib3d.java 249 // C++: void stereoRectify(Mat K1, Mat D1, Mat K2, Mat D2, Size imageSize, Mat R, Mat tvec, Mat& R1, Mat& R2, Mat& P1, Mat& P2, Mat& Q, int flags, Size newImageSize = Size(), double balance = 0.0, double fov_scale = 1.0)
252 //javadoc: stereoRectify(K1, D1, K2, D2, imageSize, R, tvec, R1, R2, P1, P2, Q, flags, newImageSize, balance, fov_scale)
253 public static void stereoRectify(Mat K1, Mat D1, Mat K2, Mat D2, Size imageSize, Mat R, Mat tvec, Mat R1, Mat R2, Mat P1, Mat P2, Mat Q, int flags, Size newImageSize, double balance, double fov_scale)
256 stereoRectify_0(K1.nativeObj, D1.nativeObj, K2.nativeObj, D2.nativeObj, imageSize.width, imageSize.height, R.nativeObj, tvec.nativeObj, R1.nativeObj, R2.nativeObj, P1.nativeObj, P2.nativeObj, Q.nativeObj, flags, newImageSize.width, newImageSize.height, balance, fov_scale);
261 //javadoc: stereoRectify(K1, D1, K2, D2, imageSize, R, tvec, R1, R2, P1, P2, Q, flags)
262 public static void stereoRectify(Mat K1, Mat D1, Mat K2, Mat D2, Size imageSize, Mat R, Mat tvec, Mat R1, Mat R2, Mat P1, Mat P2, Mat Q, int flags)
265 stereoRectify_1(K1.nativeObj, D1.nativeObj, K2.nativeObj, D2.nativeObj, imageSize.width, imageSize.height, R.nativeObj, tvec.nativeObj, R1.nativeObj, R2.nativeObj, P1.nativeObj, P2.nativeObj, Q.nativeObj, flags);
272 // C++: double stereoCalibrate(vector_Mat objectPoints, vector_Mat imagePoints1, vector_Mat imagePoints2, Mat& K1, Mat& D1, Mat& K2, Mat& D2, Size imageSize, Mat& R, Mat& T, int flags = fisheye::CALIB_FIX_INTRINSIC, TermCriteria criteria = TermCriteria(Te (…)
    [all...]
  /external/opencv/cvaux/src/
cvepilines.cpp 667 int icvGetAngleLine( CvPoint2D64d startPoint, CvSize imageSize,CvPoint2D64d *point1,CvPoint2D64d *point2)
678 pb.x = imageSize.width-1;
681 pd.x = imageSize.width-1;
682 pd.y = imageSize.height-1;
685 pc.y = imageSize.height-1;
697 else if( startPoint.y > imageSize.height-1 )
708 else if ( startPoint.x > imageSize.width-1 )
715 else if ( startPoint.y > imageSize.height-1 )
730 if( startPoint.x < imageSize.width/2 )
741 else if( startPoint.y > imageSize.height-1
    [all...]
  /external/opencv3/modules/features2d/src/
keypoint.cpp 105 void KeyPointsFilter::runByImageBorder( std::vector<KeyPoint>& keypoints, Size imageSize, int borderSize )
109 if (imageSize.height <= borderSize * 2 || imageSize.width <= borderSize * 2)
114 Point(imageSize.width - borderSize, imageSize.height - borderSize)))),
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AttachmentTileGrid.java 158 final int imageSize = (widthMinusPadding) / mColumnCount;
159 final int remainder = widthMinusPadding - (imageSize * mColumnCount);
164 final int childWidth = imageSize + (i < remainder ? 1 : 0);
167 MeasureSpec.makeMeasureSpec(imageSize, MeasureSpec.EXACTLY)
175 numRows * (imageSize + getChildAt(0).getPaddingBottom()) +
  /system/extras/verity/
VerityVerifier.java 54 private long imageSize;
192 int hashes = (int) (imageSize / blockSize);
245 if (imageSize != (long) blocks * blockSize) {
267 imageSize = getMetadataPosition(img);
268 img.seek(imageSize);
367 for (int i = 0; (long) i * blockSize < imageSize; i++) {
  /external/skia/src/sfnt/
SkOTTable_EBLC.h 109 SK_OT_ULONG imageSize; // all glyphs are of the same size
133 SK_OT_ULONG imageSize; //all glyphs have the same data size
  /external/opencv/
cvjni.cpp 151 int imageSize = strm->GetSize();
152 jbooleanArray res_array = env->NewBooleanArray(imageSize);
157 env->SetBooleanArrayRegion(res_array, 0, imageSize, (jboolean*)strm->GetByte());
257 int imageSize;
270 imageSize = strm->GetSize();
271 jbooleanArray res_array = env->NewBooleanArray(imageSize);
276 env->SetBooleanArrayRegion(res_array, 0, imageSize, (jboolean*)strm->GetByte());
701 int imageSize;
765 imageSize = m_strm->GetSize();
766 res_array = env->NewBooleanArray(imageSize);
    [all...]
  /packages/apps/LegacyCamera/jni/
feature_mos_jni.cpp 577 int imageSize = width * height;
584 LOGV("MosBytes: %d, W = %d, H = %d", imageSize, width, height);
586 int* image = new int[imageSize];
603 jintArray bytes = env->NewIntArray(imageSize+2);
609 env->SetIntArrayRegion(bytes, 0, imageSize, (jint*) image);
610 env->SetIntArrayRegion(bytes, imageSize, 2, (jint*) dims);
626 int imageSize = 1.5*width * height;
640 LOGV("MosBytes: %d, W = %d, H = %d", imageSize, width, height);
654 jbyteArray bytes = env->NewByteArray(imageSize+8);
660 env->SetByteArrayRegion(bytes, 0, imageSize, (jbyte*) resultYVU)
    [all...]

Completed in 616 milliseconds

1 2 3 4 5 6 7 8 91011>>