I\'m working with DICOM files that contain image data.I am using pydicom to read the metadata from the .DCM file.Now, the pixel data that is extracted from the .DCM file is returned as a 2 dimensional
std::vector<T>开发者_开发百科 vec;// line #1 vec.reserve(100);// line #2 I am wondering if line #1 triggers a small allocation (say, memory for 10 Ts), or if the first allocation happens on li