1 /** 2 Module implements I/O mechanisms for image, video and various file formats. 3 4 Copyright: Copyright Relja Ljubobratovic 2016. 5 6 Authors: Relja Ljubobratovic 7 8 License: $(LINK3 http://www.boost.org/LICENSE_1_0.txt, Boost Software License - Version 1.0). 9 */ 10 11 module dcv.io; 12 13 public import dcv.io.image, dcv.io.video; 14 15 /* 16 TODO: split sub-modules. (image, video, filestorage etc.) 17 18 v0.1 norm: 19 image write, read (most used formats) 20 video write, read -||- 21 22 v0.2norm: 23 data storage io (xml, csv etc) 24 */