SYMBOL INDEX (69 symbols across 6 files) FILE: ImageGoNord/GoNord.py class NordPaletteFile (line 47) | class NordPaletteFile: class GoNord (line 73) | class GoNord(object): method __init__ (line 179) | def __init__(self): method set_palette_lookup_path (line 184) | def set_palette_lookup_path(self, path): method set_default_nord_palette (line 188) | def set_default_nord_palette(self): method get_palette_data (line 197) | def get_palette_data(self): method add_color_to_palette (line 219) | def add_color_to_palette(self, hex_color): method reset_palette (line 222) | def reset_palette(self): method add_file_to_palette (line 227) | def add_file_to_palette(self, file): method set_transparency_tolerance (line 232) | def set_transparency_tolerance(self, tolerance): method enable_gaussian_blur (line 236) | def enable_gaussian_blur(self): method disable_gaussian_blur (line 240) | def disable_gaussian_blur(self): method open_image (line 244) | def open_image(self, path): method resize_image (line 267) | def resize_image(self, image, size=(0, 0)): method image_to_base64 (line 292) | def image_to_base64(self, image, extension): method base64_to_image (line 316) | def base64_to_image(self, img_b64): method load_pixel_image (line 334) | def load_pixel_image(self, opened_image): method enable_avg_algorithm (line 350) | def enable_avg_algorithm(self): method disable_avg_algorithm (line 357) | def disable_avg_algorithm(self): method set_avg_box_data (line 364) | def set_avg_box_data(self, w=-2, h=2): method quantize_image (line 379) | def quantize_image(self, image, fill_color='2E3440', save_path=''): method converted_loop (line 413) | def converted_loop(self, is_rgba, pixels, original_pixels, maxRow, max... method load_and_save_models (line 449) | def load_and_save_models(self): method convert_image_by_model (line 459) | def convert_image_by_model(self, image, use_model_cpu=False): method convert_image (line 529) | def convert_image(self, image, save_path='', use_model=False, use_mode... method save_image_to_file (line 591) | def save_image_to_file(self, image, path): method get_video_information (line 607) | def get_video_information(self, video_path): method convert_vid_to_np_arr (line 636) | def convert_vid_to_np_arr(self, video_path, width, height, start_time,... method vidwrite (line 678) | def vidwrite(self, fn, cube, images, framerate, start_frame, total_fra... method concat_video (line 721) | def concat_video(self, uid, out, save_path): method apply_original_audio (line 751) | def apply_original_audio(self, _input, _output): method convert_video (line 778) | def convert_video(self, _input, palette_name, _frames_per_batch = 200,... FILE: ImageGoNord/GoNord_test.py function image (line 8) | def image(): function go_nord (line 13) | def go_nord(): function test_resize_image_with_w_and_h (line 18) | def test_resize_image_with_w_and_h(image, go_nord: GoNord): function test_resize_image_with_size (line 23) | def test_resize_image_with_size(image, go_nord: GoNord): function test_resize_image (line 28) | def test_resize_image(image: Image, go_nord: GoNord): FILE: ImageGoNord/utility/ConvertUtility.py class ConvertUtility (line 4) | class ConvertUtility: method color_difference (line 17) | def color_difference(color1, color2): method get_avg_color (line 35) | def get_avg_color(pixels, row, col, w=-2, h=3): method convert_palette (line 86) | def convert_palette(color_cube, image): FILE: ImageGoNord/utility/model.py class Conv2dAuto (line 9) | class Conv2dAuto(nn.Conv2d): method __init__ (line 10) | def __init__(self, *args, **kwargs): function activation_func (line 15) | def activation_func(activation): #Activation function as mentioned in ... class ResidualBlock (line 23) | class ResidualBlock(nn.Module): method __init__ (line 24) | def __init__(self, in_channels, out_channels, activation='relu'): method forward (line 31) | def forward(self, x): method should_apply_shortcut (line 40) | def should_apply_shortcut(self): class ResNetResidualBlock (line 43) | class ResNetResidualBlock(ResidualBlock): method __init__ (line 44) | def __init__(self, in_channels, out_channels, expansion=1, downsamplin... method expanded_channels (line 56) | def expanded_channels(self): method should_apply_shortcut (line 60) | def should_apply_shortcut(self): function conv_bn (line 63) | def conv_bn(in_channels, out_channels, conv, *args, **kwargs): class ResNetBasicBlock (line 67) | class ResNetBasicBlock(ResNetResidualBlock): method __init__ (line 69) | def __init__(self, in_channels, out_channels, activation=nn.LeakyReLU,... class FeatureEncoder (line 77) | class FeatureEncoder(nn.Module): method __init__ (line 79) | def __init__(self,*args,**kwargs): method forward (line 90) | def forward(self, x): function de_conv (line 98) | def de_conv(in_channels, out_channels,kernel_size=3): #deconvolu... class RecoloringDecoder (line 105) | class RecoloringDecoder(nn.Module): method __init__ (line 107) | def __init__(self): method forward (line 115) | def forward(self, c1, c2, c3, c4, target_palettes_1d, illu): FILE: ImageGoNord/utility/palette_loader.py function load_palette_set (line 9) | def load_palette_set(path): function find_palettes (line 34) | def find_palettes(path): function import_palette_from_file (line 55) | def import_palette_from_file(filename): function create_data_colors (line 78) | def create_data_colors(palette): function export_tripletes_from_color (line 101) | def export_tripletes_from_color(hex_color): function generate_color_map (line 124) | def generate_color_map(palette, palette_name): FILE: ImageGoNord/utility/quantize.py function quantize_to_palette (line 8) | def quantize_to_palette(silf, palette):