From 4d69bcf7f2c734aa8c3326c3c469729c0805cfd5 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Wed, 18 Jan 2017 11:17:34 -0800 Subject: Migrate to new namespace for Input, Output, etc. in the C++ API. Change: 144857401 --- tensorflow/examples/label_image/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tensorflow/examples/label_image') diff --git a/tensorflow/examples/label_image/main.cc b/tensorflow/examples/label_image/main.cc index 544b1b2738..08e6e4544a 100644 --- a/tensorflow/examples/label_image/main.cc +++ b/tensorflow/examples/label_image/main.cc @@ -97,7 +97,7 @@ Status ReadTensorFromImageFile(string file_name, const int input_height, file_name); // Now try to figure out what kind of file it is and decode it. const int wanted_channels = 3; - Output image_reader; + tensorflow::Output image_reader; if (tensorflow::StringPiece(file_name).ends_with(".png")) { image_reader = DecodePng(root.WithOpName("png_reader"), file_reader, DecodePng::Channels(wanted_channels)); -- cgit v1.2.3