HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 51 - 75 of 2677) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
Utils.h 16 void drawQuestion(cv::Mat image, cv::Point3f point, cv::Scalar color);
19 void drawText(cv::Mat image, std::string text, cv::Scalar color);
22 void drawText2(cv::Mat image, std::string text, cv::Scalar color);
25 void drawFPS(cv::Mat image, double fps, cv::Scalar color);
28 void drawConfidence(cv::Mat image, double confidence, cv::Scalar color);
31 void drawCounter(cv::Mat image, int n, int n_max, cv::Scalar color);
34 void drawPoints(cv::Mat image, std::vector<cv::Point2f> &list_points_2d, std::vector<cv::Point3f> &list_points_3d, cv::Scalar color);
37 void draw2DPoints(cv::Mat image, std::vector<cv::Point2f> &list_points, cv::Scalar color);
39 // Draw an arrow into the image
40 void drawArrow(cv::Mat image, cv::Point2i p, cv::Point2i q, cv::Scalar color, int arrowMagnitude = 9, int thickness=1, int line (…)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_texture.c 86 * Allocate an empty texture image object.
95 * Delete a texture image object.
109 radeon_texture_image *image = get_radeon_texture_image(timage); local
122 assert(!image->base.ImageOffsets);
123 image->base.ImageOffsets = malloc(slices * sizeof(GLuint));
131 * Free memory associated with this texture image.
135 radeon_texture_image* image = get_radeon_texture_image(timage); local
137 if (image->mt) {
138 radeon_miptree_unreference(&image->mt);
142 if (image->bo)
223 radeon_texture_image *image = get_radeon_texture_image(texImage); local
275 radeon_texture_image *image = get_radeon_texture_image(texImage); local
551 radeon_texture_image* image = get_radeon_texture_image(texImage); local
601 __DRIimage *image; local
759 radeon_texture_image *image = get_radeon_texture_image(texObj->Image[face][i]); local
775 radeon_texture_image *image = get_radeon_texture_image(texObj->Image[face][i]); local
    [all...]
radeon_screen.c 209 __DRIimage *image; local
215 image = CALLOC(sizeof *image);
216 if (image == NULL)
221 image->format = MESA_FORMAT_RGB565;
222 image->internal_format = GL_RGB;
223 image->data_type = GL_UNSIGNED_BYTE;
226 image->format = MESA_FORMAT_XRGB8888;
227 image->internal_format = GL_RGB;
228 image->data_type = GL_UNSIGNED_BYTE
265 __DRIimage *image; local
310 __DRIimage *image; local
    [all...]
  /cts/apps/CameraITS/tests/
tutorial.py 23 # > pydoc its.image
25 import its.image namespace
36 # the image processing code, and images are represented as numpy arrays.
73 print "Captured image width:", cap["width"]
74 print "Captured image height:", cap["height"]
77 # The captured image is YUV420. Convert to RGB, and save as a file.
78 rgbimg = its.image.convert_capture_to_rgb_image(cap)
79 its.image.write_image(rgbimg, "%s_rgb_1.jpg" % (NAME))
83 yimg,uimg,vimg = its.image.convert_capture_to_planes(cap)
84 its.image.write_image(yimg, "%s_y_plane_1.jpg" % (NAME)
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
MosaicTypes.h 64 * Note: Currently assumes a YVU image
70 ImageType image; member in class:MosaicFrame
84 image = ImageUtils::allocateImage(width, height, ImageUtils::IMAGE_TYPE_NUM_CHANNELS);
91 if (image)
92 free(image);
96 * Get the V plane of the image.
100 return (image + (width*height));
104 * Get the U plane of the image.
108 return (image + (width*height*2));
112 * Get a pixel from the V plane of the image
    [all...]
  /external/opencv3/modules/imgcodecs/src/
ios_conversions.mm 50 UIImage* MatToUIImage(const cv::Mat& image);
51 void UIImageToMat(const UIImage* image, cv::Mat& m, bool alphaExist);
53 UIImage* MatToUIImage(const cv::Mat& image) {
55 NSData *data = [NSData dataWithBytes:image.data
56 length:image.elemSize()*image.total()];
60 if (image.elemSize() == 1) {
70 CGImageRef imageRef = CGImageCreate(image.cols,
71 image.rows,
73 8 * image.elemSize()
    [all...]
  /external/pdfium/xfa/src/fxbarcode/
BC_Reader.h 15 virtual CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e) = 0;
16 virtual CFX_ByteString Decode(CBC_BinaryBitmap* image,
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixReader.h 17 CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e);
18 CFX_ByteString Decode(CBC_BinaryBitmap* image, int hints, int32_t& e);
  /external/skia/src/core/
SkDistanceFieldGen.h 32 * @param image 8-bit mask we're using to generate the distance field.
33 * @param w Width of the original image.
34 * @param h Height of the original image.
35 * @param rowBytes Size of each row in the image, in bytes
38 const unsigned char* image,
45 * @param image 1-bit mask we're using to generate the distance field.
46 * @param w Width of the original image.
47 * @param h Height of the original image.
48 * @param rowBytes Size of each row in the image, in bytes
51 const unsigned char* image,
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_image.h 60 void h264bsdWriteMacroblock(image_t *image, u8 *data);
63 void h264bsdWriteOutputBlocks(image_t *image, u32 mbNum, u8 *data,
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MosaicTypes.h 64 * Note: Currently assumes a YVU image
70 ImageType image; member in class:MosaicFrame
84 image = ImageUtils::allocateImage(width, height, ImageUtils::IMAGE_TYPE_NUM_CHANNELS);
91 if (image)
92 free(image);
96 * Get the V plane of the image.
100 return (image + (width*height));
104 * Get the U plane of the image.
108 return (image + (width*height*2));
112 * Get a pixel from the V plane of the image
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /packages/services/Telephony/src/org/apache/james/mime4j/field/address/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /packages/services/Telephony/src/org/apache/james/mime4j/field/contenttype/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /packages/services/Telephony/src/org/apache/james/mime4j/field/datetime/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /external/opencv/cvaux/src/
extendededges.cpp 46 //void icvCutContour( CvSeq* current, IplImage* image );
47 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image );
50 //create lists of segments of all contours from image
51 CvSeq* cvExtractSingleEdges( IplImage* image, //bw image - it's content will be destroyed by cvFindContours
56 cvFindContours( image, tmp_storage, &contours, sizeof(CvContour), CV_RETR_LIST, CV_CHAIN_APPROX_NONE );
57 cvZero( image );
75 CvSeq* new_seq = icvCutContourRaster( current, storage, image );
121 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image /*tmp image*/)
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/core/Matrix/
Drawing_2.cpp 27 int Drawing_Random_Lines( Mat image, char* window_name, RNG rng );
28 int Drawing_Random_Rectangles( Mat image, char* window_name, RNG rng );
29 int Drawing_Random_Ellipses( Mat image, char* window_name, RNG rng );
30 int Drawing_Random_Polylines( Mat image, char* window_name, RNG rng );
31 int Drawing_Random_Filled_Polygons( Mat image, char* window_name, RNG rng );
32 int Drawing_Random_Circles( Mat image, char* window_name, RNG rng );
33 int Displaying_Random_Text( Mat image, char* window_name, RNG rng );
34 int Displaying_Big_End( Mat image, char* window_name, RNG rng );
51 Mat image = Mat::zeros( window_height, window_width, CV_8UC3 ); local
53 imshow( window_name, image );
    [all...]
  /frameworks/base/media/java/android/media/
ImageWriter.java 39 * The ImageWriter class allows an application to produce Image data into a
51 * The input Image data is encapsulated in {@link Image} objects. To produce
52 * Image data into a destination {@link android.view.Surface Surface}, the
53 * application can get an input Image via {@link #dequeueInputImage} then write
54 * Image data into it. Multiple such {@link Image} objects can be dequeued at
59 * If the application already has an Image from {@link ImageReader}, the
60 * application can directly queue this Image into ImageWriter (via
63 * {@link ImageReader}, this is the only way to send Image data to ImageWriter
    [all...]
  /developers/build/prebuilts/gradle/WearDrawers/Wearable/src/main/java/com/example/android/wearable/wear/weardrawers/
Planet.java 25 private String image; field in class:Planet
33 String image,
40 this.image = image;
55 return image;
  /developers/samples/android/wearable/wear/WearDrawers/Wearable/src/main/java/com/example/android/wearable/wear/weardrawers/
Planet.java 25 private String image; field in class:Planet
33 String image,
40 this.image = image;
55 return image;
  /development/samples/browseable/WearDrawers/src/com.example.android.wearable.wear.weardrawers/
Planet.java 25 private String image; field in class:Planet
33 String image,
40 this.image = image;
55 return image;
  /external/opencv3/modules/cudaimgproc/perf/
perf_gftt.cpp 61 const cv::Mat image = readImage(fileName, cv::IMREAD_GRAYSCALE); local
62 ASSERT_FALSE(image.empty());
69 cv::Ptr<cv::cuda::CornersDetector> d_detector = cv::cuda::createGoodFeaturesToTrackDetector(image.type(), maxCorners, qualityLevel, minDistance);
71 const cv::cuda::GpuMat d_image(image);
82 TEST_CYCLE() cv::goodFeaturesToTrack(image, pts, maxCorners, qualityLevel, minDistance);
  /external/opencv3/modules/cudalegacy/perf/
perf_labeling.cpp 49 DEF_PARAM_TEST_1(Image, string);
83 : image(img), _labels(image.size(), CV_32SC1, cv::Scalar::all(-1)) {stack = new dot[image.cols * image.rows];}
96 unsigned char* source = (unsigned char*)image.data;
97 int width = image.cols;
98 int height = image.rows;
100 for (int j = 0; j < image.rows; ++j)
101 for (int i = 0; i < image.cols; ++i
139 cv::Mat image; member in struct:GreedyLabeling
149 const cv::Mat image = readImage(GetParam(), cv::IMREAD_GRAYSCALE); local
172 const cv::Mat image = readImage(GetParam(), cv::IMREAD_GRAYSCALE); local
    [all...]

Completed in 4578 milliseconds

1 23 4 5 6 7 8 91011>>