├── .gitignore ├── .vs └── VideoQualityDetection │ └── v16 │ ├── .suo │ └── Browse.VC.db ├── Action.cpp ├── Action.h ├── Bootstrap.cpp ├── BrightDetect.cpp ├── BrightDetection.h ├── Camera.cpp ├── Camera.h ├── ColorCastDetect.cpp ├── ColorCastDetection.h ├── ContrastDetect.cpp ├── ContrastDetection.h ├── Detection.h ├── FreezeDetect.cpp ├── FreezeDetection.h ├── HttpClient.cpp ├── HttpClient.h ├── LOSDetect.cpp ├── LOSDetection.h ├── NoiseDetect.cpp ├── NoiseDetection.h ├── OcclusionDetect.cpp ├── OcclusionDetection.h ├── README.md ├── ShakeDetect.cpp ├── ShakeDetection.h ├── SharpnessDetect.cpp ├── SharpnessDetection.h ├── StripeDetect.cpp ├── StripeDetection.h ├── VQA.cpp ├── VideoQualityDetection.sln ├── VideoQualityDetection.vcxproj ├── VideoQualityDetection.vcxproj.filters ├── VideoQualityDetection.vcxproj.user ├── downloaded.file ├── main.cpp ├── noiseTest.cpp ├── test.cpp ├── url_code.cpp ├── url_code.h └── x64 └── Debug ├── Action.obj ├── Bootstrap.obj ├── BrightDetect.obj ├── Camera.obj ├── ColorCastDetect.obj ├── ContrastDetect.obj ├── Detection.obj ├── FreezeDetect.obj ├── HttpClient.obj ├── HttpRequest.obj ├── LOSDetect.obj ├── NoiseDetect.obj ├── OcclusionDetect.obj ├── ShakeDetect.obj ├── SharpnessDetect.obj ├── StripeDetect.obj ├── VQA.obj ├── VideoQua.752614e3.tlog ├── CL.command.1.tlog ├── CL.read.1.tlog ├── CL.write.1.tlog ├── VideoQualityDetection.lastbuildstate ├── link.command.1.tlog ├── link.read.1.tlog └── link.write.1.tlog ├── VideoQualityDetection.Build.CppClean.log ├── VideoQualityDetection.exe ├── VideoQualityDetection.exe.recipe ├── VideoQualityDetection.ilk ├── VideoQualityDetection.log ├── VideoQualityDetection.pdb ├── VideoQualityDetection.vcxproj.FileListAbsolute.txt ├── consumer.obj ├── libmysql.dll ├── main.obj ├── producer.obj ├── test.obj ├── test4HTTP.obj ├── url_code.obj ├── vc142.idb ├── vc142.pdb └── vcpkg.applocal.log /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/VideoQualityDetection/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/.vs/VideoQualityDetection/v16/.suo -------------------------------------------------------------------------------- /.vs/VideoQualityDetection/v16/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/.vs/VideoQualityDetection/v16/Browse.VC.db -------------------------------------------------------------------------------- /Action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/Action.cpp -------------------------------------------------------------------------------- /Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/Action.h -------------------------------------------------------------------------------- /Bootstrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/Bootstrap.cpp -------------------------------------------------------------------------------- /BrightDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/BrightDetect.cpp -------------------------------------------------------------------------------- /BrightDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/BrightDetection.h -------------------------------------------------------------------------------- /Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/Camera.cpp -------------------------------------------------------------------------------- /Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/Camera.h -------------------------------------------------------------------------------- /ColorCastDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/ColorCastDetect.cpp -------------------------------------------------------------------------------- /ColorCastDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/ColorCastDetection.h -------------------------------------------------------------------------------- /ContrastDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/ContrastDetect.cpp -------------------------------------------------------------------------------- /ContrastDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/ContrastDetection.h -------------------------------------------------------------------------------- /Detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/Detection.h -------------------------------------------------------------------------------- /FreezeDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/FreezeDetect.cpp -------------------------------------------------------------------------------- /FreezeDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/FreezeDetection.h -------------------------------------------------------------------------------- /HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/HttpClient.cpp -------------------------------------------------------------------------------- /HttpClient.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /LOSDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/LOSDetect.cpp -------------------------------------------------------------------------------- /LOSDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/LOSDetection.h -------------------------------------------------------------------------------- /NoiseDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/NoiseDetect.cpp -------------------------------------------------------------------------------- /NoiseDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/NoiseDetection.h -------------------------------------------------------------------------------- /OcclusionDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/OcclusionDetect.cpp -------------------------------------------------------------------------------- /OcclusionDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/OcclusionDetection.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # VideoQualityDetection 2 | 视频质量检测算法 3 | -------------------------------------------------------------------------------- /ShakeDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/ShakeDetect.cpp -------------------------------------------------------------------------------- /ShakeDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/ShakeDetection.h -------------------------------------------------------------------------------- /SharpnessDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/SharpnessDetect.cpp -------------------------------------------------------------------------------- /SharpnessDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/SharpnessDetection.h -------------------------------------------------------------------------------- /StripeDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/StripeDetect.cpp -------------------------------------------------------------------------------- /StripeDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/StripeDetection.h -------------------------------------------------------------------------------- /VQA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/VQA.cpp -------------------------------------------------------------------------------- /VideoQualityDetection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/VideoQualityDetection.sln -------------------------------------------------------------------------------- /VideoQualityDetection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/VideoQualityDetection.vcxproj -------------------------------------------------------------------------------- /VideoQualityDetection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/VideoQualityDetection.vcxproj.filters -------------------------------------------------------------------------------- /VideoQualityDetection.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/VideoQualityDetection.vcxproj.user -------------------------------------------------------------------------------- /downloaded.file: -------------------------------------------------------------------------------- 1 | position1 -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/main.cpp -------------------------------------------------------------------------------- /noiseTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/noiseTest.cpp -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/test.cpp -------------------------------------------------------------------------------- /url_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/url_code.cpp -------------------------------------------------------------------------------- /url_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/url_code.h -------------------------------------------------------------------------------- /x64/Debug/Action.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/Action.obj -------------------------------------------------------------------------------- /x64/Debug/Bootstrap.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/Bootstrap.obj -------------------------------------------------------------------------------- /x64/Debug/BrightDetect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/BrightDetect.obj -------------------------------------------------------------------------------- /x64/Debug/Camera.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/Camera.obj -------------------------------------------------------------------------------- /x64/Debug/ColorCastDetect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/ColorCastDetect.obj -------------------------------------------------------------------------------- /x64/Debug/ContrastDetect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/ContrastDetect.obj -------------------------------------------------------------------------------- /x64/Debug/Detection.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/Detection.obj -------------------------------------------------------------------------------- /x64/Debug/FreezeDetect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/FreezeDetect.obj -------------------------------------------------------------------------------- /x64/Debug/HttpClient.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/HttpClient.obj -------------------------------------------------------------------------------- /x64/Debug/HttpRequest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/HttpRequest.obj -------------------------------------------------------------------------------- /x64/Debug/LOSDetect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/LOSDetect.obj -------------------------------------------------------------------------------- /x64/Debug/NoiseDetect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/NoiseDetect.obj -------------------------------------------------------------------------------- /x64/Debug/OcclusionDetect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/OcclusionDetect.obj -------------------------------------------------------------------------------- /x64/Debug/ShakeDetect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/ShakeDetect.obj -------------------------------------------------------------------------------- /x64/Debug/SharpnessDetect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/SharpnessDetect.obj -------------------------------------------------------------------------------- /x64/Debug/StripeDetect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/StripeDetect.obj -------------------------------------------------------------------------------- /x64/Debug/VQA.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VQA.obj -------------------------------------------------------------------------------- /x64/Debug/VideoQua.752614e3.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQua.752614e3.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /x64/Debug/VideoQua.752614e3.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQua.752614e3.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /x64/Debug/VideoQua.752614e3.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQua.752614e3.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /x64/Debug/VideoQua.752614e3.tlog/VideoQualityDetection.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQua.752614e3.tlog/VideoQualityDetection.lastbuildstate -------------------------------------------------------------------------------- /x64/Debug/VideoQua.752614e3.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQua.752614e3.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /x64/Debug/VideoQua.752614e3.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQua.752614e3.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /x64/Debug/VideoQua.752614e3.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQua.752614e3.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /x64/Debug/VideoQualityDetection.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQualityDetection.Build.CppClean.log -------------------------------------------------------------------------------- /x64/Debug/VideoQualityDetection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQualityDetection.exe -------------------------------------------------------------------------------- /x64/Debug/VideoQualityDetection.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQualityDetection.exe.recipe -------------------------------------------------------------------------------- /x64/Debug/VideoQualityDetection.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQualityDetection.ilk -------------------------------------------------------------------------------- /x64/Debug/VideoQualityDetection.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQualityDetection.log -------------------------------------------------------------------------------- /x64/Debug/VideoQualityDetection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQualityDetection.pdb -------------------------------------------------------------------------------- /x64/Debug/VideoQualityDetection.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/VideoQualityDetection.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /x64/Debug/consumer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/consumer.obj -------------------------------------------------------------------------------- /x64/Debug/libmysql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/libmysql.dll -------------------------------------------------------------------------------- /x64/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/main.obj -------------------------------------------------------------------------------- /x64/Debug/producer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/producer.obj -------------------------------------------------------------------------------- /x64/Debug/test.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/test.obj -------------------------------------------------------------------------------- /x64/Debug/test4HTTP.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/test4HTTP.obj -------------------------------------------------------------------------------- /x64/Debug/url_code.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/url_code.obj -------------------------------------------------------------------------------- /x64/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/vc142.idb -------------------------------------------------------------------------------- /x64/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChengHaoHappy/VideoQualityDetection/HEAD/x64/Debug/vc142.pdb -------------------------------------------------------------------------------- /x64/Debug/vcpkg.applocal.log: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------