我正在尝试使用Caffe导入我自己的经过预先培训的Googlenet模型,在使用模型部署文件进行培训之后,在那里运行Caffe测试,一切正常。但是,当向OpenCv网(加载后)提供图像blob时,我会得到一个异常。
OpenCv代码:
Net net = Dnn.readNetFromCaffe("deploy.prototxt","bvlc_googlenet.caffemodel");
Mat image = Imgcodecs.imread(input.getAbsolutePath(), Imgcodecs.IMREAD_COLOR);
Mat blob = Dnn.blobFromImage(image);
System.out.println(image);
System.out.println(blob);
net.setInput(blob);
Mat result = net.forward().reshape(1);输出错误:
Mat [ 24*15*CV_8UC3, isCont=true, isSubmat=false, nativeObj=0x1bcd0740, dataAddr=0x1a9d1880 ]
Mat [ -1*-1*CV_32FC1, isCont=true, isSubmat=false, nativeObj=0x1bcd0eb0, dataAddr=0x1a4e4340 ]
Exception in thread "main" CvException [org.opencv.core.CvException: cv::Exception: OpenCV(3.4.3) Z:\build tools\opencv-3.4.3\modules\dnn\src\layers\fully_connected_layer.cpp:73: error: (-215:Assertion failed) 1 <= blobs.size() && blobs.size() <= 2 in function 'cv::dnn::FullyConnectedLayerImpl::FullyConnectedLayerImpl'
]
at org.opencv.dnn.Net.forward_1(Native Method)
at org.opencv.dnn.Net.forward(Net.java:62)
at test.OpenCVTests.main(OpenCVTests.java:54)Caffe-train-val-model.prototxt Caffe-deploy-model.prototxt
提前感谢!
发布于 2018-09-18 10:09:18
这个问题在这里为我解决了:https://github.com/opencv/opencv/issues/12578#issuecomment-422304736
“在Caffe model .randomly中,不存在来自Caffe .randomly的丢失3/分类器_重新训练。如果您尝试在Caffe中多次运行该模型,您将得到相同输入的不同输出,因为Caffe随机填充了丢失的权重。”
版权所有(github.com/dk尔特)
https://stackoverflow.com/questions/52380819
复制相似问题