Home
last modified time | relevance | path

Searched refs:byteValues (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/tools/android/test/src/org/tensorflow/demo/
DTensorFlowObjectDetectionAPIModel.java53 private byte[] byteValues; field in TensorFlowObjectDetectionAPIModel
124 d.byteValues = new byte[d.inputSize * d.inputSize * 3]; in create()
145 byteValues[i * 3 + 2] = (byte) (intValues[i] & 0xFF); in recognizeImage()
146 byteValues[i * 3 + 1] = (byte) ((intValues[i] >> 8) & 0xFF); in recognizeImage()
147 byteValues[i * 3 + 0] = (byte) ((intValues[i] >> 16) & 0xFF); in recognizeImage()
153 inferenceInterface.feed(inputName, byteValues, 1, inputSize, inputSize, 3); in recognizeImage()
/external/auto/common/src/test/java/com/google/auto/common/
DAnnotationValuesTest.java83 byte[] byteValues(); in byteValues() method
127 byteValues = {(byte) 8, (byte) 9},