Searched refs:new_image (Results 1 - 6 of 6) sorted by relevance

/external/opencv3/samples/cpp/tutorial_code/HighGUI/
H A DBasicLinearTransformsTrackbar.cpp28 Mat new_image = Mat::zeros( image.size(), image.type() ); local
33 new_image.at<Vec3b>(y,x)[c] = saturate_cast<uchar>( alpha*( image.at<Vec3b>(y,x)[c] ) + beta );
35 imshow("New Image", new_image);
/external/opencv3/samples/cpp/tutorial_code/ImgProc/
H A DBasicLinearTransforms.cpp24 Mat new_image = Mat::zeros( image.size(), image.type() ); local
33 /// Do the operation new_image(i,j) = alpha*image(i,j) + beta
35 /// image.convertTo(new_image, -1, alpha, beta);
41 new_image.at<Vec3b>(y,x)[c] = saturate_cast<uchar>( alpha*( image.at<Vec3b>(y,x)[c] ) + beta );
52 imshow("New Image", new_image);
/external/google-breakpad/src/client/mac/handler/
H A Ddynamic_images.cc489 DynamicImage *new_image; local
490 new_image = new DynamicImage(&mach_header_bytes[0],
498 if (new_image->IsValid()) {
499 images.image_list_.push_back(DynamicImageRef(new_image));
501 delete new_image;
/external/webp/src/enc/
H A Ddelta_palettization.c349 // in src array. Write predicted_value + palette_entry to new_image. Return
369 uint32_t* new_image) {
380 new_image[x] = new_value;
395 uint32_t* new_image = (uint32_t*)WebPSafeMalloc(width, sizeof(*new_image)); local
397 if (new_image == NULL || tmp_row == NULL) {
407 const uint32_t predicted_value = Predict(x, y, new_image);
411 cur_src, src_stride, new_image);
421 WebPSafeFree(new_image);
366 ApplyBestPaletteEntry(int x, int y, uint32_t new_value, uint32_t palette_value, uint32_t* src, int src_stride, uint32_t* new_image) argument
/external/autotest/client/cros/faft/
H A Drpc_functions.py56 self._obj.new_image()
475 self._bios_handler.new_image(bios_path)
/external/autotest/client/cros/faft/utils/
H A Dflashrom_handler.py136 def new_image(self, image_file=None): member in class:FlashromHandler
239 the sections is taken from the files created by new_image()

Completed in 739 milliseconds