Move files
This commit is contained in:
parent
55f5f88687
commit
e17068baba
7 changed files with 97 additions and 98 deletions
File diff suppressed because one or more lines are too long
|
|
@ -1,3 +1,6 @@
|
||||||
from .add_noise import add_noise
|
from .add_noise import add_noise
|
||||||
from .change_temperature import change_temperature
|
from .change_temperature import change_temperature
|
||||||
from .add_random_colour_spill import add_random_colour_spill
|
from .add_random_colour_spill import add_random_colour_spill
|
||||||
|
from .gamma import adjust_gamma, get_random_gamma
|
||||||
|
from .get_colour_lut import get_random_saturation_per_hue_lut, get_random_brightness_lut
|
||||||
|
from .apply_pixel_shader import apply_pixel_shader
|
||||||
|
|
|
||||||
93
src/editor/operations/get_colour_lut.ipynb
Normal file
93
src/editor/operations/get_colour_lut.ipynb
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -1,6 +1,6 @@
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from typing import List
|
from typing import List
|
||||||
from .random import random
|
from ..utils.random import random
|
||||||
from .interpolate import interpolate, INTERPOLATION_TYPE
|
from .interpolate import interpolate, INTERPOLATION_TYPE
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,10 +1,4 @@
|
||||||
from .interpolate import interpolate
|
|
||||||
from .random import random
|
from .random import random
|
||||||
from .apply_pixel_shader import apply_pixel_shader
|
|
||||||
from .get_colour_lut import (
|
|
||||||
get_random_brightness_lut,
|
|
||||||
get_random_saturation_per_hue_lut,
|
|
||||||
)
|
|
||||||
from .compute_histogram import compute_histogram
|
from .compute_histogram import compute_histogram
|
||||||
from .generate_rotation_matrices import generate_rotation_matrices
|
from .generate_rotation_matrices import generate_rotation_matrices
|
||||||
from .get_next_run_name import get_next_run_name
|
from .get_next_run_name import get_next_run_name
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue