#include "test_precomp.hpp" #include "npy_blob.hpp" namespace cvtest { using namespace cv; using namespace cv::dnn; template static std::string _tf(TString filename) { return (getOpenCVExtraDir() + "/dnn/") + filename; } TEST(Reproducibility_AlexNet, Accuracy) { Net net; { Ptr importer = createCaffeImporter(_tf("bvlc_alexnet.prototxt"), _tf("bvlc_alexnet.caffemodel")); ASSERT_TRUE(importer != NULL); importer->populateNet(net); } std::vector inpMats; inpMats.push_back( imread(_tf("alexnet_0.png")) ); inpMats.push_back( imread(_tf("alexnet_1.png")) ); ASSERT_TRUE(!inpMats[0].empty() && !inpMats[1].empty()); net.setBlob(".data", Blob(inpMats)); net.forward(); Blob out = net.getBlob("prob"); Blob ref = blobFromNPY(_tf("alexnet.npy")); normAssert(ref, out, "prob"); } }