aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples
diff options
context:
space:
mode:
authorGravatar TShapinsky <tobiasshapinsky@gmail.com>2018-07-10 13:16:38 -0400
committerGravatar GitHub <noreply@github.com>2018-07-10 13:16:38 -0400
commitf01ef8253068e7ccae92146ece6add3b57b1b916 (patch)
treeea8dbc1d38e8e2bcec462a572671da2f5d10cec9 /tensorflow/examples
parent7aeb0807b6293067534655709977861b2fec529b (diff)
Fix incorrect documentation
Diffstat (limited to 'tensorflow/examples')
-rw-r--r--tensorflow/examples/android/src/org/tensorflow/demo/TensorFlowObjectDetectionAPIModel.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/examples/android/src/org/tensorflow/demo/TensorFlowObjectDetectionAPIModel.java b/tensorflow/examples/android/src/org/tensorflow/demo/TensorFlowObjectDetectionAPIModel.java
index 614d3c7dd7..9739e58018 100644
--- a/tensorflow/examples/android/src/org/tensorflow/demo/TensorFlowObjectDetectionAPIModel.java
+++ b/tensorflow/examples/android/src/org/tensorflow/demo/TensorFlowObjectDetectionAPIModel.java
@@ -137,7 +137,7 @@ public class TensorFlowObjectDetectionAPIModel implements Classifier {
Trace.beginSection("recognizeImage");
Trace.beginSection("preprocessBitmap");
- // Preprocess the image data from 0-255 int to normalized float based
+ // Preprocess the image data to extract R, G and B bytes from int of form 0x00RRGGBB
// on the provided parameters.
bitmap.getPixels(intValues, 0, bitmap.getWidth(), 0, 0, bitmap.getWidth(), bitmap.getHeight());