AFAIK std::auto_ptr<>
is not suitable for STL containers.
Is it safe to use cv::Ptr<>
within STL containers e.g. as std::vector< cv::Ptr<MyObject> >
?
1 | initial version |
AFAIK std::auto_ptr<>
is not suitable for STL containers.
Is it safe to use cv::Ptr<>
within STL containers e.g. as std::vector< cv::Ptr<MyObject> >
?