comparison OrthancServer/ParsedDicomFile.cpp @ 1950:533ff46e944b

return a single raw frame from DICOM videos
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 05 Apr 2016 11:07:02 +0200
parents 40b7a0176305
children fc16ee04e71b
comparison
equal deleted inserted replaced
1949:d90f737f2dde 1950:533ff46e944b
1259 1259
1260 void ParsedDicomFile::InvalidateCache() 1260 void ParsedDicomFile::InvalidateCache()
1261 { 1261 {
1262 pimpl_->frameIndex_.reset(NULL); 1262 pimpl_->frameIndex_.reset(NULL);
1263 } 1263 }
1264
1265
1266 unsigned int ParsedDicomFile::GetFramesCount() const
1267 {
1268 return DicomFrameIndex::GetFramesCount(*pimpl_->file_->getDataset());
1269 }
1264 } 1270 }