You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
468 B

#include "decodedata.h"
int main(int argc, char* argv[])
{
DecodeData* m_DecodeData = new DecodeData();
std::string filestr = "C:/Users/75929/Desktop/S732/1105.dat";
//std::string filestr = "E:/03855jcw/S732/H265data/1080ir2.dat";
m_DecodeData->m_CurrentVideo = 1;//0:红外1可见光
m_DecodeData->m_LocalHeight = 1365;// 本地海拔
m_DecodeData->Init();
m_DecodeData->processFileInChunks(filestr, 6 * 1024);
return 0;
}