Skip to content
Snippets Groups Projects
Commit b6e661f6 authored by Devashish Lohani's avatar Devashish Lohani
Browse files

Added Illustrations in Readme

parent 5756f419
No related branches found
No related tags found
No related merge requests found
......@@ -61,11 +61,9 @@ All results are in AEComparisons folder.
**Illustrations:**
_**Fall Detection**_
_**1) Fall Detection**_
![](fall_demo.gif)
**_Intrusion Detection_**
**_2) Intrusion Detection_**
![](intrusion_demo_1.gif)
![](intrusion_demo_2.gif)
\ No newline at end of file
......@@ -9,24 +9,24 @@ if __name__ == "__main__":
# Either Fall Detection or Intrusion Detection
##---Fall Detection----
pre_load = 'Models/Thermal_Fall/DSTCAE_UpSamp.h5'
#pre_load = 'Models/Thermal_Fall/DSTCAE_UpSamp.h5'
#pre_load = 'Models/Thermal_Fall/DSTCAE_Deconv.h5'
#pre_load = 'Models/Thermal_Fall/DSTCAE_C3D.h5'
##---Intrusion Detection----
# models not released for privacy concerns
#pre_load = 'Models/Thermal_Intrusion/DSTCAE_UpSamp.h5'
pre_load = 'Models/Thermal_Intrusion/DSTCAE_UpSamp.h5'
#pre_load = 'Models/Thermal_Intrusion/DSTCAE_Deconv.h5'
#pre_load = 'Models/Thermal_Intrusion/DSTCAE_C3D.h5'
##--Choose dataset (corresponding to model intrusion or fall)
#dset = 'Thermal_Intrusion'
dset = 'Thermal_Fall'
dset = 'Thermal_Intrusion'
#dset = 'Thermal_Fall'
##--Choose evaluation measure
#RE = 'r_sigma'
#RE = 'r_mu'
RE = 'r'
RE = 'r_mu'
#RE = 'r'
##--Evaluation type : per_video or all videos
## per-video not allowed for Intrusion detection -> because we have videos with only non-intrusion also.
......@@ -38,8 +38,8 @@ if __name__ == "__main__":
#evaluation_type = 'all_videos'
## Optional: Animation per video
do_animate = False
use_indicative_threshold = False
do_animate = True
use_indicative_threshold = True
##--Set frame and window size
img_width, img_height, win_len = 64, 64, 8
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment