MCPcopy Create free account
hub / github.com/davisking/dlib / serialize

Method serialize

dlib/image_processing/shape_predictor.h:91–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89 }
90
91 friend void serialize (const regression_tree& item, std::ostream& out)
92 {
93 dlib::serialize(item.splits, out);
94 dlib::serialize(item.leaf_values, out);
95 }
96 friend void deserialize (regression_tree& item, std::istream& in)
97 {
98 dlib::deserialize(item.splits, in);

Callers

nothing calls this directly

Calls 1

serializeFunction · 0.70

Tested by

no test coverage detected