Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/modules/dnn/test/npy_blob.hpp
16356 views
1
// This file is part of OpenCV project.
2
// It is subject to the license terms in the LICENSE file found in the top-level directory
3
// of this distribution and at http://opencv.org/license.html.
4
//
5
// Copyright (C) 2017, Intel Corporation, all rights reserved.
6
// Third party copyrights are property of their respective owners.
7
8
#ifndef __OPENCV_DNN_TEST_NPY_BLOB_HPP__
9
#define __OPENCV_DNN_TEST_NPY_BLOB_HPP__
10
11
namespace cv
12
{
13
14
// Parse serialized NumPy array by np.save(...)
15
// Based on specification of .npy data format.
16
Mat blobFromNPY(const std::string& path);
17
18
}
19
20
#endif
21
22