├── .gitignore ├── Figs ├── OPINE_NET.png ├── OPINE_NET_plus.png ├── Table_Results.png └── visual_BI_New.png ├── README.md ├── TEST_CS_OPINE_Net_plus.py ├── TEST_OPINE_Net_plus_scripts.sh ├── Train_CS_OPINE_Net_plus.py ├── Train_OPINE_Net_plus_scripts.sh ├── data └── Set11 │ ├── Monarch.tif │ ├── Parrots.tif │ ├── barbara.tif │ ├── boats.tif │ ├── cameraman.tif │ ├── fingerprint.tif │ ├── flinstones.tif │ ├── foreman.tif │ ├── house.tif │ ├── lena256.tif │ └── peppers256.tif ├── model ├── CS_OPINE_Net_plus_layer_9_group_1_ratio_1 │ └── net_params_170.pkl ├── CS_OPINE_Net_plus_layer_9_group_1_ratio_10 │ └── net_params_170.pkl ├── CS_OPINE_Net_plus_layer_9_group_1_ratio_25 │ └── net_params_170.pkl ├── CS_OPINE_Net_plus_layer_9_group_1_ratio_4 │ └── net_params_170.pkl └── CS_OPINE_Net_plus_layer_9_group_1_ratio_50 │ └── net_params_170.pkl └── utility_for_opinenet.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.mat 2 | __pycache__ 3 | .idea -------------------------------------------------------------------------------- /Figs/OPINE_NET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/Figs/OPINE_NET.png -------------------------------------------------------------------------------- /Figs/OPINE_NET_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/Figs/OPINE_NET_plus.png -------------------------------------------------------------------------------- /Figs/Table_Results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/Figs/Table_Results.png -------------------------------------------------------------------------------- /Figs/visual_BI_New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/Figs/visual_BI_New.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/README.md -------------------------------------------------------------------------------- /TEST_CS_OPINE_Net_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/TEST_CS_OPINE_Net_plus.py -------------------------------------------------------------------------------- /TEST_OPINE_Net_plus_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/TEST_OPINE_Net_plus_scripts.sh -------------------------------------------------------------------------------- /Train_CS_OPINE_Net_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/Train_CS_OPINE_Net_plus.py -------------------------------------------------------------------------------- /Train_OPINE_Net_plus_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/Train_OPINE_Net_plus_scripts.sh -------------------------------------------------------------------------------- /data/Set11/Monarch.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/data/Set11/Monarch.tif -------------------------------------------------------------------------------- /data/Set11/Parrots.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/data/Set11/Parrots.tif -------------------------------------------------------------------------------- /data/Set11/barbara.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/data/Set11/barbara.tif -------------------------------------------------------------------------------- /data/Set11/boats.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/data/Set11/boats.tif -------------------------------------------------------------------------------- /data/Set11/cameraman.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/data/Set11/cameraman.tif -------------------------------------------------------------------------------- /data/Set11/fingerprint.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/data/Set11/fingerprint.tif -------------------------------------------------------------------------------- /data/Set11/flinstones.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/data/Set11/flinstones.tif -------------------------------------------------------------------------------- /data/Set11/foreman.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/data/Set11/foreman.tif -------------------------------------------------------------------------------- /data/Set11/house.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/data/Set11/house.tif -------------------------------------------------------------------------------- /data/Set11/lena256.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/data/Set11/lena256.tif -------------------------------------------------------------------------------- /data/Set11/peppers256.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/data/Set11/peppers256.tif -------------------------------------------------------------------------------- /model/CS_OPINE_Net_plus_layer_9_group_1_ratio_1/net_params_170.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/model/CS_OPINE_Net_plus_layer_9_group_1_ratio_1/net_params_170.pkl -------------------------------------------------------------------------------- /model/CS_OPINE_Net_plus_layer_9_group_1_ratio_10/net_params_170.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/model/CS_OPINE_Net_plus_layer_9_group_1_ratio_10/net_params_170.pkl -------------------------------------------------------------------------------- /model/CS_OPINE_Net_plus_layer_9_group_1_ratio_25/net_params_170.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/model/CS_OPINE_Net_plus_layer_9_group_1_ratio_25/net_params_170.pkl -------------------------------------------------------------------------------- /model/CS_OPINE_Net_plus_layer_9_group_1_ratio_4/net_params_170.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/model/CS_OPINE_Net_plus_layer_9_group_1_ratio_4/net_params_170.pkl -------------------------------------------------------------------------------- /model/CS_OPINE_Net_plus_layer_9_group_1_ratio_50/net_params_170.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/model/CS_OPINE_Net_plus_layer_9_group_1_ratio_50/net_params_170.pkl -------------------------------------------------------------------------------- /utility_for_opinenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianzhangcs/OPINE-Net/HEAD/utility_for_opinenet.py --------------------------------------------------------------------------------