Home
last modified time | relevance | path

Searched refs:writeRaw (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/ml/src/
Dann_mlp.cpp1161 fs.writeRaw("d", weights[0].ptr(), weights[0].total()*esz); in write()
1164 fs.writeRaw("d", weights[l_count].ptr(), weights[l_count].total()*esz); in write()
1167 fs.writeRaw("d", weights[l_count+1].ptr(), weights[l_count+1].total()*esz); in write()
1173 fs.writeRaw("d", weights[i].ptr(), weights[i].total()*esz); in write()
Dsvm.cpp2051 fs.writeRaw("f", sv.ptr(i), sv.cols*sv.elemSize()); in write()
2067 fs.writeRaw("d", (const uchar*)&df_alpha[df.ofs], sv_count*sizeof(df_alpha[0])); in write()
2072 fs.writeRaw("i", (const uchar*)&df_index[df.ofs], sv_count*sizeof(df_index[0])); in write()
/external/opencv3/modules/core/include/opencv2/core/
Dpersistence.hpp419 void writeRaw( const String& fmt, const uchar* vec, size_t len );
778 fs->writeRaw(fmt, !vec.empty() ? (uchar*)&vec[0] : 0, vec.size() * sizeof(_Tp)); in operator ()()
/external/opencv3/modules/core/test/
Dtest_io.cpp182 fs.writeRaw("u", arr, (int)(sizeof(arr)/sizeof(arr[0]))); in run()
/external/opencv3/modules/core/src/
Dpersistence.cpp5256 void FileStorage::writeRaw( const String& fmt, const uchar* vec, size_t len ) in writeRaw() function in cv::FileStorage