Remove useless OpenCV reference
authorDmytro Dzhulgakov <dzhulgakov@fb.com>
Thu, 28 Feb 2019 07:18:46 +0000 (23:18 -0800)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Thu, 28 Feb 2019 07:31:10 +0000 (23:31 -0800)
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/17564

Differential Revision: D14255542

Pulled By: dzhulgakov

fbshipit-source-id: c129f3751ae82deedd258ee16586552b77baaca6

caffe2/operators/generate_proposals_op_gpu_test.cc
caffe2/operators/generate_proposals_op_test.cc
caffe2/operators/generate_proposals_op_util_nms.h

index 5db1950..da3f56a 100644 (file)
@@ -8,10 +8,6 @@
 #include "caffe2/core/context_gpu.h"
 #include "caffe2/operators/generate_proposals_op_util_boxes.h"
 
-#ifdef CAFFE2_USE_OPENCV
-#include <opencv2/opencv.hpp>
-#endif // CAFFE2_USE_OPENCV
-
 namespace caffe2 {
 
 static void AddLinSpacedInput(
index 004402b..eff256d 100644 (file)
@@ -6,10 +6,6 @@
 
 #include "caffe2/operators/generate_proposals_op_util_boxes.h"
 
-#ifdef CAFFE2_USE_OPENCV
-#include <opencv2/opencv.hpp>
-#endif // CAFFE2_USE_OPENCV
-
 namespace caffe2 {
 
 static void AddConstInput(
index 6747058..b90fea8 100644 (file)
@@ -8,10 +8,6 @@
 #include "caffe2/utils/eigen_utils.h"
 #include "caffe2/utils/math.h"
 
-#ifdef CAFFE2_USE_OPENCV
-#include <opencv2/opencv.hpp>
-#endif // CAFFE2_USE_OPENCV
-
 namespace caffe2 {
 namespace utils {