├── .gitignore ├── Design.md ├── Introduction.md ├── Paper.pdf ├── README.md ├── combine_frames.m ├── construct_frames.m ├── embed_message.m ├── frames_to_video.m ├── images ├── hamming_decoding.png ├── hamming_encoding.png ├── r_message_large.png ├── r_message_small.png ├── steganography.png ├── steganography_decoding.png └── steganography_encoding.png ├── large.mp4 ├── main.m ├── message.png ├── psnr.m ├── r_message.png ├── receiver_retrieve.m ├── rgb2yuv.m ├── scramble.m ├── small.mp4 ├── unscramble.m └── yuv2rgb.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/.gitignore -------------------------------------------------------------------------------- /Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/Design.md -------------------------------------------------------------------------------- /Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/Introduction.md -------------------------------------------------------------------------------- /Paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/Paper.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/README.md -------------------------------------------------------------------------------- /combine_frames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/combine_frames.m -------------------------------------------------------------------------------- /construct_frames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/construct_frames.m -------------------------------------------------------------------------------- /embed_message.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/embed_message.m -------------------------------------------------------------------------------- /frames_to_video.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/frames_to_video.m -------------------------------------------------------------------------------- /images/hamming_decoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/images/hamming_decoding.png -------------------------------------------------------------------------------- /images/hamming_encoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/images/hamming_encoding.png -------------------------------------------------------------------------------- /images/r_message_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/images/r_message_large.png -------------------------------------------------------------------------------- /images/r_message_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/images/r_message_small.png -------------------------------------------------------------------------------- /images/steganography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/images/steganography.png -------------------------------------------------------------------------------- /images/steganography_decoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/images/steganography_decoding.png -------------------------------------------------------------------------------- /images/steganography_encoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/images/steganography_encoding.png -------------------------------------------------------------------------------- /large.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/large.mp4 -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/main.m -------------------------------------------------------------------------------- /message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/message.png -------------------------------------------------------------------------------- /psnr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/psnr.m -------------------------------------------------------------------------------- /r_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/r_message.png -------------------------------------------------------------------------------- /receiver_retrieve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/receiver_retrieve.m -------------------------------------------------------------------------------- /rgb2yuv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/rgb2yuv.m -------------------------------------------------------------------------------- /scramble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/scramble.m -------------------------------------------------------------------------------- /small.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/small.mp4 -------------------------------------------------------------------------------- /unscramble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/unscramble.m -------------------------------------------------------------------------------- /yuv2rgb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSE-Projects/Secure-Video-Steganography/HEAD/yuv2rgb.m --------------------------------------------------------------------------------