├── Build └── Windows │ ├── libinsight.sln │ ├── libinsight.vcxproj │ └── libinsight.vcxproj.filters ├── LICENSE ├── README.md └── Source ├── Imagine ├── vnImage.cpp ├── vnImageDesaturate.cpp ├── vnImageInterface.cpp ├── vnImageResize.cpp ├── vnImageTransform.cpp └── vnImagine.h ├── Platform ├── vnBase.h ├── vnBitStream.cpp ├── vnBitStream.h ├── vnError.h ├── vnMath.h ├── vnPlatform.h ├── vnProfile.h ├── vnStandard.h └── vnVersion.h ├── vnInsight.cpp └── vnInsight.h /Build/Windows/libinsight.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Build/Windows/libinsight.sln -------------------------------------------------------------------------------- /Build/Windows/libinsight.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Build/Windows/libinsight.vcxproj -------------------------------------------------------------------------------- /Build/Windows/libinsight.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Build/Windows/libinsight.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/README.md -------------------------------------------------------------------------------- /Source/Imagine/vnImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Imagine/vnImage.cpp -------------------------------------------------------------------------------- /Source/Imagine/vnImageDesaturate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Imagine/vnImageDesaturate.cpp -------------------------------------------------------------------------------- /Source/Imagine/vnImageInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Imagine/vnImageInterface.cpp -------------------------------------------------------------------------------- /Source/Imagine/vnImageResize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Imagine/vnImageResize.cpp -------------------------------------------------------------------------------- /Source/Imagine/vnImageTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Imagine/vnImageTransform.cpp -------------------------------------------------------------------------------- /Source/Imagine/vnImagine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Imagine/vnImagine.h -------------------------------------------------------------------------------- /Source/Platform/vnBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Platform/vnBase.h -------------------------------------------------------------------------------- /Source/Platform/vnBitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Platform/vnBitStream.cpp -------------------------------------------------------------------------------- /Source/Platform/vnBitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Platform/vnBitStream.h -------------------------------------------------------------------------------- /Source/Platform/vnError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Platform/vnError.h -------------------------------------------------------------------------------- /Source/Platform/vnMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Platform/vnMath.h -------------------------------------------------------------------------------- /Source/Platform/vnPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Platform/vnPlatform.h -------------------------------------------------------------------------------- /Source/Platform/vnProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Platform/vnProfile.h -------------------------------------------------------------------------------- /Source/Platform/vnStandard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Platform/vnStandard.h -------------------------------------------------------------------------------- /Source/Platform/vnVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/Platform/vnVersion.h -------------------------------------------------------------------------------- /Source/vnInsight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/vnInsight.cpp -------------------------------------------------------------------------------- /Source/vnInsight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/insight/HEAD/Source/vnInsight.h --------------------------------------------------------------------------------