|
@@ -1,5 +1,5 @@
|
|
|
#include <sstream>
|
|
|
-
|
|
|
+#include <iostream>
|
|
|
#include "pybind11/pybind11.h"
|
|
|
#include "pybind11/numpy.h"
|
|
|
#include "opencv2/opencv.hpp"
|
|
@@ -59,6 +59,7 @@ public:
|
|
|
|
|
|
resnet::Attribute forward(const cv::Mat& image)
|
|
|
{
|
|
|
+ cout << image.size << std::endl;
|
|
|
return instance_->forward(cvimg(image));
|
|
|
}
|
|
|
|