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

1 2

  /pdk/apps/CameraITS/pymodules/its/
image.py 22 import numpy namespace
26 DEFAULT_YUV_TO_RGB_CCM = numpy.matrix([
31 DEFAULT_YUV_OFFSETS = numpy.array([0, 128, 128])
33 DEFAULT_GAMMA_LUT = numpy.array(
36 DEFAULT_INVGAMMA_LUT = numpy.array(
58 y = numpy.fromfile(f, numpy.uint8, w*h, "")
59 v = numpy.fromfile(f, numpy.uint8, w*h/4, "")
60 u = numpy.fromfile(f, numpy.uint8, w*h/4, ""
    [all...]
  /cts/suite/audio_quality/test_description/conf/
check_conf.py 18 import numpy as np
20 from numpy import *
  /pdk/apps/CameraITS/tests/
test_black_level.py 22 import numpy namespace
68 its.image.write_image(numpy.absolute(uimg - 0.5) * 2,
74 yhist,_ = numpy.histogram(yimg*255, 256, (0,256))
75 ymodes.append(numpy.argmax(yhist))
76 uhist,_ = numpy.histogram(uimg*255, 256, (0,256))
77 umodes.append(numpy.argmax(uhist))
78 vhist,_ = numpy.histogram(vimg*255, 256, (0,256))
79 vmodes.append(numpy.argmax(vhist))
test_param_black_level_lock.py 22 import numpy namespace
58 hist,_ = numpy.histogram(yimg*255, 256, (0,256))
59 modes.append(numpy.argmax(hist))
test_linearity.py 19 import numpy namespace
43 gamma_lut = numpy.array(
45 inv_gamma_lut = numpy.array(
test_exposure.py 19 import numpy namespace
69 m, b = numpy.polyfit(mults, values, 1).tolist()
test_jpeg.py 21 import numpy namespace
52 img = numpy.array(Image.open(fname)).reshape(w,h,3) / 255.0
test_3a_remote.py 21 import numpy namespace
test_capture_result.py 21 import numpy namespace
77 xs = numpy.array([range(h_map)] * w_map).reshape(w_map, h_map)
78 ys = numpy.array([[i]*h_map for i in range(w_map)]).reshape(w_map, h_map)
82 zs = numpy.array(lsc_map[start:start+size]).reshape(w_map, h_map)
test_black_white.py 19 import numpy namespace
test_param_tonemap_mode.py 20 import numpy namespace
test_predicted_wb.py 21 import numpy namespace
  /cts/suite/audio_quality/test_description/processing/
example.py 18 import numpy as np
calc_delay.py 17 import numpy as np
18 import numpy.linalg namespace
playback_thd.py 18 import numpy as np
recording_thd.py 18 import numpy as np
calc_thd.py 17 import numpy as np
gen_random.py 18 import numpy as np
check_spectrum_playback.py 18 import numpy as np
check_spectrum.py 18 import numpy as np
  /external/libvpx/libvpx/vp9/common/
vp9_tapify.py 11 import sys,string,os,re,math,numpy namespace
45 r,c = numpy.dot(affine,[y-radius, x-radius])
64 r,c = numpy.dot(affine,[y-7.5, x-7.5])
  /system/extras/tests/sdcard/
plot_sdcard.py 44 import numpy namespace
211 x = numpy.arange(len(dataset.data), dtype='int_')
247 x = numpy.array(dataset.time, dtype='float_')
277 x = numpy.array(dataset.time, dtype='int_')
  /cts/suite/audio_quality/test_description/
processing_main.py 18 import numpy as np
  /frameworks/base/tools/velocityplot/
velocityplot.py 27 import numpy as np
  /external/chromium_org/tools/telemetry/third_party/png/
png.py 765 # changed the extend function to cope with NumPy integer types
783 # Not only does this work for the (slightly broken) NumPy
2883 import numpy namespace
2895 import numpy namespace
2907 import numpy namespace
2918 import numpy namespace
    [all...]

Completed in 208 milliseconds

1 2