All Projects → ray-cast → lut

ray-cast / lut

Licence: other
color lookup tables (LUTs) for color grading

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to lut

SOUL-VA
The SOUL Virtual Analog Library
Stars: ✭ 45 (-46.43%)
Mutual labels:  filter, effect
Processing Postfx
A shader based postFX library for processing.
Stars: ✭ 114 (+35.71%)
Mutual labels:  filter, effect
KinoEight
8 bit-ish style post-processing effect for Unity
Stars: ✭ 112 (+33.33%)
Mutual labels:  effect, postprocessing
Beautyhour
With this software, you can do all kinds of Personalised Customize and beautifying to your photos.
Stars: ✭ 132 (+57.14%)
Mutual labels:  filter, effect
FunFilter
Freely painted area, the software will automatically add filter on its.
Stars: ✭ 15 (-82.14%)
Mutual labels:  filter, effect
tools-generation-detection-synthetic-content
Compilation of the state of the art of tools, articles, forums and links of interest to generate and detect any type of synthetic content using deep learning.
Stars: ✭ 107 (+27.38%)
Mutual labels:  photoshop, images
Videobeautify
With this APP, you can do all kinds of professional optimising and beautifying to your videos
Stars: ✭ 450 (+435.71%)
Mutual labels:  filter, effect
image-editor-effects
💎 A WebGL example of image adjustment / effects shaders found in Photoshop, other image editors and game engines.
Stars: ✭ 68 (-19.05%)
Mutual labels:  photoshop, filter
Tui.image Editor
🍞🎨 Full-featured photo image editor using canvas. It is really easy, and it comes with great filters.
Stars: ✭ 4,761 (+5567.86%)
Mutual labels:  photoshop, filter
morton-nd
A header-only compile-time Morton encoding / decoding library for N dimensions.
Stars: ✭ 78 (-7.14%)
Mutual labels:  lut, lookup-table
URP-Sun-Shafts
A URP port of Unity's classic Standard Assets Effects package's Sun Shaft effect
Stars: ✭ 36 (-57.14%)
Mutual labels:  effect, postprocessing
use-images-loaded
🖼️ Returns true once all the images inside a container are loaded
Stars: ✭ 82 (-2.38%)
Mutual labels:  images
equalizer
SoundCloud music player with equalizer
Stars: ✭ 25 (-70.24%)
Mutual labels:  filter
treebitmap
Fast IP lookup table for IPv4/IPv6 prefixes
Stars: ✭ 81 (-3.57%)
Mutual labels:  lookup-table
morphmorph
😱 Isomorphic transformations. Map, transform, filter, and morph your objects
Stars: ✭ 26 (-69.05%)
Mutual labels:  filter
photoshop-scripts
Photoshop Scripts for the TinyPNG & TinyJPG Photoshop plugin
Stars: ✭ 43 (-48.81%)
Mutual labels:  photoshop
loadkit
Java 资源加载器,充分拓展ClassLoader#getResources(name)的能力,实现递归加载,支持普通风格 / 包名风格 / ANT风格 / 正则风格路径的资源加载同时支持自定义过滤器,通常作为框架的基础类库。
Stars: ✭ 39 (-53.57%)
Mutual labels:  filter
ArminC-uBlock-Settings
⚙️ ArminC's settings for uBlock₀ - remove most of the ads, pop-ups and trackers.
Stars: ✭ 24 (-71.43%)
Mutual labels:  filter
MOTE
Magnitude of the Effect - An Effect Size and CI calculator
Stars: ✭ 17 (-79.76%)
Mutual labels:  effect
DICOM.jl
Julia package for reading and writing DICOM (Digital Imaging and Communications in Medicine) files
Stars: ✭ 45 (-46.43%)
Mutual labels:  images

Color Lookup Table

lut.hpp is a C++ 11 single required source file, that can be used to achieve color correction and color grading, you can see ue4 docs for more information

Color Neutral LUT

link text link text

Candle Light LUT

link text link text

Usage

#include "lut.hpp"

// Usage 1
auto lut = octoon::image::lut::parse("xxx.cube"); // load the lut from .cube file
for (std::size_t i = 0; i < image.size(); i++)
{
	auto data = lut.lookup(rgb.r, rgb.g, rgb.b); // The (r,g,b) can be extended to support these types of std::uint8_t, std::uint16_t, std::uint32_t, float, double
	rgb.r = data[0];
	rgb.g = data[1];
	rgb.b = data[2];
}

// Usage 2
auto lut = octoon::image::lut::parse("xxx.cube"); // load the lut from .cube file
lut.lookup(image.data(), image.data(), image.size(), 3); // The (r,g,b) can be extended to support these types of std::uint8_t, std::uint16_t, std::uint32_t, float, double

// Serializable to .cube stream
method 1 : std::cout << lut.dump();
method 2 : std::cout << lut;

// Serializable to image
auto image = octoon::image::Image(octoon::image::Format::R8G8B8UNorm, lut.width, lut.height);
std::memcpy((std::uint8_t*)image.data(), lut.data.get(), lut.width * lut.height * lut.channel);
image.save("C:\\Users\\Administrator\\Desktop\\1.png", "png");

License (MIT)

MIT License

Copyright (c) 2018 Rui

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].