├── .gitattributes ├── .gitignore ├── OpenCVPlat.sln ├── OpenCVPlat ├── ColorBalance.cpp ├── ColorBalance.h ├── DialogVignette.cpp ├── DialogVignette.h ├── GaussianBlur.cpp ├── GaussianBlur.h ├── Inpainting.cpp ├── Inpainting.h ├── Liquify.cpp ├── Liquify.h ├── Lomo.cpp ├── Lomo.h ├── MainFrm.cpp ├── MainFrm.h ├── MedianFilter.cpp ├── MedianFilter.h ├── OpenCVPlat.cpp ├── OpenCVPlat.h ├── OpenCVPlat.rc ├── OpenCVPlat.reg ├── OpenCVPlat.vcxproj ├── OpenCVPlat.vcxproj.filters ├── OpenCVPlatDoc.cpp ├── OpenCVPlatDoc.h ├── OpenCVPlatView.cpp ├── OpenCVPlatView.h ├── ReadMe.txt ├── Saturation.cpp ├── Saturation.h ├── Sharpen.cpp ├── Sharpen.h ├── Skin.cpp ├── Skin.h ├── Vignette.cpp ├── Vignette.h ├── haarcascade_frontalface_alt.xml ├── res │ ├── OpenCVPlat.ico │ ├── OpenCVPlat.rc2 │ ├── OpenCVPlatDoc.ico │ └── Toolbar.bmp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md └── images ├── banner.png ├── g0.PNG ├── g1.PNG ├── liquify1.PNG ├── lomo1.PNG ├── lomo2.PNG ├── m0.PNG ├── m1.PNG ├── p.PNG ├── pm1.png ├── pm2.png ├── pm3.png ├── pm4.png ├── pm5.png ├── pm6.png ├── pm7.png ├── ppppp.PNG ├── saturation1.PNG ├── saturation2.PNG ├── saturation3.PNG ├── sharpen5.PNG ├── sharpen6.PNG ├── skin1.PNG ├── skin2.PNG ├── skin3.PNG ├── w0.PNG └── w1.PNG /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/.gitignore -------------------------------------------------------------------------------- /OpenCVPlat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat.sln -------------------------------------------------------------------------------- /OpenCVPlat/ColorBalance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/ColorBalance.cpp -------------------------------------------------------------------------------- /OpenCVPlat/ColorBalance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/ColorBalance.h -------------------------------------------------------------------------------- /OpenCVPlat/DialogVignette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/DialogVignette.cpp -------------------------------------------------------------------------------- /OpenCVPlat/DialogVignette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/DialogVignette.h -------------------------------------------------------------------------------- /OpenCVPlat/GaussianBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/GaussianBlur.cpp -------------------------------------------------------------------------------- /OpenCVPlat/GaussianBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/GaussianBlur.h -------------------------------------------------------------------------------- /OpenCVPlat/Inpainting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Inpainting.cpp -------------------------------------------------------------------------------- /OpenCVPlat/Inpainting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Inpainting.h -------------------------------------------------------------------------------- /OpenCVPlat/Liquify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Liquify.cpp -------------------------------------------------------------------------------- /OpenCVPlat/Liquify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Liquify.h -------------------------------------------------------------------------------- /OpenCVPlat/Lomo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Lomo.cpp -------------------------------------------------------------------------------- /OpenCVPlat/Lomo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Lomo.h -------------------------------------------------------------------------------- /OpenCVPlat/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/MainFrm.cpp -------------------------------------------------------------------------------- /OpenCVPlat/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/MainFrm.h -------------------------------------------------------------------------------- /OpenCVPlat/MedianFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/MedianFilter.cpp -------------------------------------------------------------------------------- /OpenCVPlat/MedianFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/MedianFilter.h -------------------------------------------------------------------------------- /OpenCVPlat/OpenCVPlat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/OpenCVPlat.cpp -------------------------------------------------------------------------------- /OpenCVPlat/OpenCVPlat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/OpenCVPlat.h -------------------------------------------------------------------------------- /OpenCVPlat/OpenCVPlat.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/OpenCVPlat.rc -------------------------------------------------------------------------------- /OpenCVPlat/OpenCVPlat.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/OpenCVPlat.reg -------------------------------------------------------------------------------- /OpenCVPlat/OpenCVPlat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/OpenCVPlat.vcxproj -------------------------------------------------------------------------------- /OpenCVPlat/OpenCVPlat.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/OpenCVPlat.vcxproj.filters -------------------------------------------------------------------------------- /OpenCVPlat/OpenCVPlatDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/OpenCVPlatDoc.cpp -------------------------------------------------------------------------------- /OpenCVPlat/OpenCVPlatDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/OpenCVPlatDoc.h -------------------------------------------------------------------------------- /OpenCVPlat/OpenCVPlatView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/OpenCVPlatView.cpp -------------------------------------------------------------------------------- /OpenCVPlat/OpenCVPlatView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/OpenCVPlatView.h -------------------------------------------------------------------------------- /OpenCVPlat/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/ReadMe.txt -------------------------------------------------------------------------------- /OpenCVPlat/Saturation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Saturation.cpp -------------------------------------------------------------------------------- /OpenCVPlat/Saturation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Saturation.h -------------------------------------------------------------------------------- /OpenCVPlat/Sharpen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Sharpen.cpp -------------------------------------------------------------------------------- /OpenCVPlat/Sharpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Sharpen.h -------------------------------------------------------------------------------- /OpenCVPlat/Skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Skin.cpp -------------------------------------------------------------------------------- /OpenCVPlat/Skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Skin.h -------------------------------------------------------------------------------- /OpenCVPlat/Vignette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Vignette.cpp -------------------------------------------------------------------------------- /OpenCVPlat/Vignette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/Vignette.h -------------------------------------------------------------------------------- /OpenCVPlat/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /OpenCVPlat/res/OpenCVPlat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/res/OpenCVPlat.ico -------------------------------------------------------------------------------- /OpenCVPlat/res/OpenCVPlat.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/res/OpenCVPlat.rc2 -------------------------------------------------------------------------------- /OpenCVPlat/res/OpenCVPlatDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/res/OpenCVPlatDoc.ico -------------------------------------------------------------------------------- /OpenCVPlat/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/res/Toolbar.bmp -------------------------------------------------------------------------------- /OpenCVPlat/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/resource.h -------------------------------------------------------------------------------- /OpenCVPlat/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/stdafx.cpp -------------------------------------------------------------------------------- /OpenCVPlat/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/stdafx.h -------------------------------------------------------------------------------- /OpenCVPlat/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/OpenCVPlat/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/README.md -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/banner.png -------------------------------------------------------------------------------- /images/g0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/g0.PNG -------------------------------------------------------------------------------- /images/g1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/g1.PNG -------------------------------------------------------------------------------- /images/liquify1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/liquify1.PNG -------------------------------------------------------------------------------- /images/lomo1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/lomo1.PNG -------------------------------------------------------------------------------- /images/lomo2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/lomo2.PNG -------------------------------------------------------------------------------- /images/m0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/m0.PNG -------------------------------------------------------------------------------- /images/m1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/m1.PNG -------------------------------------------------------------------------------- /images/p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/p.PNG -------------------------------------------------------------------------------- /images/pm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/pm1.png -------------------------------------------------------------------------------- /images/pm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/pm2.png -------------------------------------------------------------------------------- /images/pm3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/pm3.png -------------------------------------------------------------------------------- /images/pm4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/pm4.png -------------------------------------------------------------------------------- /images/pm5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/pm5.png -------------------------------------------------------------------------------- /images/pm6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/pm6.png -------------------------------------------------------------------------------- /images/pm7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/pm7.png -------------------------------------------------------------------------------- /images/ppppp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/ppppp.PNG -------------------------------------------------------------------------------- /images/saturation1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/saturation1.PNG -------------------------------------------------------------------------------- /images/saturation2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/saturation2.PNG -------------------------------------------------------------------------------- /images/saturation3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/saturation3.PNG -------------------------------------------------------------------------------- /images/sharpen5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/sharpen5.PNG -------------------------------------------------------------------------------- /images/sharpen6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/sharpen6.PNG -------------------------------------------------------------------------------- /images/skin1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/skin1.PNG -------------------------------------------------------------------------------- /images/skin2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/skin2.PNG -------------------------------------------------------------------------------- /images/skin3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/skin3.PNG -------------------------------------------------------------------------------- /images/w0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/w0.PNG -------------------------------------------------------------------------------- /images/w1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BichengLUO/ImageProcessing/HEAD/images/w1.PNG --------------------------------------------------------------------------------