├── README.md ├── opencvTEST ├── .vs │ └── opencvTEST │ │ └── v14 │ │ └── .suo ├── Debug │ ├── opencvTEST.exe │ ├── opencvTEST.ilk │ └── opencvTEST.pdb ├── keyframe │ ├── 1.jpg │ ├── 1006.jpg │ ├── 1016.jpg │ ├── 1057.jpg │ ├── 1099.jpg │ ├── 1119.jpg │ ├── 1126.jpg │ ├── 1139.jpg │ ├── 1141.jpg │ ├── 1181.jpg │ ├── 12.jpg │ ├── 1277.jpg │ ├── 1288.jpg │ ├── 1294.jpg │ ├── 1306.jpg │ ├── 1355.jpg │ ├── 1370.jpg │ ├── 14.jpg │ ├── 153.jpg │ ├── 157.jpg │ ├── 194.jpg │ ├── 197.jpg │ ├── 322.jpg │ ├── 329.jpg │ ├── 372.jpg │ ├── 379.jpg │ ├── 437.jpg │ ├── 542.jpg │ ├── 583.jpg │ ├── 584.jpg │ ├── 646.jpg │ ├── 648.jpg │ ├── 694.jpg │ ├── 700.jpg │ ├── 706.jpg │ ├── 730.jpg │ ├── 74.jpg │ ├── 756.jpg │ ├── 78.jpg │ ├── 792.jpg │ ├── 81.jpg │ ├── 813.jpg │ ├── 82.jpg │ ├── 840.jpg │ ├── 852.jpg │ ├── 872.jpg │ ├── 883.jpg │ ├── 888.jpg │ ├── 890.jpg │ ├── 894.jpg │ ├── 896.jpg │ ├── 907.jpg │ ├── 915.jpg │ ├── 941.jpg │ ├── 97.jpg │ └── 976.jpg ├── opencvTEST.VC.db ├── opencvTEST.sln └── opencvTEST │ ├── 1.jpg │ ├── 1006.jpg │ ├── 1016.jpg │ ├── 1057.jpg │ ├── 1099.jpg │ ├── 1119.jpg │ ├── 1126.jpg │ ├── 1139.jpg │ ├── 1141.jpg │ ├── 1181.jpg │ ├── 12.jpg │ ├── 1277.jpg │ ├── 1288.jpg │ ├── 1294.jpg │ ├── 1306.jpg │ ├── 1355.jpg │ ├── 1370.jpg │ ├── 14.jpg │ ├── 153.jpg │ ├── 157.jpg │ ├── 194.jpg │ ├── 197.jpg │ ├── 322.jpg │ ├── 329.jpg │ ├── 372.jpg │ ├── 379.jpg │ ├── 437.jpg │ ├── 542.jpg │ ├── 583.jpg │ ├── 584.jpg │ ├── 646.jpg │ ├── 648.jpg │ ├── 694.jpg │ ├── 700.jpg │ ├── 706.jpg │ ├── 730.jpg │ ├── 74.jpg │ ├── 756.jpg │ ├── 78.jpg │ ├── 792.jpg │ ├── 81.jpg │ ├── 813.jpg │ ├── 82.jpg │ ├── 840.jpg │ ├── 852.jpg │ ├── 872.jpg │ ├── 883.jpg │ ├── 888.jpg │ ├── 890.jpg │ ├── 894.jpg │ ├── 896.jpg │ ├── 907.jpg │ ├── 915.jpg │ ├── 941.jpg │ ├── 97.jpg │ ├── 976.jpg │ ├── Debug │ ├── main.obj │ ├── opencvTEST.log │ ├── opencvTEST.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ └── opencvTEST.lastbuildstate │ ├── vc140.idb │ └── vc140.pdb │ ├── main.cpp │ ├── opencvTEST.vcxproj │ ├── opencvTEST.vcxproj.filters │ └── video.mp4 ├── scene_detection ├── .idea │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── scene_detection.iml │ └── workspace.xml ├── detection.py ├── key frame │ ├── images │ │ ├── eigth │ │ │ ├── -100.png │ │ │ ├── -1003.png │ │ │ ├── -1007.png │ │ │ ├── -101.png │ │ │ ├── -1011.png │ │ │ ├── -1070.png │ │ │ ├── -1071.png │ │ │ ├── -1072.png │ │ │ ├── -11.png │ │ │ ├── -1118.png │ │ │ ├── -1140.png │ │ │ ├── -12.png │ │ │ ├── -1278.png │ │ │ ├── -1279.png │ │ │ ├── -1280.png │ │ │ ├── -13.png │ │ │ ├── -1384.png │ │ │ ├── -1385.png │ │ │ ├── -155.png │ │ │ ├── -156.png │ │ │ ├── -157.png │ │ │ ├── -158.png │ │ │ ├── -196.png │ │ │ ├── -197.png │ │ │ ├── -198.png │ │ │ ├── -328.png │ │ │ ├── -329.png │ │ │ ├── -330.png │ │ │ ├── -331.png │ │ │ ├── -332.png │ │ │ ├── -334.png │ │ │ ├── -335.png │ │ │ ├── -336.png │ │ │ ├── -337.png │ │ │ ├── -338.png │ │ │ ├── -339.png │ │ │ ├── -340.png │ │ │ ├── -342.png │ │ │ ├── -378.png │ │ │ ├── -379.png │ │ │ ├── -380.png │ │ │ ├── -422.png │ │ │ ├── -436.png │ │ │ ├── -645.png │ │ │ ├── -646.png │ │ │ ├── -647.png │ │ │ ├── -648.png │ │ │ ├── -699.png │ │ │ ├── -700.png │ │ │ ├── -701.png │ │ │ ├── -702.png │ │ │ ├── -703.png │ │ │ ├── -704.png │ │ │ ├── -705.png │ │ │ ├── -790.png │ │ │ ├── -870.png │ │ │ ├── -875.png │ │ │ ├── -883.png │ │ │ ├── -887.png │ │ │ ├── -893.png │ │ │ ├── -906.png │ │ │ ├── -914.png │ │ │ ├── -96.png │ │ │ ├── -97.png │ │ │ ├── -98.png │ │ │ └── -99.png │ │ ├── full │ │ │ ├── -100.png │ │ │ ├── -1003.png │ │ │ ├── -1007.png │ │ │ ├── -101.png │ │ │ ├── -1011.png │ │ │ ├── -1070.png │ │ │ ├── -1071.png │ │ │ ├── -1072.png │ │ │ ├── -11.png │ │ │ ├── -1118.png │ │ │ ├── -1140.png │ │ │ ├── -12.png │ │ │ ├── -1278.png │ │ │ ├── -1279.png │ │ │ ├── -1280.png │ │ │ ├── -13.png │ │ │ ├── -1384.png │ │ │ ├── -1385.png │ │ │ ├── -155.png │ │ │ ├── -156.png │ │ │ ├── -157.png │ │ │ ├── -158.png │ │ │ ├── -196.png │ │ │ ├── -197.png │ │ │ ├── -198.png │ │ │ ├── -328.png │ │ │ ├── -329.png │ │ │ ├── -330.png │ │ │ ├── -331.png │ │ │ ├── -332.png │ │ │ ├── -334.png │ │ │ ├── -335.png │ │ │ ├── -336.png │ │ │ ├── -337.png │ │ │ ├── -338.png │ │ │ ├── -339.png │ │ │ ├── -340.png │ │ │ ├── -342.png │ │ │ ├── -378.png │ │ │ ├── -379.png │ │ │ ├── -380.png │ │ │ ├── -422.png │ │ │ ├── -436.png │ │ │ ├── -645.png │ │ │ ├── -646.png │ │ │ ├── -647.png │ │ │ ├── -648.png │ │ │ ├── -699.png │ │ │ ├── -700.png │ │ │ ├── -701.png │ │ │ ├── -702.png │ │ │ ├── -703.png │ │ │ ├── -704.png │ │ │ ├── -705.png │ │ │ ├── -790.png │ │ │ ├── -870.png │ │ │ ├── -875.png │ │ │ ├── -883.png │ │ │ ├── -887.png │ │ │ ├── -893.png │ │ │ ├── -906.png │ │ │ ├── -914.png │ │ │ ├── -96.png │ │ │ ├── -97.png │ │ │ ├── -98.png │ │ │ └── -99.png │ │ ├── half │ │ │ ├── -100.png │ │ │ ├── -1003.png │ │ │ ├── -1007.png │ │ │ ├── -101.png │ │ │ ├── -1011.png │ │ │ ├── -1070.png │ │ │ ├── -1071.png │ │ │ ├── -1072.png │ │ │ ├── -11.png │ │ │ ├── -1118.png │ │ │ ├── -1140.png │ │ │ ├── -12.png │ │ │ ├── -1278.png │ │ │ ├── -1279.png │ │ │ ├── -1280.png │ │ │ ├── -13.png │ │ │ ├── -1384.png │ │ │ ├── -1385.png │ │ │ ├── -155.png │ │ │ ├── -156.png │ │ │ ├── -157.png │ │ │ ├── -158.png │ │ │ ├── -196.png │ │ │ ├── -197.png │ │ │ ├── -198.png │ │ │ ├── -328.png │ │ │ ├── -329.png │ │ │ ├── -330.png │ │ │ ├── -331.png │ │ │ ├── -332.png │ │ │ ├── -334.png │ │ │ ├── -335.png │ │ │ ├── -336.png │ │ │ ├── -337.png │ │ │ ├── -338.png │ │ │ ├── -339.png │ │ │ ├── -340.png │ │ │ ├── -342.png │ │ │ ├── -378.png │ │ │ ├── -379.png │ │ │ ├── -380.png │ │ │ ├── -422.png │ │ │ ├── -436.png │ │ │ ├── -645.png │ │ │ ├── -646.png │ │ │ ├── -647.png │ │ │ ├── -648.png │ │ │ ├── -699.png │ │ │ ├── -700.png │ │ │ ├── -701.png │ │ │ ├── -702.png │ │ │ ├── -703.png │ │ │ ├── -704.png │ │ │ ├── -705.png │ │ │ ├── -790.png │ │ │ ├── -870.png │ │ │ ├── -875.png │ │ │ ├── -883.png │ │ │ ├── -887.png │ │ │ ├── -893.png │ │ │ ├── -906.png │ │ │ ├── -914.png │ │ │ ├── -96.png │ │ │ ├── -97.png │ │ │ ├── -98.png │ │ │ └── -99.png │ │ ├── quarter │ │ │ ├── -100.png │ │ │ ├── -1003.png │ │ │ ├── -1007.png │ │ │ ├── -101.png │ │ │ ├── -1011.png │ │ │ ├── -1070.png │ │ │ ├── -1071.png │ │ │ ├── -1072.png │ │ │ ├── -11.png │ │ │ ├── -1118.png │ │ │ ├── -1140.png │ │ │ ├── -12.png │ │ │ ├── -1278.png │ │ │ ├── -1279.png │ │ │ ├── -1280.png │ │ │ ├── -13.png │ │ │ ├── -1384.png │ │ │ ├── -1385.png │ │ │ ├── -155.png │ │ │ ├── -156.png │ │ │ ├── -157.png │ │ │ ├── -158.png │ │ │ ├── -196.png │ │ │ ├── -197.png │ │ │ ├── -198.png │ │ │ ├── -328.png │ │ │ ├── -329.png │ │ │ ├── -330.png │ │ │ ├── -331.png │ │ │ ├── -332.png │ │ │ ├── -334.png │ │ │ ├── -335.png │ │ │ ├── -336.png │ │ │ ├── -337.png │ │ │ ├── -338.png │ │ │ ├── -339.png │ │ │ ├── -340.png │ │ │ ├── -342.png │ │ │ ├── -378.png │ │ │ ├── -379.png │ │ │ ├── -380.png │ │ │ ├── -422.png │ │ │ ├── -436.png │ │ │ ├── -645.png │ │ │ ├── -646.png │ │ │ ├── -647.png │ │ │ ├── -648.png │ │ │ ├── -699.png │ │ │ ├── -700.png │ │ │ ├── -701.png │ │ │ ├── -702.png │ │ │ ├── -703.png │ │ │ ├── -704.png │ │ │ ├── -705.png │ │ │ ├── -790.png │ │ │ ├── -870.png │ │ │ ├── -875.png │ │ │ ├── -883.png │ │ │ ├── -887.png │ │ │ ├── -893.png │ │ │ ├── -906.png │ │ │ ├── -914.png │ │ │ ├── -96.png │ │ │ ├── -97.png │ │ │ ├── -98.png │ │ │ └── -99.png │ │ └── sixteenth │ │ │ ├── -100.png │ │ │ ├── -1003.png │ │ │ ├── -1007.png │ │ │ ├── -101.png │ │ │ ├── -1011.png │ │ │ ├── -1070.png │ │ │ ├── -1071.png │ │ │ ├── -1072.png │ │ │ ├── -11.png │ │ │ ├── -1118.png │ │ │ ├── -1140.png │ │ │ ├── -12.png │ │ │ ├── -1278.png │ │ │ ├── -1279.png │ │ │ ├── -1280.png │ │ │ ├── -13.png │ │ │ ├── -1384.png │ │ │ ├── -1385.png │ │ │ ├── -155.png │ │ │ ├── -156.png │ │ │ ├── -157.png │ │ │ ├── -158.png │ │ │ ├── -196.png │ │ │ ├── -197.png │ │ │ ├── -198.png │ │ │ ├── -328.png │ │ │ ├── -329.png │ │ │ ├── -330.png │ │ │ ├── -331.png │ │ │ ├── -332.png │ │ │ ├── -334.png │ │ │ ├── -335.png │ │ │ ├── -336.png │ │ │ ├── -337.png │ │ │ ├── -338.png │ │ │ ├── -339.png │ │ │ ├── -340.png │ │ │ ├── -342.png │ │ │ ├── -378.png │ │ │ ├── -379.png │ │ │ ├── -380.png │ │ │ ├── -422.png │ │ │ ├── -436.png │ │ │ ├── -645.png │ │ │ ├── -646.png │ │ │ ├── -647.png │ │ │ ├── -648.png │ │ │ ├── -699.png │ │ │ ├── -700.png │ │ │ ├── -701.png │ │ │ ├── -702.png │ │ │ ├── -703.png │ │ │ ├── -704.png │ │ │ ├── -705.png │ │ │ ├── -790.png │ │ │ ├── -870.png │ │ │ ├── -875.png │ │ │ ├── -883.png │ │ │ ├── -887.png │ │ │ ├── -893.png │ │ │ ├── -906.png │ │ │ ├── -914.png │ │ │ ├── -96.png │ │ │ ├── -97.png │ │ │ ├── -98.png │ │ │ └── -99.png │ └── metadata │ │ └── -meta.json └── video.mp4 └── videoReport3140102491.pdf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/README.md -------------------------------------------------------------------------------- /opencvTEST/.vs/opencvTEST/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/.vs/opencvTEST/v14/.suo -------------------------------------------------------------------------------- /opencvTEST/Debug/opencvTEST.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/Debug/opencvTEST.exe -------------------------------------------------------------------------------- /opencvTEST/Debug/opencvTEST.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/Debug/opencvTEST.ilk -------------------------------------------------------------------------------- /opencvTEST/Debug/opencvTEST.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/Debug/opencvTEST.pdb -------------------------------------------------------------------------------- /opencvTEST/keyframe/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1006.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1016.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1057.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1057.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1099.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1099.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1119.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1126.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1139.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1141.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1181.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1181.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/12.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1277.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1277.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1288.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1288.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1294.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1294.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1306.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1306.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1355.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1355.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/1370.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/1370.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/14.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/153.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/157.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/157.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/194.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/194.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/197.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/197.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/322.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/322.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/329.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/329.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/372.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/372.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/379.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/379.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/437.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/437.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/542.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/542.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/583.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/583.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/584.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/584.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/646.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/646.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/648.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/648.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/694.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/694.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/700.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/700.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/706.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/706.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/730.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/730.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/74.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/756.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/756.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/78.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/792.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/792.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/81.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/813.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/813.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/82.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/840.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/840.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/852.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/852.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/872.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/872.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/883.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/883.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/888.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/888.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/890.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/890.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/894.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/894.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/896.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/896.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/907.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/907.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/915.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/915.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/941.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/941.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/97.jpg -------------------------------------------------------------------------------- /opencvTEST/keyframe/976.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/keyframe/976.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST.VC.db -------------------------------------------------------------------------------- /opencvTEST/opencvTEST.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST.sln -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1006.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1016.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1057.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1057.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1099.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1099.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1119.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1126.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1139.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1141.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1181.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1181.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/12.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1277.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1277.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1288.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1288.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1294.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1294.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1306.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1306.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1355.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1355.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/1370.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/1370.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/14.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/153.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/157.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/157.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/194.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/194.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/197.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/197.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/322.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/322.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/329.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/329.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/372.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/372.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/379.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/379.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/437.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/437.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/542.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/542.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/583.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/583.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/584.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/584.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/646.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/646.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/648.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/648.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/694.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/694.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/700.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/700.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/706.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/706.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/730.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/730.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/74.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/756.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/756.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/78.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/792.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/792.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/81.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/813.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/813.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/82.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/840.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/840.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/852.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/852.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/872.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/872.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/883.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/883.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/888.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/888.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/890.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/890.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/894.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/894.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/896.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/896.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/907.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/907.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/915.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/915.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/941.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/941.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/97.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/976.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/976.jpg -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/Debug/main.obj -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/Debug/opencvTEST.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/Debug/opencvTEST.log -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/Debug/opencvTEST.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/Debug/opencvTEST.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/Debug/opencvTEST.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/Debug/opencvTEST.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/Debug/opencvTEST.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/Debug/opencvTEST.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/Debug/opencvTEST.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/Debug/opencvTEST.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/Debug/opencvTEST.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/Debug/opencvTEST.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/Debug/opencvTEST.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/Debug/opencvTEST.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/Debug/opencvTEST.tlog/opencvTEST.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/Debug/opencvTEST.tlog/opencvTEST.lastbuildstate -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/Debug/vc140.idb -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/Debug/vc140.pdb -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/main.cpp -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/opencvTEST.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/opencvTEST.vcxproj -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/opencvTEST.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/opencvTEST.vcxproj.filters -------------------------------------------------------------------------------- /opencvTEST/opencvTEST/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/opencvTEST/opencvTEST/video.mp4 -------------------------------------------------------------------------------- /scene_detection/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /scene_detection/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/.idea/misc.xml -------------------------------------------------------------------------------- /scene_detection/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/.idea/modules.xml -------------------------------------------------------------------------------- /scene_detection/.idea/scene_detection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/.idea/scene_detection.iml -------------------------------------------------------------------------------- /scene_detection/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/.idea/workspace.xml -------------------------------------------------------------------------------- /scene_detection/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/detection.py -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-100.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-1003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-1003.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-1007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-1007.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-101.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-1011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-1011.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-1070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-1070.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-1071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-1071.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-1072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-1072.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-11.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-1118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-1118.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-1140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-1140.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-12.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-1278.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-1278.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-1279.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-1279.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-1280.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-13.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-1384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-1384.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-1385.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-1385.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-155.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-156.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-157.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-158.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-196.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-197.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-198.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-328.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-329.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-330.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-330.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-331.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-332.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-332.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-334.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-335.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-336.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-337.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-338.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-339.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-339.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-340.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-340.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-342.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-378.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-378.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-379.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-379.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-380.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-380.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-422.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-436.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-645.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-645.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-646.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-646.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-647.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-648.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-699.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-699.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-700.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-701.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-702.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-703.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-703.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-704.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-705.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-790.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-790.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-870.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-870.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-875.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-875.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-883.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-883.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-887.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-887.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-893.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-893.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-906.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-906.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-914.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-914.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-96.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-97.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-98.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/eigth/-99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/eigth/-99.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-100.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-1003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-1003.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-1007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-1007.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-101.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-1011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-1011.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-1070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-1070.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-1071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-1071.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-1072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-1072.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-11.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-1118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-1118.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-1140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-1140.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-12.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-1278.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-1278.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-1279.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-1279.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-1280.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-13.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-1384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-1384.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-1385.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-1385.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-155.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-156.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-157.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-158.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-196.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-197.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-198.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-328.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-329.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-330.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-330.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-331.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-332.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-332.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-334.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-335.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-336.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-337.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-338.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-339.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-339.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-340.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-340.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-342.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-378.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-378.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-379.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-379.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-380.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-380.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-422.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-436.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-645.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-645.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-646.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-646.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-647.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-648.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-699.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-699.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-700.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-701.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-702.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-703.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-703.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-704.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-705.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-790.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-790.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-870.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-870.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-875.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-875.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-883.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-883.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-887.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-887.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-893.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-893.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-906.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-906.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-914.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-914.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-96.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-97.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-98.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/full/-99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/full/-99.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-100.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-1003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-1003.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-1007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-1007.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-101.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-1011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-1011.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-1070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-1070.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-1071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-1071.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-1072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-1072.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-11.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-1118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-1118.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-1140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-1140.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-12.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-1278.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-1278.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-1279.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-1279.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-1280.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-13.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-1384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-1384.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-1385.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-1385.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-155.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-156.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-157.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-158.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-196.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-197.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-198.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-328.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-329.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-330.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-330.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-331.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-332.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-332.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-334.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-335.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-336.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-337.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-338.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-339.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-339.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-340.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-340.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-342.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-378.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-378.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-379.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-379.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-380.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-380.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-422.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-436.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-645.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-645.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-646.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-646.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-647.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-648.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-699.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-699.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-700.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-701.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-702.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-703.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-703.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-704.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-705.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-790.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-790.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-870.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-870.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-875.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-875.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-883.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-883.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-887.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-887.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-893.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-893.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-906.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-906.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-914.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-914.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-96.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-97.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-98.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/half/-99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/half/-99.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-100.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-1003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-1003.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-1007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-1007.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-101.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-1011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-1011.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-1070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-1070.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-1071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-1071.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-1072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-1072.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-11.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-1118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-1118.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-1140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-1140.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-12.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-1278.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-1278.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-1279.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-1279.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-1280.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-13.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-1384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-1384.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-1385.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-1385.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-155.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-156.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-157.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-158.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-196.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-197.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-198.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-328.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-329.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-330.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-330.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-331.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-332.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-332.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-334.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-335.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-336.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-337.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-338.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-339.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-339.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-340.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-340.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-342.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-378.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-378.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-379.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-379.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-380.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-380.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-422.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-436.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-645.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-645.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-646.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-646.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-647.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-648.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-699.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-699.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-700.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-701.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-702.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-703.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-703.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-704.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-705.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-790.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-790.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-870.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-870.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-875.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-875.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-883.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-883.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-887.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-887.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-893.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-893.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-906.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-906.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-914.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-914.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-96.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-97.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-98.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/quarter/-99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/quarter/-99.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-100.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-1003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-1003.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-1007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-1007.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-101.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-1011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-1011.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-1070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-1070.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-1071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-1071.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-1072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-1072.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-11.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-1118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-1118.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-1140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-1140.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-12.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-1278.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-1278.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-1279.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-1279.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-1280.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-13.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-1384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-1384.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-1385.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-1385.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-155.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-156.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-157.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-158.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-196.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-197.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-198.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-328.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-329.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-330.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-330.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-331.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-332.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-332.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-334.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-335.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-336.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-337.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-338.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-339.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-339.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-340.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-340.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-342.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-378.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-378.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-379.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-379.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-380.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-380.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-422.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-436.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-645.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-645.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-646.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-646.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-647.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-648.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-699.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-699.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-700.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-701.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-702.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-703.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-703.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-704.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-705.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-790.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-790.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-870.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-870.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-875.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-875.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-883.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-883.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-887.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-887.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-893.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-893.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-906.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-906.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-914.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-914.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-96.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-97.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-98.png -------------------------------------------------------------------------------- /scene_detection/key frame/images/sixteenth/-99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/key frame/images/sixteenth/-99.png -------------------------------------------------------------------------------- /scene_detection/key frame/metadata/-meta.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scene_detection/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/scene_detection/video.mp4 -------------------------------------------------------------------------------- /videoReport3140102491.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenAnthony/Key-Frame/HEAD/videoReport3140102491.pdf --------------------------------------------------------------------------------