HomeSort by relevance Sort by last modified time
    Searched refs:wanted_channels (Results 1 - 9 of 9) sorted by null

  /external/tensorflow/tensorflow/lite/examples/label_image/
bitmap_helpers.h 31 int wanted_channels, Settings* s);
bitmap_helpers_impl.h 33 int wanted_channels, Settings* s) {
56 {1, wanted_height, wanted_width, wanted_channels}, quant);
83 auto output_number_of_pixels = wanted_height * wanted_width * wanted_channels;
label_image.cc 167 int wanted_channels = dims->data[3]; local
174 wanted_width, wanted_channels, s);
179 wanted_width, wanted_channels, s);
  /external/tensorflow/tensorflow/contrib/pi_examples/label_image/
label_image.cc 147 const int wanted_channels = 3; local
148 if (image_channels < wanted_channels) {
150 "Image needs to have at least ", wanted_channels, " but only has ",
159 {1, wanted_height, wanted_width, wanted_channels}));
174 float* out_row = out + (y * wanted_width * wanted_channels);
181 in_top_row + (left_x_index * wanted_channels);
183 in_top_row + (right_x_index * wanted_channels);
185 in_bottom_row + (left_x_index * wanted_channels);
187 in_bottom_row + (right_x_index * wanted_channels);
189 float* out_pixel = out_row + (x * wanted_channels);
    [all...]
  /external/tensorflow/tensorflow/contrib/pi_examples/camera/
camera.cc 336 const int wanted_channels = 3; local
337 if (image_channels < wanted_channels) {
339 "Image needs to have at least ", wanted_channels, " but only has ",
348 {1, wanted_height, wanted_width, wanted_channels}));
363 float* out_row = out + (y * wanted_width * wanted_channels);
370 in_top_row + (left_x_index * wanted_channels);
372 in_top_row + (right_x_index * wanted_channels);
374 in_bottom_row + (left_x_index * wanted_channels);
376 in_bottom_row + (right_x_index * wanted_channels);
378 float* out_pixel = out_row + (x * wanted_channels);
    [all...]
  /external/tensorflow/tensorflow/examples/label_image/
main.cc 139 const int wanted_channels = 3; local
143 DecodePng::Channels(wanted_channels));
154 DecodeJpeg::Channels(wanted_channels));
  /external/tensorflow/tensorflow/examples/multibox_detector/
main.cc 87 const int wanted_channels = 3; local
91 DecodePng::Channels(wanted_channels));
97 DecodeJpeg::Channels(wanted_channels));
  /external/python/cpython2/Modules/
ossaudiodev.c 491 int wanted_fmt, wanted_channels, wanted_rate, strict=0; local
495 &wanted_fmt, &wanted_channels, &wanted_rate,
510 channels = wanted_channels;
514 if (strict && channels != wanted_channels) {
518 wanted_channels, channels);
  /external/python/cpython3/Modules/
ossaudiodev.c 565 int wanted_fmt, wanted_channels, wanted_rate, strict=0; local
572 &wanted_fmt, &wanted_channels, &wanted_rate,
587 channels = wanted_channels;
591 if (strict && channels != wanted_channels) {
595 wanted_channels, channels);
    [all...]

Completed in 640 milliseconds