兼容2种帧数显示逻辑:(1)采集时的实时帧数(2)打开影像时的帧数;
This commit is contained in:
tangchao0503
2026-05-28 00:44:59 +08:00
parent 3568495aa9
commit 5f965f0d8e
7 changed files with 81 additions and 34 deletions

View File

@ -31,6 +31,10 @@ public:
// Get all band wavelengths
std::vector<double> bandWavelengths() const;
// Get dimensions
int width() const;
int height() const;
protected:
std::unique_ptr<RasterDataProvider> m_provider;
};