aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/pi_examples/camera
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-01-30 10:43:03 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-30 12:33:54 -0800
commit4463d105a8a4a83642b9709ba79310e8f4ddf577 (patch)
tree240e9a0a9a6b9ad956c704776a33126ba00cbfe8 /tensorflow/contrib/pi_examples/camera
parent8f0e7207774279f4fe50f4d6c4fbd576e2941463 (diff)
Cleanup: Ran clang-format on all *.{cc,h} files in tensorflow/contrib/.../*.{hh,c}.
PiperOrigin-RevId: 183855242
Diffstat (limited to 'tensorflow/contrib/pi_examples/camera')
-rw-r--r--tensorflow/contrib/pi_examples/camera/camera.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/tensorflow/contrib/pi_examples/camera/camera.cc b/tensorflow/contrib/pi_examples/camera/camera.cc
index cb20661662..8110185ea8 100644
--- a/tensorflow/contrib/pi_examples/camera/camera.cc
+++ b/tensorflow/contrib/pi_examples/camera/camera.cc
@@ -17,16 +17,16 @@ limitations under the License.
#include <errno.h>
#include <fcntl.h>
-#include <fstream>
#include <libv4l2.h>
#include <linux/videodev2.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
-#include <sys/types.h>
-#include <sys/time.h>
#include <sys/mman.h>
+#include <sys/time.h>
+#include <sys/types.h>
+#include <fstream>
#include <vector>
#include "tensorflow/core/framework/graph.pb.h"
@@ -46,10 +46,10 @@ limitations under the License.
// These are all common classes it's handy to reference with no namespace.
using tensorflow::Flag;
-using tensorflow::Tensor;
+using tensorflow::int32;
using tensorflow::Status;
using tensorflow::string;
-using tensorflow::int32;
+using tensorflow::Tensor;
// Used to store the memory-mapped buffers we use for capture.
struct CameraBuffer {