diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/README_training_luma_intra.txt b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/README_training_luma_intra.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a549ba085615c79fbe9c40578683acbb3aa3a2b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/README_training_luma_intra.txt @@ -0,0 +1,209 @@ + +Step A) Checkout the training code: +=================================== + +git clone https://vcgit.hhi.fraunhofer.de/jvet-ahg-nnvc/VVCSoftware_VTM.git +cd VVCSoftware_VTM +git checkout NNVC-3.0 +This is now your $BASE path + +cd $BASE/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/ +This is now your $TRAIN path + +cd $BASE/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/ +This is now your $EXTRACT path + + + +Step B) Download ffmpeg: +======================== + +wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz +tar xvf ffmpeg-release-amd64-static.tar.xz +cd ffmpeg-5.0.1-amd64-static +pwd + +--> This is now your path 'ffmpeg_path' in $EXTRACT/png2yuv_subsampled.py and $EXTRACT/png2yuv_fullres.py +--> It is also your path 'executablefile' in $EXTRACT/mp42yuv_BVI-DVC.py + + + +Step C) Prepare subsampled yuv-files for DIV2K +============================================== + +Goto https://data.vision.ee.ethz.ch/cvl/DIV2K/ +Download half resolution images from http://data.vision.ee.ethz.ch/cvl/DIV2K/DIV2K_train_LR_bicubic_X2.zip +unzip DIV2K_train_LR_bicubic_X2.zip +cd DIV2K_train_LR_bicubic/X2 +pwd +--> This is now your path 'srcdir' in $EXTRACT/png2yuv_subsampled.py +(Mine: /proj/video_no_backup/videosim/ejacstr/extract/DIV2K_test_yuv/DIV2K_train_LR_bicubic/X2) +cd .. +mkdir X2_crop +cd X2_crop +pwd +--> This is now your path 'cropimgdir' in $EXTRACT/png2yuv_subsampled.py +(Mine: /proj/video_no_backup/videosim/ejacstr/extract/DIV2K_test_yuv/X2_crop) +cd .. +mkdir X2_yuv +cd X2_yuv +pwd +--> This is now your path 'destdir' in $EXTRACT/png2yuv_subsampled.py, 'inputdirDIV2K_X2' in $EXTRACT/E_data_generation_luma_intra.py and 'path_to_original_DIV2K_X2_yuvs' in $TRAIN/main.py + +After changing all the paths in png2yuv_subsampled.py according to the above, run png2yuv_subsampled.py using +cd $EXTRACT +python3 png2yuv_subsampled.py + +The subsampled versions of DIV2K images will afterwards reside in 'destdir' of the form + +0084x2_1016x680_25fps_8bit_420.yuv +signifying image 84, downsampled a factor of two (x2), resolution 1016x680, 25 fps, 8bit 420. + + + +Step D) Prepare full resolution yuv-files for DIV2K: +=============================================== + +Goto https://data.vision.ee.ethz.ch/cvl/DIV2K/ +Download full resolution images from http://data.vision.ee.ethz.ch/cvl/DIV2K/DIV2K_train_HR.zip +unzip DIV2K_train_HR.zip +cd DIV2K_train_HR +pwd +--> This is now your path 'srcdir' in $EXTRACT/png2yuv_fullres.py +cd .. +mkdir DIV2K_train_HR_crop +cd DIV2K_train_HR_crop +pwd +--> This is now your path 'cropimgdir' in $EXTRACT/png2yuv_fullres.py +cd .. +mkdir DIV2K_train_HR_yuv +cd DIV2K_train_HR_yuv +pwd +--> This is now your path 'destdir' in $EXTRACT/png2yuv_fullres.py, 'inputdirDIV2K' in $EXTRACT/E_data_generation_luma_intra.py and 'path_to_original_DIV2K_yuvs' in $TRAIN/main.py. + +After changing all the paths in png2yuv_fullres.py according to the above, run png2yuv_fullres.py using +cd $EXTRACT +python3 png2yuv_fullres.py + +The full resolution yuv versions of the DIV2K images will afterwards reside in 'destdir' of the form + +0461_1440x2040_25fps_8bit_420.yuv +signifying image 461, no downsampling (lack of x2), resolution 1440x2040, 25 fps, 8bit 420. + +E) Prepare yuv-files for BVI-DVC: +================================= + +Download the BVI-DVC dataset as per the instructions in the NNVC-CTC. +--> The path where you have downloaded all the mp4 files is now your 'srcdir' in mp42yuv_BVI-DVC.py + +Find a suitable path to put your .yuv videos +--> This is now your 'destdir' in $EXTRACT/mp42yuv_BVI-DVC.py, 'inputdirBVIDVC' in $EXTRACT/E_data_generation_luma_intra.py and 'path_to_original_BVI_DVC_yuvs' in $TRAIN/main.py + +--> Change 'mycurrentdir' to the directory where the script file mp42yuv_BVI-DVC.py is residing. + +--> Change the path 'executablefile' in $EXTRACT/mp42yuv_BVI-DVC.py to the ffmpeg path you created above. + +Run mp42yuv_BVI-DVC.py four times for the different sizes A (), B (1920x1088), C (960x544) and D (480x272): + +cd $EXTRACT +python3 mp42yuv_BVI-DVC.py A +python3 mp42yuv_BVI-DVC.py B +python3 mp42yuv_BVI-DVC.py C +python3 mp42yuv_BVI-DVC.py D + +Note that each of these scripts starts 192 several simultaneous decodings. If your system cannot cope with that many simultaneous decodings, use something like time.sleep(20) to wait 20 seconds after starting a decoding instead of doing it instantly. + +to save your changes in the above scripts, you can create a new branch> + +cd $BASE +git checkout -b scripts_with_paths +git commit -am "Scripts updated with my paths." + + +F) Run NNVC-VTM for DIV2K, DIV2K-x2 and BVI-DVC and generate training data: +=========================================================================== + +F1) Compile NNVC-encoder and extractor decoder: +----------------------------------------------- + +We use NCS-1.0 as extraction software. It is possible to use a later version, but this has not been tested to give equivalent results. +NCS-1.0 is equivalent to commit b4df98075df77f779a86b4b76a6bcfabf9d6fecd. Therefore, + +cd $BASE +git checkout b4df98075df77f779a86b4b76a6bcfabf9d6fecd +git checkout -b extraction_software + +In source/Lib/CommonLib/TypeDef.h, set the macro NNVC_USE_SLICETYPE to 0: +#define NNVC_USE_SLICETYPE 0 // slice type + +Commit your changes to the new branch + +git commit -am "Extraction software now ready." + +Now compile, first by updating SADL + +git submodule init +git submodule update + +Then build: + +mkdir build +cd build +cmake .. -DCMAKE_BUILD_TYPE=Release +make -j 8 +cd ../bin +cp EncoderAppStatic EncoderAppStatic_extraction_software +cp DecoderAppStatic DecoderAppStatic_extraction_software +pwd + +Copy the resulting path to the variable 'excutabledir' in E_data_generation_luma_intra.py. Before updating the file with this path, checkout your updated scripts with + +git checkout scripts_with_paths + +and then edit $EXTRACT/E_data_generation_luma_intra.py. + + +F2) Compress yuv-files and extract training data +------------------------------------------------ + +In $EXTRACT/E_data_generation_luma_intra.py, change the following: + +Change 'bitstreamsdir' to a directory on your harddrive where you want to store the resulting bitstreams. +Change 'dumpdirbase' to a directory where you want the decoded yuv data. Also change 'default_base_train_dir' in $TRAIN/main.py to this directory. +Change 'mycurrentdir' to the full path for the directory where the script file E_data_generation_luma_intra.py is residing. + +The paths 'inputdirDIV2K', 'inputdirDIV2K_X2' and 'inputdirBVIDVC' were updated in previous steps and need not be futher changed. + +You may want to change the line + +cmdall = ["bsub -o /dev/null '", enccmd,";",deccmd, "'"] + +to something that starts jobs our your cluster. We are using LSF and start a job with " bsub -o /dev/null 'python3 jobtostart.py' ". + +For DIV2K: + +cd $EXTRACT +python3 E_data_generation_luma_intra.py DIV2K 0 + +For subsampled DIV2K: + +python3 E_data_generation_luma_intra.py DIV2K_X2 0 + +For BVIDVC: + +python3 E_data_generation_luma_intra.py BVIDVC A +python3 E_data_generation_luma_intra.py BVIDVC B +python3 E_data_generation_luma_intra.py BVIDVC C +python3 E_data_generation_luma_intra.py BVIDVC D + +The resulting yuv-files to be used for training will now reside in 'dumpdirbase' + + + +G) Train simplified model: +========================== +Start training using +cd $TRAIN +python3 main.py --learning_rate 1e-4 --loss_function 'L1' --num_workers 32 --epochs 371 --tag simple_model + + diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/E_data_generation_luma_intra.py b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/E_data_generation_luma_intra.py new file mode 100644 index 0000000000000000000000000000000000000000..7c0079c78d6ddf34491de6d965bf567d2c6056e9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/E_data_generation_luma_intra.py @@ -0,0 +1,146 @@ +import csv +import sys +import os +from sys import platform +import subprocess +from subprocess import Popen, PIPE +import shutil +import glob +import time + + +cfgtype = 'ai' + + +# A list of QPs you want to encode. The submitted jobs will loop all the QPs. Remove the final two "break"s when ready to submit coding jobs. +#QP = [45,40,35,30,25,20] +QP = [20, 25, 30, 35, 40] + + +#dataset is either 'DIV2K', 'DIV2K_X2', or 'BVIDVC' +#dataset = 'BVIDVC' +#dataset = 'DIV2K_X2' +dataset = sys.argv[1] + +# String to control which names from the dataset you want to encode. +# E.g., DIV2K images start with 0xxx_xxxxxxx_xxx.yuv, so str1='0'. +# BVIDVC class D sequences start with Dxxxx_xxxxx.yuv, so str1='D'. +# A paticular sequence with name CColourfulDecorationWatPhoVidevo_960x544_50fps_10bit_420.yuv, so str1 = 'CColourfulDecorationWatPhoVidevo_960x544_50fps_10bit_420' +#str1 = 'DAdvertisingMassagesBangkokVidevo_480x272_25fps_10bit_420' +#str1 = 'AWovenVidevo_3840x2176_25fps_10bit_420' + +str1 = sys.argv[2] + +############### +# Change the following directories to your directories + +# directory of encoder and decoder +excutabledir = '/proj/video_no_backup/videosim/ejacstr/jvet_training_extraction/jvet_training/bin/' +encoderdir = excutabledir+'EncoderAppStatic_extraction_software' +decoderdir = excutabledir+'DecoderAppStatic_extraction_software' + +# directory where you can find original DIV2K yuv files of full resolution +inputdirDIV2K = '/proj/video_no_backup/videosim/ejacstr/jvet_training_extraction/links_to_AB0053_data/DIV2K_train_HR_yuv/' +# directory where you can find original DIV2K yuv files of half resolution +inputdirDIV2K_X2 = '/proj/video_no_backup/videosim/ejacstr/jvet_training_extraction/links_to_AB0053_data/DIV2K_train_X2_yuv/' +# directory where you can find original BVIDVC yuv files +inputdirBVIDVC = '/proj/video_no_backup/videosim/ejacstr/jvet_training_extraction/links_to_AB0053_data/BVI_DVC_train_yuv/' + +# Output directory of compressed bitstreams. Change the first part of the path to a location of your choice. +bitstreamsdir = '/proj/video_no_backup/videosim/ejacstr/jvet_training_extraction/links_to_AB0053_data/bitstreams/' +yuvoutputdir = bitstreamsdir + cfgtype + '_train/' +enclog_outputdir = bitstreamsdir + cfgtype + '_train_enclogs/' +# Dump directory where decompressed yuv files used for training data will reside. +dumpdirbase = '/proj/video_no_backup/videosim/ejacstr/jvet_training_extraction/links_to_AB0053_data/train_dump/' +os.makedirs(yuvoutputdir, exist_ok=True) +os.makedirs(enclog_outputdir, exist_ok=True) +os.makedirs(dumpdirbase, exist_ok=True) + +# Current directory (where this script file resides). +mycurrentdir = '/proj/video_no_backup/videosim/ejacstr/jvet_training_extraction/jvet_training/training/training_scripts/Nn_Filtering_Set_1/Scripts/data_extraction_scripts/' + + +################ + +#AI configuration file +cfg1 = mycurrentdir + '/encoder_intra_vtm_all.cfg' + +# Output directory of final training data. If necessary, change to a proper directory. +outputroot = "/path/to/train/"+cfgtype+"/" + +############### + +if dataset == 'DIV2K': + cfgdir = mycurrentdir + '/cfgDIV2K_IntraLuma/' + datasetname = "DIV2K_1frm" + inputdir = inputdirDIV2K + encnumfrm = '1' #number of frames to encode + numfrm = '1' # total number of frames + tempSubSampling = '1' + bitdepth = 10 + bitdepth_orig = 8 # BVIDVC 10bit, DIV2K 8bit + logdir = ''# not needed for AI +elif dataset == 'DIV2K_X2': + datasetname = "DIV2K_X2_1frm" + cfgdir = mycurrentdir + '/cfgDIV2K_X2_IntraLuma/' + inputdir = inputdirDIV2K_X2 + encnumfrm = '1' + numfrm = '1' + tempSubSampling = '1' + bitdepth = 10 + bitdepth_orig = 8 # BVIDVC 10bit, DIV2K 8bit + logdir = '' # not needed for AI +elif dataset == 'BVIDVC': + datasetname = "BVIDVC_64frm" + cfgdir = mycurrentdir + '/cfgBVIDVC_IntraLuma/' + inputdir = inputdirBVIDVC + encnumfrm = '64' + numfrm = '64' + if str1[0] == 'A': + tempSubSampling = '8' + else: + tempSubSampling = '1' + bitdepth = 10 + bitdepth_orig = 10 # BVIDVC 10bit, DIV2K 8bit + logdir = ''# not needed for AI +else: + print('dataset must be DIV2K_HR_and_XR. Exiting.') + exit(1) + +cnt = 0 + +for input_file in os.listdir(inputdir): + print('input file = ', input_file) + #input_file = '0800_downscaling.yuv' + if input_file[-3:] == 'yuv' and input_file[:len(str1)] == str1: + seqname = input_file[:-4] + cfg2 = cfgdir + seqname + '.cfg' + file_dir = inputdir + input_file + dumpdir = dumpdirbase + seqname + os.makedirs(dumpdir, exist_ok=True) + for q in range(0,len(QP)): + qp = str(QP[q]) + seqname_with_qp = yuvoutputdir + seqname + '_qp' + qp; + + bin_dir = seqname_with_qp + '_str.bin' + tmpout_dir = seqname_with_qp + '_tmprec.yuv' + log_dir = seqname_with_qp + '_dec.log' + enclog_dir = enclog_outputdir + seqname + '_qp' + qp + '_enc.log' + + enccmd = [encoderdir, "-c", cfg1, "-c", cfg2, "-i", file_dir, "-o", tmpout_dir,"-b", bin_dir, "-q", qp, "-f",encnumfrm, "-ts",tempSubSampling, "--NnlfOption=0 --Verbosity=6", ">&",enclog_dir] + enccmd = " ".join(enccmd) + + deccmd = [decoderdir, "-b", bin_dir, "--DumpBasename="+dumpdir+'/'+seqname+"_qp"+qp,">&",log_dir] + deccmd = " ".join(deccmd) + + cmdall = ["bsub -o /dev/null '", enccmd,";",deccmd, "'"] + + cmdall = " ".join(cmdall) + print(cmdall) + os.system(cmdall) + cnt += 1 + time.sleep(0.3) + +print('Total',cnt,'jobs.') + +# Unresolved: What main cfg file is used? diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAdvertisingMassagesBangkokVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAdvertisingMassagesBangkokVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8023dba30c2afe6da64e8eb458aade646deed469 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAdvertisingMassagesBangkokVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AAdvertisingMassagesBangkokVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAmericanFootballS2Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAmericanFootballS2Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b59a7a0a6812a32296b7ec83d89fe0e513b5e1b5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAmericanFootballS2Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AAmericanFootballS2Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAmericanFootballS3Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAmericanFootballS3Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6b24e595ddcd2d7db346a43e1fbe112c0e403a50 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAmericanFootballS3Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AAmericanFootballS3Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAmericanFootballS4Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAmericanFootballS4Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a4b07590bbe690f9180f3cb21784a2c1a64cf547 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAmericanFootballS4Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AAmericanFootballS4Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAnimalsS11Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAnimalsS11Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9cc30b11488a5882c536d76f42f51ae60128d676 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAnimalsS11Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AAnimalsS11Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAnimalsS1Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAnimalsS1Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..16ed3eb39f5975894098f6c44cb9b83af7351203 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AAnimalsS1Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AAnimalsS1Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABangkokMarketVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABangkokMarketVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..018195065d56d041576fe2a34a4033bd14e97152 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABangkokMarketVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABangkokMarketVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballGoalScoredS1Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballGoalScoredS1Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..798ddc186462681b3edc54f28e24cf9acd50699c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballGoalScoredS1Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABasketballGoalScoredS1Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballGoalScoredS2Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballGoalScoredS2Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fd95b2ac41ff2c6dfde6229ee54ff6a5c38c4e6d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballGoalScoredS2Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABasketballGoalScoredS2Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballS1YonseiUniversity_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballS1YonseiUniversity_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8b80d2931fc46be069853f7e659f1959fcb4aea9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballS1YonseiUniversity_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABasketballS1YonseiUniversity_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballS2YonseiUniversity_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballS2YonseiUniversity_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b548dd796e5dd336535721d875e9fa28c2600da5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballS2YonseiUniversity_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABasketballS2YonseiUniversity_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballS3YonseiUniversity_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballS3YonseiUniversity_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..93d8aac62a9e5885245a752a97d833b7b7e7cceb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABasketballS3YonseiUniversity_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABasketballS3YonseiUniversity_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABoatsChaoPhrayaRiverVidevo_3840x2176_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABoatsChaoPhrayaRiverVidevo_3840x2176_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cfffb3b36efc0e22d8c82be5403b8b9d7c69bbaf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABoatsChaoPhrayaRiverVidevo_3840x2176_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABoatsChaoPhrayaRiverVidevo_3840x2176_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABobbleheadBVIHFR_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABobbleheadBVIHFR_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0842df7672492f6dca1946fbc2df4b7ef94c3fe3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABobbleheadBVIHFR_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABobbleheadBVIHFR_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABookcaseBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABookcaseBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f1f6578e237012c081ae8b8c52214862c3b31e1f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABookcaseBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABookcaseBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABoxingPracticeHarmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABoxingPracticeHarmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ee74c8fb42af8007f349c151b808ac1b86be6835 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABoxingPracticeHarmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABoxingPracticeHarmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABricksBushesStaticBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABricksBushesStaticBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c49ea8ed4e010b29f80e8baae104abb5bf46d37a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABricksBushesStaticBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABricksBushesStaticBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABricksLeavesBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABricksLeavesBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..780e353c29c3ceee71863bb29ddc446c44497bbc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABricksLeavesBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABricksLeavesBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABricksTiltingBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABricksTiltingBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..07894c18151c912f845783470edc333a5242ce54 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABricksTiltingBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABricksTiltingBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABubblesPitcherS1BVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABubblesPitcherS1BVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..827233be616ca251a75a3d82f163c42097a37229 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABubblesPitcherS1BVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABubblesPitcherS1BVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuildingRoofS1IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuildingRoofS1IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..83ef085241d2292a91ab9b483de8f00dca7d6f28 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuildingRoofS1IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABuildingRoofS1IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuildingRoofS2IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuildingRoofS2IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9e11422e7e3843af3091dce27609f71b9776eb8e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuildingRoofS2IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABuildingRoofS2IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuildingRoofS3IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuildingRoofS3IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d73b574109693c9fb3c5a0a603d362610f4722e3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuildingRoofS3IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABuildingRoofS3IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuildingRoofS4IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuildingRoofS4IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5589cd7a0c85165cd474be36ad9c77955d382a24 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuildingRoofS4IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABuildingRoofS4IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuntingHangingAcrossHongKongVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuntingHangingAcrossHongKongVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a82d282d5dddbaa911599260003077f51c7182dd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABuntingHangingAcrossHongKongVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABuntingHangingAcrossHongKongVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABusyHongKongStreetVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABusyHongKongStreetVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e636daef311551dc08c35df97506ca7a19e99279 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ABusyHongKongStreetVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ABusyHongKongStreetVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACalmingWaterBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACalmingWaterBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c1258b5075c5ae8ee994df51d084e3bca484c5d6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACalmingWaterBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACalmingWaterBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACarpetPanAverageBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACarpetPanAverageBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..181eae7c6dbd21b48e446864aed75f37c4e0d5de --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACarpetPanAverageBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACarpetPanAverageBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACatchBVIHFR_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACatchBVIHFR_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..848fa9c1c3ae32115efb20edb33e2c4d0dd67b99 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACatchBVIHFR_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACatchBVIHFR_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACeramicsandSpicesMoroccoVidevo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACeramicsandSpicesMoroccoVidevo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0aab761727e174b00dcc8b86a2abe68e7e2ad5f8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACeramicsandSpicesMoroccoVidevo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACeramicsandSpicesMoroccoVidevo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACharactersYonseiUniversity_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACharactersYonseiUniversity_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fb3371f81b4912ad86b5b0774884dc4439330d22 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACharactersYonseiUniversity_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACharactersYonseiUniversity_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AChristmasPresentsIRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AChristmasPresentsIRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4186e07ecbf74855479811302edb83906e5bda7f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AChristmasPresentsIRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AChristmasPresentsIRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AChristmasRoomDareful_3840x2176_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AChristmasRoomDareful_3840x2176_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..80b327c02f0e60660f7f7c14bd8ffb84139eb07b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AChristmasRoomDareful_3840x2176_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AChristmasRoomDareful_3840x2176_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AChurchInsideMCLJCV_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AChurchInsideMCLJCV_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0b8045c83cf21d90a4a5ee47b938392252de8115 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AChurchInsideMCLJCV_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AChurchInsideMCLJCV_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityScapesS1IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityScapesS1IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b5bf74a804c747683ff141ef75c79e38b718bb99 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityScapesS1IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACityScapesS1IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityScapesS2IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityScapesS2IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1c0af5d3b4e7c87ffe1b4d65b1b966af66bb7645 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityScapesS2IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACityScapesS2IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityScapesS3IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityScapesS3IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ac7a8397b55fc7be54b22d9009d894dfb417d86f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityScapesS3IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACityScapesS3IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS1IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS1IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..034ea7b16b8accf05dda9cc3158130c550a22b3f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS1IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACityStreetS1IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS3IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS3IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a261fb362ddb39c7ace74ebd19ed34f0baf0fb8d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS3IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACityStreetS3IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS4IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS4IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..18654ad2960a46f1a13c7f42d942ddee5c545a7c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS4IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACityStreetS4IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS5IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS5IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f952d1c16736258d63dc235d2e2c45c01f888e5a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS5IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACityStreetS5IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS6IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS6IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aef2fd10d41ce1636b94d6662cac2899d3d39aa9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS6IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACityStreetS6IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS7IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS7IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aa2dec2caeed639731264aa635a8fceca5db61f8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACityStreetS7IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACityStreetS7IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACloseUpBasketballSceneVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACloseUpBasketballSceneVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..40e7d95bc348e11823b98d3339ca1f5ead160aa4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACloseUpBasketballSceneVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACloseUpBasketballSceneVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACloudsStaticBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACloudsStaticBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..55fb2bb81f434ea8af174f83488cccfedd62f502 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACloudsStaticBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACloudsStaticBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AColourfulDecorationWatPhoVidevo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AColourfulDecorationWatPhoVidevo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..23b8e7dd00fdea4c19e4611c1be738f63fd8a183 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AColourfulDecorationWatPhoVidevo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AColourfulDecorationWatPhoVidevo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AColourfulKoreanLanternsVidevo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AColourfulKoreanLanternsVidevo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..578176fe780babae2a80d1d49e010cfbb4a5ce73 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AColourfulKoreanLanternsVidevo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AColourfulKoreanLanternsVidevo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AColourfulPaperLanternsVidevo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AColourfulPaperLanternsVidevo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6d9248496dda8007620d35b339543f940bc79c67 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AColourfulPaperLanternsVidevo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AColourfulPaperLanternsVidevo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AColourfulRugsMoroccoVidevo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AColourfulRugsMoroccoVidevo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ea581db55539fabf96e2c333d03a330a7b463493 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AColourfulRugsMoroccoVidevo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AColourfulRugsMoroccoVidevo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AConstructionS2YonseiUniversity_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AConstructionS2YonseiUniversity_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..15e77b75f78e129e6aec42eff17ba46af912c847 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AConstructionS2YonseiUniversity_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AConstructionS2YonseiUniversity_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACostaRicaS3Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACostaRicaS3Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..10831480f5b928b8eba6ceb789ffb433bbef8a6f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACostaRicaS3Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACostaRicaS3Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrosswalkHarmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrosswalkHarmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7310088f15386b171e72a904a9ecd44cebc935eb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrosswalkHarmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACrosswalkHarmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrosswalkHongKong2S1Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrosswalkHongKong2S1Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2cae294682ec92c437555f3b34cec36ecf811fa1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrosswalkHongKong2S1Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACrosswalkHongKong2S1Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrosswalkHongKong2S2Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrosswalkHongKong2S2Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..85fa33722f5cf4e0f5f3604df3a648925d501fce --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrosswalkHongKong2S2Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACrosswalkHongKong2S2Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrosswalkHongKongVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrosswalkHongKongVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a8befd5ea7fd5fdd716756fb2106070ca91462c7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrosswalkHongKongVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACrosswalkHongKongVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrowdRunMCLV_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrowdRunMCLV_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1e77bb29cb5bcce164008f5b991745eeab1611df --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACrowdRunMCLV_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACrowdRunMCLV_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACyclistS1BVIHFR_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACyclistS1BVIHFR_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..86a097469f273569ca724d4aca7b93476eed13c3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACyclistS1BVIHFR_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACyclistS1BVIHFR_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACyclistVeniceBeachBoardwalkVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACyclistVeniceBeachBoardwalkVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..977fe1824c1660172f4d3b5b2f52100da7d61a5c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ACyclistVeniceBeachBoardwalkVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ACyclistVeniceBeachBoardwalkVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADollsScene1YonseiUniversity_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADollsScene1YonseiUniversity_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..86a32f3f8bac51fde5232d9d305c5002cddd8271 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADollsScene1YonseiUniversity_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ADollsScene1YonseiUniversity_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADollsScene2YonseiUniversity_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADollsScene2YonseiUniversity_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8ad6caf9aa52f219f6cd9d243495bc184731e892 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADollsScene2YonseiUniversity_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ADollsScene2YonseiUniversity_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADowntownHongKongVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADowntownHongKongVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0d86ded10b07d9725472696fe4c34fe209443e17 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADowntownHongKongVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ADowntownHongKongVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADrivingPOVHarmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADrivingPOVHarmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..41396471c9c8cd8a5d86fd26380e3e313f24c4e6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADrivingPOVHarmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ADrivingPOVHarmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADropsOnWaterBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADropsOnWaterBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..35ac0c7ffee7ecee51d95ff329a1ecb1bb4d3bfa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ADropsOnWaterBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ADropsOnWaterBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AElFuenteMaskLIVENetFlix_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AElFuenteMaskLIVENetFlix_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d7ef67edc432d3d3fbfde255778e4282a935d06a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AElFuenteMaskLIVENetFlix_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AElFuenteMaskLIVENetFlix_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AEnteringHongKongStallS1Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AEnteringHongKongStallS1Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a5de0eeb834b0ddfa3499090350d9d9674925166 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AEnteringHongKongStallS1Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AEnteringHongKongStallS1Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AEnteringHongKongStallS2Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AEnteringHongKongStallS2Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7618c5c3644556350cc2b64147eb7a34ea684535 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AEnteringHongKongStallS2Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AEnteringHongKongStallS2Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFerrisWheelTurningVidevo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFerrisWheelTurningVidevo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bdd5633b4db48026eafe2d543e89f584d1b101d6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFerrisWheelTurningVidevo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AFerrisWheelTurningVidevo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFirewoodS1IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFirewoodS1IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d8fc86dc2980012b441ee5181fd2b1e0f11ebf66 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFirewoodS1IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AFirewoodS1IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFirewoodS2IRIS_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFirewoodS2IRIS_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..161ab053adfbff1023bd1343322fecae347335f8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFirewoodS2IRIS_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AFirewoodS2IRIS_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFitnessIRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFitnessIRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2468ac889a00c4c80ea5cef384859acc0ff371ce --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFitnessIRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AFitnessIRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFjordsS1Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFjordsS1Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7dafee021a0d1d4d010a2e7355e9a6edec393806 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFjordsS1Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AFjordsS1Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlagShootTUMSVT_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlagShootTUMSVT_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0d6cb21c787a1adda3804e8c917116c22ae0b597 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlagShootTUMSVT_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AFlagShootTUMSVT_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlowerChapelS1IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlowerChapelS1IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..84ac84dbc8f4dc6ded967aef7ad924089e690daa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlowerChapelS1IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AFlowerChapelS1IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlowerChapelS2IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlowerChapelS2IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..32d6b06bb60a367ab8a70d347238fc6b310ddf21 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlowerChapelS2IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AFlowerChapelS2IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlyingCountrysideDareful_3840x2176_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlyingCountrysideDareful_3840x2176_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b2570b2b4233afae8915e50175680ff6652c354f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlyingCountrysideDareful_3840x2176_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AFlyingCountrysideDareful_3840x2176_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlyingMountainsDareful_3840x2176_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlyingMountainsDareful_3840x2176_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f93d000218cd08f337f650721130a150eb46dbb1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlyingMountainsDareful_3840x2176_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AFlyingMountainsDareful_3840x2176_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlyingThroughLAStreetVidevo_3840x2176_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlyingThroughLAStreetVidevo_3840x2176_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b41dc3c55bd4fb93a221a5620b82138c132f764a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFlyingThroughLAStreetVidevo_3840x2176_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AFlyingThroughLAStreetVidevo_3840x2176_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFungusZoomBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFungusZoomBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8984bce1a3bcf5dc91a7ea201aef150a60e801db --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AFungusZoomBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AFungusZoomBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AGrassBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AGrassBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0f3e1de894d03bc9fde84621916b4db2b4fa791b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AGrassBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AGrassBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AGrazTowerIRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AGrazTowerIRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fe08e28fd283efef53182d198c38ee670554e146 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AGrazTowerIRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AGrazTowerIRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHamsterBVIHFR_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHamsterBVIHFR_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0fd654dd444a4946b1a133a58c656ae85ff5227c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHamsterBVIHFR_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHamsterBVIHFR_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHarleyDavidsonIRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHarleyDavidsonIRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..32d7c726952274d2d3a66ea63bc88912a5634c3c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHarleyDavidsonIRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHarleyDavidsonIRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongIslandVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongIslandVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..247f00e2ac9356e4f24d077d1516cdde1b43af00 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongIslandVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHongKongIslandVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket1Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket1Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9122c8c444d4fa5fa086b978b9a6fa25dfcafbfd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket1Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHongKongMarket1Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket2Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket2Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fc0a2b097f1cc4a08aabb1c85b634591be192a99 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket2Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHongKongMarket2Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket3S1Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket3S1Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f3736dc1e6a9ae101368244d975fa815c2176260 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket3S1Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHongKongMarket3S1Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket3S2Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket3S2Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0d053cdaa7d618aa607a303c56a418cab0b6c6e7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket3S2Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHongKongMarket3S2Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket4S1Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket4S1Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..651207b47bd72f3ee11338560c8fa88f97978c76 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket4S1Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHongKongMarket4S1Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket4S2Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket4S2Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ef577d46b45b2e6d9e49206b8314f7c77a627775 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongMarket4S2Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHongKongMarket4S2Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongS1Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongS1Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..54b0e3f2d96177fbddf96bb5afce3b61fc0a3898 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongS1Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHongKongS1Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongS2Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongS2Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..049c9fa5a19766ea2252a96a89b884b18ca62e42 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongS2Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHongKongS2Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongS3Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongS3Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..579ae144935dc4ad93dfee7807f73dc75e6503e7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHongKongS3Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHongKongS3Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHorseDrawnCarriagesVidevo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHorseDrawnCarriagesVidevo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9ff2fd19f8614c564a71659ad28d45b62f1953eb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHorseDrawnCarriagesVidevo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHorseDrawnCarriagesVidevo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHorseStaringS1Videvo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHorseStaringS1Videvo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ffc738e0b31aaab357d2bbb9cb1ae06b05697426 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHorseStaringS1Videvo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHorseStaringS1Videvo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHorseStaringS2Videvo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHorseStaringS2Videvo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5fe4f16889c14601a371fd8086e49db0f73b7a65 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AHorseStaringS2Videvo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AHorseStaringS2Videvo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AJockeyHarmonics_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AJockeyHarmonics_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ab94f3574e22acb8bab3dc70202a4c84ee41d4d6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AJockeyHarmonics_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AJockeyHarmonics_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AJoggersS1BVIHFR_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AJoggersS1BVIHFR_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1485518585cfa2a604a124492ee8badf2fc524dc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AJoggersS1BVIHFR_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AJoggersS1BVIHFR_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AJoggersS2BVIHFR_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AJoggersS2BVIHFR_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5eb7fcf12cba2562693955438c9590ea089efd29 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AJoggersS2BVIHFR_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AJoggersS2BVIHFR_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AKartingIRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AKartingIRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d954a4f52d32fc3b57364bc35318a71dc06bdc81 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AKartingIRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AKartingIRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AKoraDrumsVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AKoraDrumsVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d0e32cb455557a0a6e86a8aa815030f5c1571a5a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AKoraDrumsVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AKoraDrumsVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALakeYonseiUniversity_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALakeYonseiUniversity_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e3cec90c41f98204e4ffbc0bea10e114f86e631b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALakeYonseiUniversity_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ALakeYonseiUniversity_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALampLeavesBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALampLeavesBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e6314789607dc68b0224daa896bd1473b777dd59 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALampLeavesBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ALampLeavesBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALaundryHangingOverHongKongVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALaundryHangingOverHongKongVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..24305c871a9e9b58e19c3d891b1d351ad8759fb3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALaundryHangingOverHongKongVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ALaundryHangingOverHongKongVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALeaves1BVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALeaves1BVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..61b3eea9b15562cd4874c116960dd9e5d6daca33 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALeaves1BVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ALeaves1BVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALeaves3BVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALeaves3BVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..03bdcc023288c52e77eb69db7f19ee5b027445f3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALeaves3BVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ALeaves3BVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALowLevelShotAlongHongKongVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALowLevelShotAlongHongKongVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5e03e334ae5ad79244b0b28c815024e3b415c02a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALowLevelShotAlongHongKongVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ALowLevelShotAlongHongKongVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALungshanTempleS1Videvo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALungshanTempleS1Videvo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0842552eeeb2ceba75738f0dfdc22b9a34215f42 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALungshanTempleS1Videvo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ALungshanTempleS1Videvo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALungshanTempleS2Videvo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALungshanTempleS2Videvo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7229f0ba2b7a0aefd6639c0f572725823de9ca16 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ALungshanTempleS2Videvo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ALungshanTempleS2Videvo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AManMoTempleVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AManMoTempleVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c503d3bf5d678b8f35c01d4a6c4557a5a77782bc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AManMoTempleVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AManMoTempleVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AManStandinginProduceTruckVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AManStandinginProduceTruckVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..72805ec49246d1da8258b388d8c3f9ac02fa97e1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AManStandinginProduceTruckVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AManStandinginProduceTruckVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AManWalkingThroughBangkokVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AManWalkingThroughBangkokVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..04f53a0d556a16faea395970237b5a75ebd27772 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AManWalkingThroughBangkokVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AManWalkingThroughBangkokVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMaplesS1YonseiUniversity_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMaplesS1YonseiUniversity_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4a206ba71b121cc983cfd5827c6a9e1f497c5a50 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMaplesS1YonseiUniversity_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AMaplesS1YonseiUniversity_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMaplesS2YonseiUniversity_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMaplesS2YonseiUniversity_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..123ac6a3ac999f7d5fdbd892a96d005bb9be0c02 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMaplesS2YonseiUniversity_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AMaplesS2YonseiUniversity_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMirabellParkS1IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMirabellParkS1IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..89403ce39ea64820b2b9117d233c5b713bfc1831 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMirabellParkS1IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AMirabellParkS1IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMirabellParkS2IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMirabellParkS2IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cb2f24b36e310b95525e3d956e61120707745f89 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMirabellParkS2IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AMirabellParkS2IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMobileHarmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMobileHarmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3f6e19c7c04e24885ce67e8884a0260b3433c777 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMobileHarmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AMobileHarmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMoroccanCeramicsShopVidevo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMoroccanCeramicsShopVidevo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b068e6d02b76e072425a4ca296a1f525fbe46cee --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMoroccanCeramicsShopVidevo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AMoroccanCeramicsShopVidevo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMoroccanSlippersVidevo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMoroccanSlippersVidevo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f1465a1d91e6c7a02ffe6670143c6c66d73e5fd6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMoroccanSlippersVidevo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AMoroccanSlippersVidevo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMuralPaintingVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMuralPaintingVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a2882f3bd71a793d40d4ed525aa923ae481569d6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMuralPaintingVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AMuralPaintingVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMyanmarS4Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMyanmarS4Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..95c77efff0f035c5c0137e283b0861c8d1336582 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMyanmarS4Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AMyanmarS4Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMyanmarS6Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMyanmarS6Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..736e2bbb0c70b1f73375cd9ec9071b5cb4b1771a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMyanmarS6Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AMyanmarS6Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMyeongDongVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMyeongDongVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..efbc15dd1e040aafe584515983838d87e7824729 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AMyeongDongVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AMyeongDongVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ANewYorkStreetDareful_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ANewYorkStreetDareful_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..42551a0e661b5eaf115ff90900bec9a08c9a4f35 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ANewYorkStreetDareful_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ANewYorkStreetDareful_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AOrangeBuntingoverHongKongVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AOrangeBuntingoverHongKongVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..11c3de2540f02e8faf0f783907887ada2edf9fcc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AOrangeBuntingoverHongKongVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AOrangeBuntingoverHongKongVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APaintingTiltingBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APaintingTiltingBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..baf34b66e779439409770a73e530f7fb32103136 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APaintingTiltingBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : APaintingTiltingBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AParkViolinMCLJCV_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AParkViolinMCLJCV_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..de5d8a88ac7c470373a4cd536fafd0421fbb4b94 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AParkViolinMCLJCV_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AParkViolinMCLJCV_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APedestriansSeoulatDawnVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APedestriansSeoulatDawnVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aa30ae5bc757cdb60d211c281eecbf69264d8947 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APedestriansSeoulatDawnVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : APedestriansSeoulatDawnVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APeopleWalkingS1IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APeopleWalkingS1IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..60a8d1e8c57faf4d794fc2fd5658aff72f6debb1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APeopleWalkingS1IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : APeopleWalkingS1IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APersonRunningOutsideVidevo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APersonRunningOutsideVidevo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..94abe62813c1130485dc5b305c5cbb92818ec37e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APersonRunningOutsideVidevo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : APersonRunningOutsideVidevo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APillowsTransBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APillowsTransBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b8d766910d309b69f48b2f9b3345489ad8cd5cf0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APillowsTransBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : APillowsTransBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APlasmaFreeBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APlasmaFreeBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..73e1cb9d16519f661cd93741cfd09bedf5b21257 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APlasmaFreeBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : APlasmaFreeBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APresentsChristmasTreeDareful_3840x2176_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APresentsChristmasTreeDareful_3840x2176_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e505a8eb36946baaed601d2dc78f8aa4f01733d4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/APresentsChristmasTreeDareful_3840x2176_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : APresentsChristmasTreeDareful_3840x2176_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AResidentialBuildingSJTU_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AResidentialBuildingSJTU_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..88d3aa01b4a2ac14e4817a02144e1e597a435ddf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AResidentialBuildingSJTU_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AResidentialBuildingSJTU_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ARunnersSJTU_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ARunnersSJTU_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..eae794a973bede44be6618641e641d373b70f1f9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ARunnersSJTU_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ARunnersSJTU_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ARuralSetupIRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ARuralSetupIRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f4a13ba82d2e5da218679e3581098fa53438766c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ARuralSetupIRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ARuralSetupIRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ARuralSetupS2IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ARuralSetupS2IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2282426eb2964b05e01894d221639f96ba85e9e6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ARuralSetupS2IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ARuralSetupS2IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AScarfSJTU_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AScarfSJTU_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f68c008c60e8fb36cb6097b3fd58ca5279cfae53 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AScarfSJTU_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AScarfSJTU_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASeasideWalkIRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASeasideWalkIRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..07ce8f37dbdb2c4c2b17c1bb243d0fe5c79b1f38 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASeasideWalkIRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ASeasideWalkIRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASeekingMCLV_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASeekingMCLV_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9c4d636e6c5124dcadb9d4d10e2a5712b0625917 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASeekingMCLV_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ASeekingMCLV_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASeoulCanalatDawnVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASeoulCanalatDawnVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..99fed587949cfe15778bb343a734b6010007ea87 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASeoulCanalatDawnVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ASeoulCanalatDawnVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AShoppingCentreVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AShoppingCentreVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8b7ae8d2b364afb41670cf729a9c7a4c21559ca8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AShoppingCentreVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AShoppingCentreVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASignboardBoatLIVENetFlix_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASignboardBoatLIVENetFlix_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e2684dafcebb6c73782c91deaac56bde47876c5f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASignboardBoatLIVENetFlix_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ASignboardBoatLIVENetFlix_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASkyscraperBangkokVidevo_3840x2176_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASkyscraperBangkokVidevo_3840x2176_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bf7f1bc019d7057dc184d86d47c8c3e77e5ae5f9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASkyscraperBangkokVidevo_3840x2176_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ASkyscraperBangkokVidevo_3840x2176_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASmokeClearBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASmokeClearBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..91cded9fa54459919e1271782311e471f7eb797b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASmokeClearBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ASmokeClearBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASparklerBVIHFR_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASparklerBVIHFR_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..24ebd9b8af31377e4cf1c0a458bcf388d6937c40 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASparklerBVIHFR_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ASparklerBVIHFR_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASquareAndTimelapseHarmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASquareAndTimelapseHarmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ffec42894502be006f6d7dce14af448eda0b8004 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASquareAndTimelapseHarmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ASquareAndTimelapseHarmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASquareS1IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASquareS1IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..65c2a7c38d16eb1cf66c3d2f32199ad7681a8f95 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASquareS1IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ASquareS1IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASquareS2IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASquareS2IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2f6e2c0bd293a9e76bdf120d6f4c3ae229bb1feb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ASquareS2IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ASquareS2IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetArtVidevo_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetArtVidevo_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..517eede5d6393a28a03a0491512ccfd4a144f4bb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetArtVidevo_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AStreetArtVidevo_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS1IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS1IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..64869c04d02dabf2b1e43a774a40fee4cce3098d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS1IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AStreetDancerS1IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS2IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS2IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aa7021a3c2475c0453da3229819bd0de124a9694 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS2IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AStreetDancerS2IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS3IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS3IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9806742162f16bfa01dc3372009e6e9b0c3a6e0b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS3IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AStreetDancerS3IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS4IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS4IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2405a3ce8aa560bbd14d371722bffaf75fbe4a11 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS4IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AStreetDancerS4IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS5IRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS5IRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7db02c1c97674f5d4738b162cf0319f5dcd2bec0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetDancerS5IRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AStreetDancerS5IRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetsOfIndiaS1Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetsOfIndiaS1Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..87bc9ae6656e752b41c75ad89617660083088d72 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetsOfIndiaS1Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AStreetsOfIndiaS1Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetsOfIndiaS2Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetsOfIndiaS2Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9538f6741d903ea28ed939544eb775b3ef3ff89b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetsOfIndiaS2Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AStreetsOfIndiaS2Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetsOfIndiaS3Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetsOfIndiaS3Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..25e1ec6e8bc0a02308f1ed0528fca577ad281250 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AStreetsOfIndiaS3Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AStreetsOfIndiaS3Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaiChiHongKongS1Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaiChiHongKongS1Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f940e2d36156cabf1b2cdbff040c2e6a31222742 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaiChiHongKongS1Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATaiChiHongKongS1Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaiChiHongKongS2Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaiChiHongKongS2Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b756d33b60809239e63288d58cac33268e3cd5e7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaiChiHongKongS2Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATaiChiHongKongS2Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaipeiCityRooftops8Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaipeiCityRooftops8Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0ba442bcd01fa64724c4ab522f6ba14ce5711b94 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaipeiCityRooftops8Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATaipeiCityRooftops8Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaipeiCityRooftopsS1Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaipeiCityRooftopsS1Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b2f0d3463382ae332fd6b36be2bb99e603948e3a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaipeiCityRooftopsS1Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATaipeiCityRooftopsS1Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaipeiCityRooftopsS2Videvo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaipeiCityRooftopsS2Videvo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7db21b0c7dc987d8aeeb6fc765be6a26255a8d88 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaipeiCityRooftopsS2Videvo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATaipeiCityRooftopsS2Videvo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaksinBridgeVidevo_3840x2176_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaksinBridgeVidevo_3840x2176_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2c57003628f5813f09b10b9f9783ca905c05e2b9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATaksinBridgeVidevo_3840x2176_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATaksinBridgeVidevo_3840x2176_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATallBuildingsSJTU_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATallBuildingsSJTU_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5d31a1db2d5e004f9d440586e7601ade251012f2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATallBuildingsSJTU_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATallBuildingsSJTU_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATennisMCLV_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATennisMCLV_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6f67c3cd6ba02e784e87f3c784782feeb9c36e8d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATennisMCLV_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATennisMCLV_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATouristsSatOutsideVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATouristsSatOutsideVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3b42966f8910c7319f3e396a571b05b8cdfe9eb8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATouristsSatOutsideVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATouristsSatOutsideVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AToyCalendarHarmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AToyCalendarHarmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fc8d0a881fed5c5789f5cefb8116dd56adf95893 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AToyCalendarHarmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AToyCalendarHarmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrackingDownHongKongSideVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrackingDownHongKongSideVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..db0863d0f6ea842bd2bceccabf4503ca8edb9af3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrackingDownHongKongSideVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATrackingDownHongKongSideVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrackingPastRestaurantVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrackingPastRestaurantVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e1302c609037effca19a75bcb386042c4526cbeb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrackingPastRestaurantVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATrackingPastRestaurantVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrackingPastStallHongKongVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrackingPastStallHongKongVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cc08b48b1e6e969165fc91f3707660c664b710f0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrackingPastStallHongKongVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATrackingPastStallHongKongVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATraditionalIndonesianKecakVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATraditionalIndonesianKecakVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b2fe6bd82f3a06b578ddb00e4c16c289e92d1130 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATraditionalIndonesianKecakVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATraditionalIndonesianKecakVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrafficFlowSJTU_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrafficFlowSJTU_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bbb76d5120d1a418662a578a1d51172e5aa15702 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrafficFlowSJTU_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATrafficFlowSJTU_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrafficandBuildingSJTU_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrafficandBuildingSJTU_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0274e9eefc854d430deba5e5fae9641cee479b15 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrafficandBuildingSJTU_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATrafficandBuildingSJTU_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrafficonTasksinBridgeVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrafficonTasksinBridgeVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ecff9d31579c7a9ce13409d1d3d55095c986068d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATrafficonTasksinBridgeVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATrafficonTasksinBridgeVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATreeWillsBVITexture_3840x2176_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATreeWillsBVITexture_3840x2176_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..68136833b5dd8049066677438f6e64d75f99a0f6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATreeWillsBVITexture_3840x2176_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATreeWillsBVITexture_3840x2176_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATruckIRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATruckIRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7792897d5d30fa8858e38960c3a531db1a5fce8d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATruckIRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATruckIRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATunnelFlagS1Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATunnelFlagS1Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ebb919280e87ae0e5b50cbf67c0a08cdced4ad07 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/ATunnelFlagS1Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : ATunnelFlagS1Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AUnloadingVegetablesVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AUnloadingVegetablesVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7eb3e882e02864fbb568baf5b4c97d3474f0ebfe --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AUnloadingVegetablesVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AUnloadingVegetablesVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVegetableMarketS1LIVENetFlix_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVegetableMarketS1LIVENetFlix_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2a5455361472b351065d77360feb5008497ab9de --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVegetableMarketS1LIVENetFlix_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AVegetableMarketS1LIVENetFlix_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVegetableMarketS2LIVENetFlix_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVegetableMarketS2LIVENetFlix_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5f456ade4c48bfcf9554a47eedc1b564b92be52b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVegetableMarketS2LIVENetFlix_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AVegetableMarketS2LIVENetFlix_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVegetableMarketS3LIVENetFlix_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVegetableMarketS3LIVENetFlix_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..da65ee6736b3022081199ae5cb142f86005b4d16 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVegetableMarketS3LIVENetFlix_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AVegetableMarketS3LIVENetFlix_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVegetableMarketS4LIVENetFlix_3840x2176_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVegetableMarketS4LIVENetFlix_3840x2176_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0af64e5ae6599fbda0c01ea9df2c2f23feb259d7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVegetableMarketS4LIVENetFlix_3840x2176_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AVegetableMarketS4LIVENetFlix_3840x2176_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVeniceS1Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVeniceS1Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3f748f68ebb7602ca74e74d6be7e088307304705 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVeniceS1Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AVeniceS1Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVeniceS2Harmonics_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVeniceS2Harmonics_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b05fb1fb662be396e864fdd61328c6b865bd71cb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVeniceS2Harmonics_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AVeniceS2Harmonics_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVeniceSceneIRIS_3840x2176_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVeniceSceneIRIS_3840x2176_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a72954cf3d7432af1ba8cbe5b097cb2c49b638b0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AVeniceSceneIRIS_3840x2176_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AVeniceSceneIRIS_3840x2176_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWalkingDownKhaoStreetVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWalkingDownKhaoStreetVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..75b2c991e9afbceddcd607286b81d2c0871b8034 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWalkingDownKhaoStreetVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AWalkingDownKhaoStreetVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWalkingDownNorthRodeoVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWalkingDownNorthRodeoVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8da33bc43f13f4cd3a0d557921fb7c09f9513789 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWalkingDownNorthRodeoVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AWalkingDownNorthRodeoVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWalkingThroughFootbridgeVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWalkingThroughFootbridgeVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..54e91e717ef64c008e1d78b19e5dc2627060468f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWalkingThroughFootbridgeVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AWalkingThroughFootbridgeVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWatPhoTempleVidevo_3840x2176_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWatPhoTempleVidevo_3840x2176_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6c2b7a2da95932040a7222e4d081387165c1f6b7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWatPhoTempleVidevo_3840x2176_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AWatPhoTempleVidevo_3840x2176_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWoodSJTU_3840x2176_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWoodSJTU_3840x2176_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fc5011e927c499eb5680265f5a25394c8b00cf59 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWoodSJTU_3840x2176_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AWoodSJTU_3840x2176_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWovenVidevo_3840x2176_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWovenVidevo_3840x2176_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..24f44262fbf9c7f85274c476b35a0a035950c6cb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/AWovenVidevo_3840x2176_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : AWovenVidevo_3840x2176_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 3840 # Input frame width +SourceHeight : 2176 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 5.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAdvertisingMassagesBangkokVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAdvertisingMassagesBangkokVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0fdb9f7aadf49db275d100fb8b801ce4d32906ae --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAdvertisingMassagesBangkokVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BAdvertisingMassagesBangkokVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAmericanFootballS2Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAmericanFootballS2Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5f287dd9bd522d4211de4c287ffe09af3f3824f9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAmericanFootballS2Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BAmericanFootballS2Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAmericanFootballS3Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAmericanFootballS3Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..160760c8587ec7f8315e3a5941214273cd9acb96 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAmericanFootballS3Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BAmericanFootballS3Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAmericanFootballS4Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAmericanFootballS4Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8cdbdbdbcf829dd0d9c4e770025ee7a94749ceec --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAmericanFootballS4Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BAmericanFootballS4Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAnimalsS11Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAnimalsS11Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ba28ad30bd5d4a6b4d780365802ca1bb3a5e3c30 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAnimalsS11Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BAnimalsS11Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAnimalsS1Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAnimalsS1Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9a13fdc544e261f2a7bce83f15ae495d1fb61d64 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BAnimalsS1Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BAnimalsS1Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBangkokMarketVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBangkokMarketVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ae9d0c306c0e5dd8be92cd7d0bebfb7df2316fb6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBangkokMarketVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBangkokMarketVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballGoalScoredS1Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballGoalScoredS1Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9010b9b9abc39ace525b00685aa8d6d9b9519c2d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballGoalScoredS1Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBasketballGoalScoredS1Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballGoalScoredS2Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballGoalScoredS2Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0d12054c514318b872b7aab8586d5e23c79ea708 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballGoalScoredS2Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBasketballGoalScoredS2Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballS1YonseiUniversity_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballS1YonseiUniversity_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fee81fcc4da98cf2a61d51f75bf6dd09ed7e848b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballS1YonseiUniversity_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBasketballS1YonseiUniversity_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballS2YonseiUniversity_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballS2YonseiUniversity_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4ac1ab153e200b177e09dd8acf7ec47e9e01a650 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballS2YonseiUniversity_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBasketballS2YonseiUniversity_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballS3YonseiUniversity_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballS3YonseiUniversity_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..220ae474c6af75be0aca78eff3fe20c989c6695c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBasketballS3YonseiUniversity_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBasketballS3YonseiUniversity_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBoatsChaoPhrayaRiverVidevo_1920x1088_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBoatsChaoPhrayaRiverVidevo_1920x1088_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4a6b868515375f73e9a3412f8cbdf2d01e6caae1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBoatsChaoPhrayaRiverVidevo_1920x1088_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBoatsChaoPhrayaRiverVidevo_1920x1088_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBobbleheadBVIHFR_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBobbleheadBVIHFR_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f1a01ec4ee70f058c756d6d6a653aa36fb4054e7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBobbleheadBVIHFR_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBobbleheadBVIHFR_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBookcaseBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBookcaseBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dfc2fe1c7d07fc321a4ac6b667c22b9234fcede6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBookcaseBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBookcaseBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBoxingPracticeHarmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBoxingPracticeHarmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3aab02cd3b412877cefcef2ed30ee3187449b23f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBoxingPracticeHarmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBoxingPracticeHarmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBricksBushesStaticBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBricksBushesStaticBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..428b8227783c2eec9d6ec53f67b35435744ae850 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBricksBushesStaticBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBricksBushesStaticBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBricksLeavesBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBricksLeavesBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4fffe0cc477b3a320a900da578c8286e351ded7a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBricksLeavesBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBricksLeavesBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBricksTiltingBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBricksTiltingBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b31fc554b39e71ad68f38873ed404385ee45c28e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBricksTiltingBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBricksTiltingBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBubblesPitcherS1BVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBubblesPitcherS1BVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e796b770116b6ac35783d5065a2f39b8a125c389 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBubblesPitcherS1BVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBubblesPitcherS1BVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuildingRoofS1IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuildingRoofS1IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bfb10eb2dbd4b36b50f16d385f37c4c88e5cc306 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuildingRoofS1IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBuildingRoofS1IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuildingRoofS2IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuildingRoofS2IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1650a475994fcfd85e02b6c074b31635cdba03f1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuildingRoofS2IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBuildingRoofS2IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuildingRoofS3IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuildingRoofS3IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ff6c1d145e0d37be16104296d14143151bf43439 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuildingRoofS3IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBuildingRoofS3IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuildingRoofS4IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuildingRoofS4IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..853095bcee9dd0f85b8f060ee8c7b76c6a8b8942 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuildingRoofS4IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBuildingRoofS4IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuntingHangingAcrossHongKongVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuntingHangingAcrossHongKongVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e54e86f19fec190311268ce17403c808dacff2af --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBuntingHangingAcrossHongKongVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBuntingHangingAcrossHongKongVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBusyHongKongStreetVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBusyHongKongStreetVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c3ce05bf33e0897e16d5a2e5e320c54e2301d6e0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BBusyHongKongStreetVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BBusyHongKongStreetVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCalmingWaterBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCalmingWaterBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..39dfbdc763c138f2c0ef803a941df0f897dd1313 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCalmingWaterBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCalmingWaterBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCarpetPanAverageBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCarpetPanAverageBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9486e1b49f5a44beabacb903ec969a9347c5e4a3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCarpetPanAverageBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCarpetPanAverageBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCatchBVIHFR_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCatchBVIHFR_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..658628c1aef1735578c93a8e739cbdbaae1397a3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCatchBVIHFR_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCatchBVIHFR_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCeramicsandSpicesMoroccoVidevo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCeramicsandSpicesMoroccoVidevo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..53139ee2799ae9bacca6f0cc236444811e3bca15 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCeramicsandSpicesMoroccoVidevo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCeramicsandSpicesMoroccoVidevo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCharactersYonseiUniversity_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCharactersYonseiUniversity_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..debfa51ed8a6ecf68595412fa0f90d2a524a2b70 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCharactersYonseiUniversity_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCharactersYonseiUniversity_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BChristmasPresentsIRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BChristmasPresentsIRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c441d7e572d5e4ab40805e60413ae2caaf6c1b30 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BChristmasPresentsIRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BChristmasPresentsIRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BChristmasRoomDareful_1920x1088_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BChristmasRoomDareful_1920x1088_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6052d04fb8708ccd391e6f301e9f0af30426fc43 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BChristmasRoomDareful_1920x1088_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BChristmasRoomDareful_1920x1088_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BChurchInsideMCLJCV_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BChurchInsideMCLJCV_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e9a8f4cfb34abe3f49f75642ffa61864ede5b00f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BChurchInsideMCLJCV_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BChurchInsideMCLJCV_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityScapesS1IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityScapesS1IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5003d01cf386bcb2e9260b915d65249c8336bebb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityScapesS1IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCityScapesS1IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityScapesS2IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityScapesS2IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..99cccd2b6a4df43c244e53474eba11e3cb432869 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityScapesS2IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCityScapesS2IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityScapesS3IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityScapesS3IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6235d53da6442631a4a9ba8e95af8f99d9ba005b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityScapesS3IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCityScapesS3IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS1IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS1IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bac31d5fbda98fcbcbdf4714077d64d6de9c3462 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS1IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCityStreetS1IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS3IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS3IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a5c03acbf6c643f43b2d3c08f62006fa22035b41 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS3IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCityStreetS3IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS4IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS4IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8c9e8bd9d47a820dc774f6a7642501af3b84c5ef --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS4IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCityStreetS4IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS5IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS5IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e01aa2ae4afba620a6f5ffa5fba4e560b3dfaf1b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS5IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCityStreetS5IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS6IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS6IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2ab2d2eb88cfbb7af6aef20dc809070723bff4d1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS6IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCityStreetS6IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS7IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS7IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f06e9055feb1737cb3ae2c844c7458f29c8525ba --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCityStreetS7IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCityStreetS7IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCloseUpBasketballSceneVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCloseUpBasketballSceneVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..223e1a3c948261d01490d052fd9f2edfe57286f0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCloseUpBasketballSceneVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCloseUpBasketballSceneVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCloudsStaticBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCloudsStaticBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9a3e8ce9085b2a5cfb756187eb15d45a6d17a07b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCloudsStaticBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCloudsStaticBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BColourfulDecorationWatPhoVidevo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BColourfulDecorationWatPhoVidevo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e56a7599a4c7f24c2df7de98f38ff2c9e1c39129 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BColourfulDecorationWatPhoVidevo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BColourfulDecorationWatPhoVidevo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BColourfulKoreanLanternsVidevo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BColourfulKoreanLanternsVidevo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b495f241baf5c09f442942d210e7c3a821305dea --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BColourfulKoreanLanternsVidevo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BColourfulKoreanLanternsVidevo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BColourfulPaperLanternsVidevo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BColourfulPaperLanternsVidevo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b1d9c6ea29a86e0903aad7898b84fe4279779ec6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BColourfulPaperLanternsVidevo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BColourfulPaperLanternsVidevo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BColourfulRugsMoroccoVidevo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BColourfulRugsMoroccoVidevo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a1de4e1d4849093a884f1db25742b52af2635129 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BColourfulRugsMoroccoVidevo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BColourfulRugsMoroccoVidevo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BConstructionS2YonseiUniversity_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BConstructionS2YonseiUniversity_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b0eaecbb471179aefb48db0fcf5ca62232d5e638 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BConstructionS2YonseiUniversity_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BConstructionS2YonseiUniversity_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCostaRicaS3Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCostaRicaS3Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5f82f2f6dc2947e065de6388c272d614c168f370 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCostaRicaS3Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCostaRicaS3Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrosswalkHarmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrosswalkHarmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4c0e60b3ba3854a56adfa3637b5ef129fcf395d5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrosswalkHarmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCrosswalkHarmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrosswalkHongKong2S1Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrosswalkHongKong2S1Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..07c32049e97866724de7895640bdcef5f11a2056 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrosswalkHongKong2S1Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCrosswalkHongKong2S1Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrosswalkHongKong2S2Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrosswalkHongKong2S2Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3b55d6606c370ec96746c7ab34807e8a88ad7be4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrosswalkHongKong2S2Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCrosswalkHongKong2S2Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrosswalkHongKongVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrosswalkHongKongVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..799ef2f5f04eebfc69376d77f93f7a9ce5cfff62 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrosswalkHongKongVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCrosswalkHongKongVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrowdRunMCLV_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrowdRunMCLV_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3a10669bebbc3d17376dc57e2f59b5db60a72494 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCrowdRunMCLV_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCrowdRunMCLV_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCyclistS1BVIHFR_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCyclistS1BVIHFR_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f6ffee2086c5f981209cbf223e9971afb8494050 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCyclistS1BVIHFR_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCyclistS1BVIHFR_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCyclistVeniceBeachBoardwalkVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCyclistVeniceBeachBoardwalkVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b332d8526f51b6e9821576fd12a9176da97c04fa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BCyclistVeniceBeachBoardwalkVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BCyclistVeniceBeachBoardwalkVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDollsScene1YonseiUniversity_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDollsScene1YonseiUniversity_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4a1da81f026f1e00ca9028945d3508be6b2a00a1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDollsScene1YonseiUniversity_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BDollsScene1YonseiUniversity_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDollsScene2YonseiUniversity_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDollsScene2YonseiUniversity_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..60511a60ef9ccc3a7a0419320fad9ddbd8b50f1c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDollsScene2YonseiUniversity_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BDollsScene2YonseiUniversity_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDowntownHongKongVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDowntownHongKongVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..380316e7ddbc7233db7f8c5c9a308d76eb621021 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDowntownHongKongVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BDowntownHongKongVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDrivingPOVHarmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDrivingPOVHarmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b6d13e7d4da959b9c8836a5815f8a1896d07b7f3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDrivingPOVHarmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BDrivingPOVHarmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDropsOnWaterBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDropsOnWaterBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6e58c9c20f691e28a0815796831f03e4b4b6297f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BDropsOnWaterBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BDropsOnWaterBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BElFuenteMaskLIVENetFlix_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BElFuenteMaskLIVENetFlix_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c1e9292b9396951a2f410cd14c2c62bd946cca37 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BElFuenteMaskLIVENetFlix_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BElFuenteMaskLIVENetFlix_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BEnteringHongKongStallS1Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BEnteringHongKongStallS1Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c5c0a304101d9f87352abcba2d2c1a59a8753337 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BEnteringHongKongStallS1Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BEnteringHongKongStallS1Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BEnteringHongKongStallS2Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BEnteringHongKongStallS2Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b67f57662de67a7f3f0070e1ec22f8f10be62513 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BEnteringHongKongStallS2Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BEnteringHongKongStallS2Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFerrisWheelTurningVidevo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFerrisWheelTurningVidevo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..eb931708b7348a109dc8def0436ac5cc5b255d0e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFerrisWheelTurningVidevo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BFerrisWheelTurningVidevo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFirewoodS1IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFirewoodS1IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1e145f8f3148a11e3596d6e7c86a5bdf6df7fb7c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFirewoodS1IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BFirewoodS1IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFirewoodS2IRIS_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFirewoodS2IRIS_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fdd1ba208c5d4b8205d81244952330e858f485c0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFirewoodS2IRIS_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BFirewoodS2IRIS_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFitnessIRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFitnessIRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..795213da296cd36ed090ba389001a7ea1f42cffe --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFitnessIRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BFitnessIRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFjordsS1Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFjordsS1Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..54450a1117352d87c8dc4185ce6a8c0470ae1091 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFjordsS1Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BFjordsS1Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlagShootTUMSVT_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlagShootTUMSVT_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7b94e219bde68792107b70ae2c50d8c15d2b9794 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlagShootTUMSVT_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BFlagShootTUMSVT_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlowerChapelS1IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlowerChapelS1IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..953d50a1408aa440cedda88ecfa3755c32bcb878 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlowerChapelS1IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BFlowerChapelS1IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlowerChapelS2IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlowerChapelS2IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4f3d7be69ed1a25b425a1c2b920c78a3a62b38b8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlowerChapelS2IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BFlowerChapelS2IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlyingCountrysideDareful_1920x1088_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlyingCountrysideDareful_1920x1088_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2348a61e9ce86da09454403a525934d219f7106a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlyingCountrysideDareful_1920x1088_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BFlyingCountrysideDareful_1920x1088_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlyingMountainsDareful_1920x1088_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlyingMountainsDareful_1920x1088_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..23422baecdbf4ec2e945f42640857d96558b96fd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlyingMountainsDareful_1920x1088_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BFlyingMountainsDareful_1920x1088_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlyingThroughLAStreetVidevo_1920x1088_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlyingThroughLAStreetVidevo_1920x1088_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8f97961d9b0b94949f74bd10dd9224d57b0ff9ed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFlyingThroughLAStreetVidevo_1920x1088_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BFlyingThroughLAStreetVidevo_1920x1088_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFungusZoomBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFungusZoomBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0663a5af827fc16c18c63a137922ab754eb962c0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BFungusZoomBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BFungusZoomBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BGrassBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BGrassBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..590dc453c608e2f0c696dd75345d8fcb826158ad --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BGrassBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BGrassBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BGrazTowerIRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BGrazTowerIRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..101e26e3882196d4c46ee32965429489dd44ef79 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BGrazTowerIRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BGrazTowerIRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHamsterBVIHFR_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHamsterBVIHFR_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..68a6bbeaf3e8b8a05b439582060fc9cd1834b9e3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHamsterBVIHFR_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHamsterBVIHFR_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHarleyDavidsonIRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHarleyDavidsonIRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..242b1ba2b462a918b957931584c5d1f1d60b0a53 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHarleyDavidsonIRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHarleyDavidsonIRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongIslandVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongIslandVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..633eff6293d866594dd9a8c04198b29456bde9d4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongIslandVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHongKongIslandVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket1Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket1Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..553c5aa034695f81438a3db5e563d207544b73e0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket1Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHongKongMarket1Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket2Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket2Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3a0996d9837fb497c48e3449f197a1d4fead0e77 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket2Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHongKongMarket2Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket3S1Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket3S1Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e98ab1c93d9ce303edd27c33e6e461405250eeac --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket3S1Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHongKongMarket3S1Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket3S2Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket3S2Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..85ed4fc09cb11be4c1b89e6ec8233ef9e5195ba6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket3S2Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHongKongMarket3S2Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket4S1Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket4S1Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..be2ca766b300045165e796b1a8bc152a8956a07c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket4S1Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHongKongMarket4S1Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket4S2Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket4S2Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d0bd13ca532d2380665a75987cb75f886b92c656 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongMarket4S2Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHongKongMarket4S2Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongS1Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongS1Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dda6c553392c9b39c23e2037b79fde25b9fc585e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongS1Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHongKongS1Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongS2Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongS2Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..37a2fc60bd88eaf654541f1f19ec3848bfde2f03 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongS2Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHongKongS2Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongS3Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongS3Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..81bdaf32e156fb30bf7de38a0c84ea31ffb1bea5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHongKongS3Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHongKongS3Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHorseDrawnCarriagesVidevo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHorseDrawnCarriagesVidevo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6ba095a59fb0963da85d18c79cca0f63ba36c44f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHorseDrawnCarriagesVidevo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHorseDrawnCarriagesVidevo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHorseStaringS1Videvo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHorseStaringS1Videvo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4a8a75ae088eea54571c83eb5686b16c01e6b417 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHorseStaringS1Videvo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHorseStaringS1Videvo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHorseStaringS2Videvo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHorseStaringS2Videvo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..038a204fd5233aaf8eca82b2b54c8c63a28b9cb5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BHorseStaringS2Videvo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BHorseStaringS2Videvo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BJockeyHarmonics_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BJockeyHarmonics_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..73ffdd210e1299ca6218dfed44da26846a952c5e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BJockeyHarmonics_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BJockeyHarmonics_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BJoggersS1BVIHFR_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BJoggersS1BVIHFR_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e32b9fb447c4bcbb0c048d1486c1524f0e151f42 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BJoggersS1BVIHFR_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BJoggersS1BVIHFR_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BJoggersS2BVIHFR_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BJoggersS2BVIHFR_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9525b315c047b4d62ffd1c9747b18d90f501415a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BJoggersS2BVIHFR_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BJoggersS2BVIHFR_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BKartingIRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BKartingIRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..215bf4d2a336a5c9c1d4f28b22c1f8a4d2e37d6e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BKartingIRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BKartingIRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BKoraDrumsVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BKoraDrumsVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8e4edaff93d76cb72f2e47beefbaf8f96f0e76ea --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BKoraDrumsVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BKoraDrumsVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLakeYonseiUniversity_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLakeYonseiUniversity_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c28d09fe52644fa5cb824d16366d6224b2ee8a9e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLakeYonseiUniversity_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BLakeYonseiUniversity_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLampLeavesBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLampLeavesBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..90dd91be50f11a6f1b9d9fd38b21cc91f256cbbf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLampLeavesBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BLampLeavesBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLaundryHangingOverHongKongVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLaundryHangingOverHongKongVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1d8c042803cedbedb793759079c6240a5ad7acc0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLaundryHangingOverHongKongVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BLaundryHangingOverHongKongVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLeaves1BVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLeaves1BVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ba0d7cba41b0ee3657b8a23a6da84b838d722829 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLeaves1BVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BLeaves1BVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLeaves3BVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLeaves3BVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..49234f961da543ec48c5732dca7f2ae072a16759 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLeaves3BVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BLeaves3BVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLowLevelShotAlongHongKongVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLowLevelShotAlongHongKongVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0c4200aadf35e8fb8c2ebda2b28e4fad9b852215 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLowLevelShotAlongHongKongVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BLowLevelShotAlongHongKongVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLungshanTempleS1Videvo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLungshanTempleS1Videvo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e12b7a4a0332f28eabc3136cc854f84615085cde --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLungshanTempleS1Videvo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BLungshanTempleS1Videvo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLungshanTempleS2Videvo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLungshanTempleS2Videvo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..03d9b1e552be2be484c2d20120794cb1ff910618 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BLungshanTempleS2Videvo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BLungshanTempleS2Videvo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BManMoTempleVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BManMoTempleVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6b5b4ec49432e855f361def13483a259f26f1567 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BManMoTempleVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BManMoTempleVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BManStandinginProduceTruckVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BManStandinginProduceTruckVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..691d78d0824d04795d571c680d0ed36e2f4bb7c3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BManStandinginProduceTruckVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BManStandinginProduceTruckVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BManWalkingThroughBangkokVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BManWalkingThroughBangkokVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..74dafc3ae981ecc8771084aabed77b4fb2abe4fe --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BManWalkingThroughBangkokVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BManWalkingThroughBangkokVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMaplesS1YonseiUniversity_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMaplesS1YonseiUniversity_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b28d0d4c14114b69eeba6a98a66a5ebbd8450333 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMaplesS1YonseiUniversity_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BMaplesS1YonseiUniversity_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMaplesS2YonseiUniversity_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMaplesS2YonseiUniversity_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e3d49ca7c162dbdb1cf21ceff57c06eb0c951f22 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMaplesS2YonseiUniversity_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BMaplesS2YonseiUniversity_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMirabellParkS1IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMirabellParkS1IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..89deba102cf0a69c0c5ca037a921072254287142 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMirabellParkS1IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BMirabellParkS1IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMirabellParkS2IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMirabellParkS2IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8759de0732b7233f3153ac3d4549d32c244108ce --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMirabellParkS2IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BMirabellParkS2IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMobileHarmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMobileHarmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6faa29ab00d5c83c0276bcbf1c42794da13c7cb8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMobileHarmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BMobileHarmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMoroccanCeramicsShopVidevo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMoroccanCeramicsShopVidevo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..64632ffa6062934ddf5bebf19fd2d583107762d0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMoroccanCeramicsShopVidevo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BMoroccanCeramicsShopVidevo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMoroccanSlippersVidevo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMoroccanSlippersVidevo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..48b8a80becfff75c1af2462167d69cc61459e926 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMoroccanSlippersVidevo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BMoroccanSlippersVidevo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMuralPaintingVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMuralPaintingVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..48b78d5cc6d7979b1e75f561bc8bf021d9e8468b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMuralPaintingVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BMuralPaintingVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMyanmarS4Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMyanmarS4Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7f001c9ec7964ab6538460278e0174a75f14e84d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMyanmarS4Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BMyanmarS4Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMyanmarS6Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMyanmarS6Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..235c965dd8dde57a5b7d4d2b3740f4b37a5061fa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMyanmarS6Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BMyanmarS6Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMyeongDongVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMyeongDongVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7ca773b5f638d2ff5e3a6d49f7d063ac7a55e2d3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BMyeongDongVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BMyeongDongVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BNewYorkStreetDareful_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BNewYorkStreetDareful_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..62863d54036d8a706dbcb439b13269d0b6d1b01a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BNewYorkStreetDareful_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BNewYorkStreetDareful_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BOrangeBuntingoverHongKongVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BOrangeBuntingoverHongKongVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7e6a2e2fdc3f6625456dd4845c2ea5cc1c508f0c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BOrangeBuntingoverHongKongVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BOrangeBuntingoverHongKongVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPaintingTiltingBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPaintingTiltingBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8b50396664b6563960de1ef1eeb9802cb368cf52 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPaintingTiltingBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BPaintingTiltingBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BParkViolinMCLJCV_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BParkViolinMCLJCV_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7477b135ff86f6512c2a966f9fed04748ee0bd68 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BParkViolinMCLJCV_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BParkViolinMCLJCV_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPedestriansSeoulatDawnVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPedestriansSeoulatDawnVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1bfc64dd4e46fd5b3ccd0a895171b01ad94fffdd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPedestriansSeoulatDawnVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BPedestriansSeoulatDawnVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPeopleWalkingS1IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPeopleWalkingS1IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b9757b92e43be13d6e2713c885d9f620a38e7d62 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPeopleWalkingS1IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BPeopleWalkingS1IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPersonRunningOutsideVidevo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPersonRunningOutsideVidevo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7775d21e99442fce7213453858a3ff7868dc67e1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPersonRunningOutsideVidevo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BPersonRunningOutsideVidevo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPillowsTransBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPillowsTransBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..adcd4a82e65615e1daf067c3860bb50070ec78df --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPillowsTransBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BPillowsTransBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPlasmaFreeBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPlasmaFreeBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9974f18bc4b1b67f09bb0084a537fc12afa06331 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPlasmaFreeBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BPlasmaFreeBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPresentsChristmasTreeDareful_1920x1088_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPresentsChristmasTreeDareful_1920x1088_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3cf01f3b47401a8a67c13f1cf85b1660a20ed54c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BPresentsChristmasTreeDareful_1920x1088_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BPresentsChristmasTreeDareful_1920x1088_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BResidentialBuildingSJTU_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BResidentialBuildingSJTU_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..26c507283338a950e1038dd75b3e576003c0be9c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BResidentialBuildingSJTU_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BResidentialBuildingSJTU_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BRunnersSJTU_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BRunnersSJTU_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b465e60442d82dc34808233d17291f45af100e98 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BRunnersSJTU_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BRunnersSJTU_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BRuralSetupIRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BRuralSetupIRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1061ed9ad6b91259f1565700aa030e4d3a0fab1e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BRuralSetupIRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BRuralSetupIRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BRuralSetupS2IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BRuralSetupS2IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..74a1fc26b90565108633f763ca728429c18cb046 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BRuralSetupS2IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BRuralSetupS2IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BScarfSJTU_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BScarfSJTU_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..48f4de5ed59f8513f3a3be5dfb13f414d04edce6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BScarfSJTU_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BScarfSJTU_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSeasideWalkIRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSeasideWalkIRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9f5e586ad4444487ec79969f2e3fb26ec5cc7dac --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSeasideWalkIRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BSeasideWalkIRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSeekingMCLV_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSeekingMCLV_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..28e288036a2a99a1d940b1dc3491f14aebe38017 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSeekingMCLV_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BSeekingMCLV_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSeoulCanalatDawnVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSeoulCanalatDawnVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..439502fc6c8919d3d101f0436c64306417ec9dc7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSeoulCanalatDawnVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BSeoulCanalatDawnVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BShoppingCentreVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BShoppingCentreVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4a4fea77c07a8a644a286e5a5b7c150efcf84ea7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BShoppingCentreVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BShoppingCentreVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSignboardBoatLIVENetFlix_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSignboardBoatLIVENetFlix_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ffec6d151a74a7d1580ef8535a63c5bf4fd35976 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSignboardBoatLIVENetFlix_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BSignboardBoatLIVENetFlix_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSkyscraperBangkokVidevo_1920x1088_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSkyscraperBangkokVidevo_1920x1088_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4b484cb9d608d2648bc808977d6f0b208badcedc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSkyscraperBangkokVidevo_1920x1088_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BSkyscraperBangkokVidevo_1920x1088_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSmokeClearBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSmokeClearBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..02c08b45927cac70af1c49ab6f6c4405f24db3e2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSmokeClearBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BSmokeClearBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSparklerBVIHFR_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSparklerBVIHFR_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b6688346b36e3a13d953dab88c31e5a5404b0cdb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSparklerBVIHFR_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BSparklerBVIHFR_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSquareAndTimelapseHarmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSquareAndTimelapseHarmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..34007fef6f7a8cba412adae7b6c9e68b195fd699 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSquareAndTimelapseHarmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BSquareAndTimelapseHarmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSquareS1IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSquareS1IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2cf52935e924d3810f3db997dd377d18d27208bc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSquareS1IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BSquareS1IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSquareS2IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSquareS2IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2bc9ed68650976f39b81f0e5a9b9e1d47f9ebbc6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BSquareS2IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BSquareS2IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetArtVidevo_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetArtVidevo_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9bb443b8aa23e3afb5302d506e7e60aaa003077a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetArtVidevo_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BStreetArtVidevo_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS1IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS1IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..27c2a5cb29ef4caf770800677df60d10592ea76c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS1IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BStreetDancerS1IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS2IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS2IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..73561d2412b513e4786d161e74d4b7a45dad1abc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS2IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BStreetDancerS2IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS3IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS3IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5d8f03e33bd4e804d70fd66472c8caf65c4f0d82 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS3IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BStreetDancerS3IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS4IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS4IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5b76dcd5d1da459ad4703fad8745fd51aacd45af --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS4IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BStreetDancerS4IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS5IRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS5IRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..399e8a9816ad127414c1453d2795630e364147e4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetDancerS5IRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BStreetDancerS5IRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetsOfIndiaS1Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetsOfIndiaS1Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fedb3444ead17c5ee7b1e1b7f735408c23042ed0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetsOfIndiaS1Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BStreetsOfIndiaS1Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetsOfIndiaS2Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetsOfIndiaS2Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..858d9113b923818a07b8a4287425fb5a30e63b76 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetsOfIndiaS2Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BStreetsOfIndiaS2Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetsOfIndiaS3Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetsOfIndiaS3Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f4e50c63e6ece7bd4a11c315af0baea76aa0699b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BStreetsOfIndiaS3Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BStreetsOfIndiaS3Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaiChiHongKongS1Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaiChiHongKongS1Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..77bbea780c38e6fcd3f09e9ef3766723efd68e5e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaiChiHongKongS1Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTaiChiHongKongS1Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaiChiHongKongS2Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaiChiHongKongS2Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aee00f7ffec6b37756d349a6ccd0eda58147ebc6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaiChiHongKongS2Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTaiChiHongKongS2Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaipeiCityRooftops8Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaipeiCityRooftops8Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8e05180db26702fb912f8094561dd6bb8662b4af --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaipeiCityRooftops8Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTaipeiCityRooftops8Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaipeiCityRooftopsS1Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaipeiCityRooftopsS1Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a7e7acc49be144a9fe26bf315f2cb2fa4df9ab15 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaipeiCityRooftopsS1Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTaipeiCityRooftopsS1Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaipeiCityRooftopsS2Videvo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaipeiCityRooftopsS2Videvo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6404c6aa46df965e605db65420946134dc277095 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaipeiCityRooftopsS2Videvo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTaipeiCityRooftopsS2Videvo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaksinBridgeVidevo_1920x1088_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaksinBridgeVidevo_1920x1088_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0ca99eedaf4941938ef0985448b4f15251783af5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTaksinBridgeVidevo_1920x1088_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTaksinBridgeVidevo_1920x1088_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTallBuildingsSJTU_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTallBuildingsSJTU_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..251cbf29385c2aa4b9dac612e2f548829862b106 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTallBuildingsSJTU_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTallBuildingsSJTU_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTennisMCLV_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTennisMCLV_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..39d8610ebf75f9de1412395089dae9f7df11bf01 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTennisMCLV_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTennisMCLV_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTouristsSatOutsideVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTouristsSatOutsideVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0cb1ab40076fb7b155fb9df2b9d3fa00c4f416fc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTouristsSatOutsideVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTouristsSatOutsideVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BToyCalendarHarmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BToyCalendarHarmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f7c1fdc4c6caf7b1db488eabc5d3714063c6dc3f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BToyCalendarHarmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BToyCalendarHarmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrackingDownHongKongSideVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrackingDownHongKongSideVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b08a9e298bf54421a23dd1ccbf4eccebb2b6763b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrackingDownHongKongSideVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTrackingDownHongKongSideVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrackingPastRestaurantVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrackingPastRestaurantVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..465bddc2c39963df36ed7439b5bb492ce802343d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrackingPastRestaurantVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTrackingPastRestaurantVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrackingPastStallHongKongVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrackingPastStallHongKongVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..008177c5fb21c5d71c964fc2d8b1607e26a6fa80 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrackingPastStallHongKongVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTrackingPastStallHongKongVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTraditionalIndonesianKecakVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTraditionalIndonesianKecakVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d79e13fb4c04af362e1c100899017fae1e786bf4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTraditionalIndonesianKecakVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTraditionalIndonesianKecakVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrafficFlowSJTU_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrafficFlowSJTU_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c4051db0da386db611bf39bad2adf12d82ed3d12 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrafficFlowSJTU_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTrafficFlowSJTU_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrafficandBuildingSJTU_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrafficandBuildingSJTU_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7c8dad5c39a58fc79ad2d1ea5bc13f6de7b60caf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrafficandBuildingSJTU_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTrafficandBuildingSJTU_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrafficonTasksinBridgeVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrafficonTasksinBridgeVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..288559497756a7679769448b09038a5253ad3262 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTrafficonTasksinBridgeVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTrafficonTasksinBridgeVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTreeWillsBVITexture_1920x1088_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTreeWillsBVITexture_1920x1088_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c028b0170a984b85089fe69171746894ed367213 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTreeWillsBVITexture_1920x1088_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTreeWillsBVITexture_1920x1088_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTruckIRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTruckIRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5817afd064cba648b4976e6f0b90dc0980d44d65 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTruckIRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTruckIRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTunnelFlagS1Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTunnelFlagS1Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ef9d48a4b798db68c6e8c6dab8dbb049e4ede203 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BTunnelFlagS1Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BTunnelFlagS1Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BUnloadingVegetablesVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BUnloadingVegetablesVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b8c184ead2fdfcf73c76c1168609fdd1be066c42 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BUnloadingVegetablesVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BUnloadingVegetablesVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVegetableMarketS1LIVENetFlix_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVegetableMarketS1LIVENetFlix_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..606ea9c172cf7ae2de53171e306b244cfe1e468f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVegetableMarketS1LIVENetFlix_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BVegetableMarketS1LIVENetFlix_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVegetableMarketS2LIVENetFlix_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVegetableMarketS2LIVENetFlix_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e8af2ad048b5caefb6736262147b608605b2db8e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVegetableMarketS2LIVENetFlix_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BVegetableMarketS2LIVENetFlix_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVegetableMarketS3LIVENetFlix_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVegetableMarketS3LIVENetFlix_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c258d6c8dfe185b79e3a1e0c7141854519096bea --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVegetableMarketS3LIVENetFlix_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BVegetableMarketS3LIVENetFlix_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVegetableMarketS4LIVENetFlix_1920x1088_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVegetableMarketS4LIVENetFlix_1920x1088_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2e3e93841900af7d04f6c0ead4f18b37717c41d3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVegetableMarketS4LIVENetFlix_1920x1088_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BVegetableMarketS4LIVENetFlix_1920x1088_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVeniceS1Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVeniceS1Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..07a50d27dbb1a908572688cbc7f429e46c1a19c6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVeniceS1Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BVeniceS1Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVeniceS2Harmonics_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVeniceS2Harmonics_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2b39f802ed4def87eab672e919a5571f9aef2017 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVeniceS2Harmonics_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BVeniceS2Harmonics_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVeniceSceneIRIS_1920x1088_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVeniceSceneIRIS_1920x1088_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7412dc8eb692b2e9e276eea7f60227bdd657ed7b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BVeniceSceneIRIS_1920x1088_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BVeniceSceneIRIS_1920x1088_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWalkingDownKhaoStreetVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWalkingDownKhaoStreetVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..69c2f0e4bd272b34e7bf414c8840624e575c3a0a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWalkingDownKhaoStreetVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BWalkingDownKhaoStreetVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWalkingDownNorthRodeoVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWalkingDownNorthRodeoVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..68b42306270616bdff119ce86b887588a575cba5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWalkingDownNorthRodeoVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BWalkingDownNorthRodeoVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWalkingThroughFootbridgeVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWalkingThroughFootbridgeVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a6360e071e14cb68d77320f28f68a5109ad098ec --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWalkingThroughFootbridgeVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BWalkingThroughFootbridgeVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWatPhoTempleVidevo_1920x1088_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWatPhoTempleVidevo_1920x1088_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..015bf43989700effee8d8609cb79f89cc73f2c81 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWatPhoTempleVidevo_1920x1088_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BWatPhoTempleVidevo_1920x1088_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWoodSJTU_1920x1088_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWoodSJTU_1920x1088_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1825986f640a362c7d3c1c8781919e62e2129500 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWoodSJTU_1920x1088_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BWoodSJTU_1920x1088_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWovenVidevo_1920x1088_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWovenVidevo_1920x1088_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4f6b4359280d4d124db1bd078642d4a8f73b1c67 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/BWovenVidevo_1920x1088_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : BWovenVidevo_1920x1088_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1920 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAdvertisingMassagesBangkokVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAdvertisingMassagesBangkokVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..58a689f98918bfc08a7f8f89915b2c14db714cf2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAdvertisingMassagesBangkokVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CAdvertisingMassagesBangkokVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAmericanFootballS2Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAmericanFootballS2Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e0ba820c2af0a09730b0fcfbec2b71b2cdd4ce8a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAmericanFootballS2Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CAmericanFootballS2Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAmericanFootballS3Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAmericanFootballS3Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3b6a99ac16274fef4c29e0a3122301c9178302a4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAmericanFootballS3Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CAmericanFootballS3Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAmericanFootballS4Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAmericanFootballS4Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..619076fb774ba7cedaebbc7c9dbedf0baf9009f8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAmericanFootballS4Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CAmericanFootballS4Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAnimalsS11Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAnimalsS11Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e7e4e727a17a35b0873db2ee5084ab625e4479f6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAnimalsS11Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CAnimalsS11Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAnimalsS1Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAnimalsS1Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b1943e099da5abf286d9e8da6f5447b022a0a34f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CAnimalsS1Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CAnimalsS1Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBangkokMarketVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBangkokMarketVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2a5f05624e4d8bc3dca3ce9f55273aafe7ccb27d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBangkokMarketVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBangkokMarketVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballGoalScoredS1Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballGoalScoredS1Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c71e88dad69724e684ae29c1db076febeb55255d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballGoalScoredS1Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBasketballGoalScoredS1Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballGoalScoredS2Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballGoalScoredS2Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d84a4986ad2f290743c9e85d3df51c06deae34c1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballGoalScoredS2Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBasketballGoalScoredS2Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballS1YonseiUniversity_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballS1YonseiUniversity_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3e02c21c2d92e45619b14657a12fdf2fd9392dbc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballS1YonseiUniversity_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBasketballS1YonseiUniversity_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballS2YonseiUniversity_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballS2YonseiUniversity_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ccc68120e367ebd3b3b8db8b9c32e7afec45f4ed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballS2YonseiUniversity_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBasketballS2YonseiUniversity_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballS3YonseiUniversity_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballS3YonseiUniversity_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..15acb84b89b3ef844e12208ebba92c192f0be8ce --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBasketballS3YonseiUniversity_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBasketballS3YonseiUniversity_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBoatsChaoPhrayaRiverVidevo_960x544_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBoatsChaoPhrayaRiverVidevo_960x544_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7db6bf1b0688816889cfdcf2f15d97477ca6d7f5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBoatsChaoPhrayaRiverVidevo_960x544_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBoatsChaoPhrayaRiverVidevo_960x544_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBobbleheadBVIHFR_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBobbleheadBVIHFR_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..699f72d234ef9cf279b8f0b6e6f5f3cfd4fe901f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBobbleheadBVIHFR_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBobbleheadBVIHFR_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBookcaseBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBookcaseBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ef01a19907d65b7bef60cc02021b0ca6b69be438 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBookcaseBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBookcaseBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBoxingPracticeHarmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBoxingPracticeHarmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..228a04c206b0f83ec6096918bc461af24cb380ed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBoxingPracticeHarmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBoxingPracticeHarmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBricksBushesStaticBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBricksBushesStaticBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bd747bbbdd09b38f84f58d203ef7f16ec615c842 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBricksBushesStaticBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBricksBushesStaticBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBricksLeavesBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBricksLeavesBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3a922141d0d9d6da55a5c98b1d78b705ee074f1c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBricksLeavesBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBricksLeavesBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBricksTiltingBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBricksTiltingBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8289084d0fbe34d7f9068aa1869596a0298f194b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBricksTiltingBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBricksTiltingBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBubblesPitcherS1BVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBubblesPitcherS1BVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3ca5ffabcfdb799de60af0ac16866869c8b74440 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBubblesPitcherS1BVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBubblesPitcherS1BVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuildingRoofS1IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuildingRoofS1IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dcfa6a0a4ce3a5b32f68349bf42a882aa23d5bf9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuildingRoofS1IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBuildingRoofS1IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuildingRoofS2IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuildingRoofS2IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..80eaa55949bfbdc4cbb807a8ffd1f666fc511722 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuildingRoofS2IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBuildingRoofS2IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuildingRoofS3IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuildingRoofS3IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..252bb16793798fba5cc8a7843f18155f82a72b99 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuildingRoofS3IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBuildingRoofS3IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuildingRoofS4IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuildingRoofS4IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..71d6e2625c78131f429d71f9ccfc4361bbf17f2a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuildingRoofS4IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBuildingRoofS4IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuntingHangingAcrossHongKongVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuntingHangingAcrossHongKongVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9b32cdffe7ca06b9d9dad4517664f988a3280ad1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBuntingHangingAcrossHongKongVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBuntingHangingAcrossHongKongVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBusyHongKongStreetVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBusyHongKongStreetVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e96ff8c36e57db6e0697c0ad072f0b6d6b333f19 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CBusyHongKongStreetVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CBusyHongKongStreetVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCalmingWaterBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCalmingWaterBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0bebd57576bc999dd96777dfaf156d6a7b9399d3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCalmingWaterBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCalmingWaterBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCarpetPanAverageBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCarpetPanAverageBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e68392e2c93e43380f1497ca290349617e3e4dd4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCarpetPanAverageBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCarpetPanAverageBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCatchBVIHFR_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCatchBVIHFR_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0e7b878592daaaa37de56a6cac56ebe702b2a6a5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCatchBVIHFR_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCatchBVIHFR_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCeramicsandSpicesMoroccoVidevo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCeramicsandSpicesMoroccoVidevo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c7612901f2ab75a93c848912641fde191b195c33 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCeramicsandSpicesMoroccoVidevo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCeramicsandSpicesMoroccoVidevo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCharactersYonseiUniversity_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCharactersYonseiUniversity_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c9b78f37cf84ddb4c561f683d6ea8c8495b3d73f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCharactersYonseiUniversity_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCharactersYonseiUniversity_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CChristmasPresentsIRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CChristmasPresentsIRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c2f718b546457398ef062bb01ee4e01dff428edd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CChristmasPresentsIRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CChristmasPresentsIRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CChristmasRoomDareful_960x544_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CChristmasRoomDareful_960x544_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b2cd593776e674949fc8f3c3f4beb08eb8014745 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CChristmasRoomDareful_960x544_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CChristmasRoomDareful_960x544_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CChurchInsideMCLJCV_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CChurchInsideMCLJCV_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..160db0f7a7386c9fd766bd701c5edde8c99ae03c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CChurchInsideMCLJCV_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CChurchInsideMCLJCV_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityScapesS1IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityScapesS1IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2f133046a520220620f3987aeee293d11e15cfad --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityScapesS1IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCityScapesS1IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityScapesS2IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityScapesS2IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..01549fbf743e61bff78b0a19a594cfa7e31d91c6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityScapesS2IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCityScapesS2IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityScapesS3IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityScapesS3IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..942f892c4d65eb02d458d66cd2f5aba69882c346 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityScapesS3IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCityScapesS3IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS1IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS1IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..999e1434f016569d99b6b2085ccec6d9d15e7205 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS1IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCityStreetS1IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS3IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS3IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..098dd82cabe9391d4d70a50588986071ee339444 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS3IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCityStreetS3IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS4IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS4IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..41d7747c8fd783819d94f510c90d284519601ad6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS4IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCityStreetS4IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS5IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS5IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..74eca8e264610b1517d72203dd53b34fe8394b6b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS5IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCityStreetS5IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS6IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS6IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cda6f1cb667f97110f0bcd3def55d52d90b6d839 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS6IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCityStreetS6IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS7IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS7IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6d1cd0970b5c24a367f10571ee02ada462f35a62 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCityStreetS7IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCityStreetS7IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCloseUpBasketballSceneVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCloseUpBasketballSceneVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e24006f3657fcb94ac76d24bc136b0e4e5e48842 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCloseUpBasketballSceneVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCloseUpBasketballSceneVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCloudsStaticBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCloudsStaticBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dbbea9005da46eb1182635f1521745e325caff9d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCloudsStaticBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCloudsStaticBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CColourfulDecorationWatPhoVidevo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CColourfulDecorationWatPhoVidevo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7359a27f4786b7f33838234a44113e633ccf57eb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CColourfulDecorationWatPhoVidevo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CColourfulDecorationWatPhoVidevo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CColourfulKoreanLanternsVidevo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CColourfulKoreanLanternsVidevo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..254a681deb1ab97a02eb3b6c44fbcd7a0ee58b6a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CColourfulKoreanLanternsVidevo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CColourfulKoreanLanternsVidevo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CColourfulPaperLanternsVidevo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CColourfulPaperLanternsVidevo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..793aaed87647960e9b8db209a8ca0bcd90109e2e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CColourfulPaperLanternsVidevo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CColourfulPaperLanternsVidevo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CColourfulRugsMoroccoVidevo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CColourfulRugsMoroccoVidevo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6f6736e536e9d0b8391d812ed4e6bd4759344cbc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CColourfulRugsMoroccoVidevo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CColourfulRugsMoroccoVidevo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CConstructionS2YonseiUniversity_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CConstructionS2YonseiUniversity_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..320b3ab8aaea0c98448047eee0f27153cf7061ac --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CConstructionS2YonseiUniversity_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CConstructionS2YonseiUniversity_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCostaRicaS3Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCostaRicaS3Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..afcd7b372180e027808d980fa64ef2db6da4f92d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCostaRicaS3Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCostaRicaS3Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrosswalkHarmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrosswalkHarmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f4ec585867211d8388062c65437b2351c95bc15b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrosswalkHarmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCrosswalkHarmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrosswalkHongKong2S1Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrosswalkHongKong2S1Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c8415045ed7e76b93fba8ed60b41e85ebb0c8134 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrosswalkHongKong2S1Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCrosswalkHongKong2S1Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrosswalkHongKong2S2Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrosswalkHongKong2S2Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2b113ae19e87df2ca0667faed3b6fdf08f559d84 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrosswalkHongKong2S2Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCrosswalkHongKong2S2Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrosswalkHongKongVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrosswalkHongKongVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ddd9f6ae3b92ad8d759205178cefb99989eb6a9a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrosswalkHongKongVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCrosswalkHongKongVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrowdRunMCLV_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrowdRunMCLV_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..45f5ab1934366e98435976b943239ad986f6172f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCrowdRunMCLV_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCrowdRunMCLV_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCyclistS1BVIHFR_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCyclistS1BVIHFR_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..facf246340cce91f26a5422c5637df8a352fc85b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCyclistS1BVIHFR_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCyclistS1BVIHFR_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCyclistVeniceBeachBoardwalkVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCyclistVeniceBeachBoardwalkVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..05eb4a0344e13518498ba1b49788a05d4cfde3be --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CCyclistVeniceBeachBoardwalkVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CCyclistVeniceBeachBoardwalkVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDollsScene1YonseiUniversity_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDollsScene1YonseiUniversity_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ab92bf2dee1d6cc5e2987296aca64ec3bc4d988a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDollsScene1YonseiUniversity_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CDollsScene1YonseiUniversity_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDollsScene2YonseiUniversity_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDollsScene2YonseiUniversity_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c937a4886aaa97e9c6e7697ce7009dfb945dc57e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDollsScene2YonseiUniversity_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CDollsScene2YonseiUniversity_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDowntownHongKongVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDowntownHongKongVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ab56ad5ad05ca9e2791aa54a3f9acbfd6abd79b4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDowntownHongKongVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CDowntownHongKongVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDrivingPOVHarmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDrivingPOVHarmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d74c7b08af7b5f5c28cce2f3e741b3b596bcfd09 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDrivingPOVHarmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CDrivingPOVHarmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDropsOnWaterBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDropsOnWaterBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..200d8f0836f1cf56bfa9cbc525f7b08f6ae2a7d4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CDropsOnWaterBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CDropsOnWaterBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CElFuenteMaskLIVENetFlix_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CElFuenteMaskLIVENetFlix_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..58b52662bfcbdb85784dc492f9efdf3f1b879140 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CElFuenteMaskLIVENetFlix_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CElFuenteMaskLIVENetFlix_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CEnteringHongKongStallS1Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CEnteringHongKongStallS1Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1972234b729f6076c191388c643818517b53252e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CEnteringHongKongStallS1Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CEnteringHongKongStallS1Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CEnteringHongKongStallS2Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CEnteringHongKongStallS2Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..549b6b5c662a1ec6614c6c2ecdb4c6a512c8a1d1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CEnteringHongKongStallS2Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CEnteringHongKongStallS2Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFerrisWheelTurningVidevo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFerrisWheelTurningVidevo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e93e7b3f4242eb4f75f2e346065f3dab04f64c61 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFerrisWheelTurningVidevo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CFerrisWheelTurningVidevo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFirewoodS1IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFirewoodS1IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b50afdff15b1fceda0a91d87ef204652242f7a3d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFirewoodS1IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CFirewoodS1IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFirewoodS2IRIS_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFirewoodS2IRIS_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c456affd9fac77da37f4d2819232868a64086437 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFirewoodS2IRIS_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CFirewoodS2IRIS_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFitnessIRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFitnessIRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4d7db4d457f6415ed0f82f72e0a81fa3fdff20c1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFitnessIRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CFitnessIRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFjordsS1Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFjordsS1Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..506ef1d9b7d08f2dfe7182d772302602d7ec8fb9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFjordsS1Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CFjordsS1Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlagShootTUMSVT_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlagShootTUMSVT_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b846c4bd1e93af0b1de9c4021aaca33e3f41da04 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlagShootTUMSVT_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CFlagShootTUMSVT_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlowerChapelS1IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlowerChapelS1IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..18660d474ab54c85fbc24e4b0d392ac49edc18c8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlowerChapelS1IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CFlowerChapelS1IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlowerChapelS2IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlowerChapelS2IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..48b5fd4a09419eb99df0c31f8c988b5a25665875 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlowerChapelS2IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CFlowerChapelS2IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlyingCountrysideDareful_960x544_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlyingCountrysideDareful_960x544_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f9d0068e29af0183513347dbea871776a0620617 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlyingCountrysideDareful_960x544_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CFlyingCountrysideDareful_960x544_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlyingMountainsDareful_960x544_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlyingMountainsDareful_960x544_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9e09902cedf41b219430da5aae2bda8e1b71d90c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlyingMountainsDareful_960x544_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CFlyingMountainsDareful_960x544_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlyingThroughLAStreetVidevo_960x544_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlyingThroughLAStreetVidevo_960x544_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8a9d848aff63f36c0bb9be648812951087327572 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFlyingThroughLAStreetVidevo_960x544_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CFlyingThroughLAStreetVidevo_960x544_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFungusZoomBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFungusZoomBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c050049a05805771cc2ded2866972a0879050ce2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CFungusZoomBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CFungusZoomBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CGrassBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CGrassBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..91890dce36eb3d26d03a19240410cd08790bc6d3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CGrassBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CGrassBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CGrazTowerIRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CGrazTowerIRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d69a516fb8eb565df7d11b4d20ab87a3983ce1a6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CGrazTowerIRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CGrazTowerIRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHamsterBVIHFR_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHamsterBVIHFR_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7c7c7914992934521a721f9b9e4fa44b4fdc438e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHamsterBVIHFR_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHamsterBVIHFR_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHarleyDavidsonIRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHarleyDavidsonIRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c5f9cc29595570020c8726ce421eee85dc808467 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHarleyDavidsonIRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHarleyDavidsonIRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongIslandVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongIslandVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f582921efbd8516e99e501d0d8bd988e1e4560ce --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongIslandVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHongKongIslandVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket1Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket1Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ea491eac8937b17edf750ee9fc0a47b5fcede798 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket1Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHongKongMarket1Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket2Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket2Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4d96ad8948e6b58289728493f1193f26a6240de0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket2Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHongKongMarket2Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket3S1Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket3S1Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..04ca5a92481d543bafa6bd3719976b182e2f6553 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket3S1Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHongKongMarket3S1Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket3S2Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket3S2Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..554e99e1c30f936562dc603676ae19fddc34ed52 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket3S2Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHongKongMarket3S2Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket4S1Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket4S1Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1839db6f9a21ca1e72c38f5a5823486f94fd8796 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket4S1Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHongKongMarket4S1Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket4S2Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket4S2Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..619742fcf2e7f4825c2c34f81e9c1d275b1ce052 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongMarket4S2Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHongKongMarket4S2Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongS1Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongS1Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f6995aeca43e495926efbb04e400f9aa231a2be8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongS1Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHongKongS1Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongS2Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongS2Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a27522fe0abc370cd0a3f5563b144543e08b396e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongS2Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHongKongS2Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongS3Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongS3Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9520eb9aa03d33838871f5fcac11f9ad419f1de6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHongKongS3Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHongKongS3Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHorseDrawnCarriagesVidevo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHorseDrawnCarriagesVidevo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e468febf9ac7b5f2862c0964a32593c52097e5d1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHorseDrawnCarriagesVidevo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHorseDrawnCarriagesVidevo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHorseStaringS1Videvo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHorseStaringS1Videvo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b7a93619d76131d0c1f9480ad8c974c0ffee5743 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHorseStaringS1Videvo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHorseStaringS1Videvo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHorseStaringS2Videvo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHorseStaringS2Videvo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d5f34472df2252ad2da97d8aee0232a6211577a7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CHorseStaringS2Videvo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CHorseStaringS2Videvo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CJockeyHarmonics_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CJockeyHarmonics_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1263dc225e4ee3d5c99293d61075eb74ea2bd375 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CJockeyHarmonics_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CJockeyHarmonics_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CJoggersS1BVIHFR_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CJoggersS1BVIHFR_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..76a87eebf51cfd8661b9ab58d134a3c8b68fffa1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CJoggersS1BVIHFR_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CJoggersS1BVIHFR_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CJoggersS2BVIHFR_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CJoggersS2BVIHFR_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f96ba305b0b00b963bcf886a7f9c9203f588415b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CJoggersS2BVIHFR_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CJoggersS2BVIHFR_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CKartingIRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CKartingIRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3211a22067be43b878d0e32bf31a299b16565e9a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CKartingIRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CKartingIRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CKoraDrumsVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CKoraDrumsVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..edb3caa283c5920541e887c29fbbd46e67778d33 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CKoraDrumsVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CKoraDrumsVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLakeYonseiUniversity_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLakeYonseiUniversity_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..61cba70deb75b5963fe5c8be8b229d42b04ddd7f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLakeYonseiUniversity_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CLakeYonseiUniversity_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLampLeavesBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLampLeavesBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7950a0af055b603f5dcfa046c12246c49930b61a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLampLeavesBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CLampLeavesBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLaundryHangingOverHongKongVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLaundryHangingOverHongKongVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a0e02c782f35014d5df60a2833cf621f4fb5d3a2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLaundryHangingOverHongKongVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CLaundryHangingOverHongKongVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLeaves1BVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLeaves1BVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..52de969a09643685cdcf4561d689c8634caf95a7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLeaves1BVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CLeaves1BVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLeaves3BVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLeaves3BVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..53bf0a1a00a708dcbef9a26f87d956e7e3996b24 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLeaves3BVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CLeaves3BVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLowLevelShotAlongHongKongVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLowLevelShotAlongHongKongVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9571b7c9c970c1ea3c400fed0c951a0cd6b372af --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLowLevelShotAlongHongKongVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CLowLevelShotAlongHongKongVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLungshanTempleS1Videvo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLungshanTempleS1Videvo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..769eaf128ea45474d103b0b21561b0f9b5f0f485 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLungshanTempleS1Videvo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CLungshanTempleS1Videvo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLungshanTempleS2Videvo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLungshanTempleS2Videvo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f3f31cf33bf3d571d257dab5dd60cb1d75664ca7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CLungshanTempleS2Videvo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CLungshanTempleS2Videvo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CManMoTempleVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CManMoTempleVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ef5ff5afcea38c8008508920002b351d0de025bd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CManMoTempleVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CManMoTempleVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CManStandinginProduceTruckVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CManStandinginProduceTruckVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..eea077bc7c3e77910441aebd7669fdbd0c464183 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CManStandinginProduceTruckVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CManStandinginProduceTruckVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CManWalkingThroughBangkokVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CManWalkingThroughBangkokVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d3490050762be2a543c8d5b4240e08a0ff3f3662 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CManWalkingThroughBangkokVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CManWalkingThroughBangkokVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMaplesS1YonseiUniversity_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMaplesS1YonseiUniversity_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8d978fd957d7b9cdd07089c4940f8a80e61e04b7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMaplesS1YonseiUniversity_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CMaplesS1YonseiUniversity_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMaplesS2YonseiUniversity_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMaplesS2YonseiUniversity_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4d3540803e527edd8638c5c0e0e28f5a3a542e87 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMaplesS2YonseiUniversity_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CMaplesS2YonseiUniversity_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMirabellParkS1IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMirabellParkS1IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1c5e333493c53e635bfe16485d602810ae62dd4a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMirabellParkS1IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CMirabellParkS1IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMirabellParkS2IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMirabellParkS2IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4a3a80577be36d01a600d73882a71d1515e81405 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMirabellParkS2IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CMirabellParkS2IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMobileHarmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMobileHarmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3315d84b7942e7d941c178f11e4ebc4cc2f4cc8c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMobileHarmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CMobileHarmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMoroccanCeramicsShopVidevo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMoroccanCeramicsShopVidevo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..abbcd27b07d18a004dcb06b77a6ce7190be8ec2c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMoroccanCeramicsShopVidevo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CMoroccanCeramicsShopVidevo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMoroccanSlippersVidevo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMoroccanSlippersVidevo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..44d92b6881ac94da33a52e2a07576f9b7a84f261 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMoroccanSlippersVidevo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CMoroccanSlippersVidevo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMuralPaintingVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMuralPaintingVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..78b7b328d7cbae3e02e1edb1ac510e9f5a26ed17 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMuralPaintingVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CMuralPaintingVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMyanmarS4Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMyanmarS4Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..20399d9e421a408ac7ec4894a3a9075f8950e80c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMyanmarS4Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CMyanmarS4Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMyanmarS6Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMyanmarS6Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..45cbb0990bb959feb0641ab5cfbc7f7cc1ae71e3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMyanmarS6Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CMyanmarS6Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMyeongDongVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMyeongDongVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..20e207a08578599e676d0ef1f2546cb296e4a352 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CMyeongDongVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CMyeongDongVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CNewYorkStreetDareful_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CNewYorkStreetDareful_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2fea0c3dac3233435bdf6b8d85083f0d567aed5e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CNewYorkStreetDareful_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CNewYorkStreetDareful_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/COrangeBuntingoverHongKongVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/COrangeBuntingoverHongKongVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..96e4f463c3f234c71e1ba388fd9c380f370cd7e0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/COrangeBuntingoverHongKongVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : COrangeBuntingoverHongKongVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPaintingTiltingBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPaintingTiltingBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..50db496d201689160c99ddb3a52c0cc8e5e1afec --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPaintingTiltingBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CPaintingTiltingBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CParkViolinMCLJCV_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CParkViolinMCLJCV_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3d01facb7e3937bacd8c11e1b45c9e6b12206c41 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CParkViolinMCLJCV_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CParkViolinMCLJCV_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPedestriansSeoulatDawnVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPedestriansSeoulatDawnVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b95cd34ecaa454ed449eb70b5e6be7978c26c35a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPedestriansSeoulatDawnVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CPedestriansSeoulatDawnVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPeopleWalkingS1IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPeopleWalkingS1IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2b66ff214cd3fb466aca86cf5efeec04f8e96b18 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPeopleWalkingS1IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CPeopleWalkingS1IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPersonRunningOutsideVidevo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPersonRunningOutsideVidevo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..79822df1a4396b795776d8e33322619e3e37701c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPersonRunningOutsideVidevo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CPersonRunningOutsideVidevo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPillowsTransBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPillowsTransBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3b6a7bf85b76858c15d74d89fbf704c5e8f0ec3a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPillowsTransBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CPillowsTransBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPlasmaFreeBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPlasmaFreeBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4663d69f33a892785e9e9c16e18c37a34bd593c4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPlasmaFreeBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CPlasmaFreeBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPresentsChristmasTreeDareful_960x544_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPresentsChristmasTreeDareful_960x544_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1a9fcac4f9184dde19e37fdfd23b8a5348997081 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CPresentsChristmasTreeDareful_960x544_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CPresentsChristmasTreeDareful_960x544_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CResidentialBuildingSJTU_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CResidentialBuildingSJTU_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e2fdfd0a510e416c598895d6a46571d739a04523 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CResidentialBuildingSJTU_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CResidentialBuildingSJTU_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CRunnersSJTU_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CRunnersSJTU_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..83a30f72f9bcd88ec3bc79d36cfc8dbda4600381 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CRunnersSJTU_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CRunnersSJTU_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CRuralSetupIRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CRuralSetupIRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..38e1b0cb35c59da4fbe02771d62ddee692023689 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CRuralSetupIRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CRuralSetupIRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CRuralSetupS2IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CRuralSetupS2IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1ad805316d6914e8151ebcc21f14ce381fbb95a7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CRuralSetupS2IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CRuralSetupS2IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CScarfSJTU_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CScarfSJTU_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..004d10e254f96b3d7563f33a0bcb3af6f2f1f0a1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CScarfSJTU_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CScarfSJTU_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSeasideWalkIRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSeasideWalkIRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1bfb38f8a49cbfaa09ea61f47ae679f5632d88dc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSeasideWalkIRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CSeasideWalkIRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSeekingMCLV_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSeekingMCLV_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9695b9ce72fdd8729bb8430af245ec5522c5e3d3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSeekingMCLV_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CSeekingMCLV_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSeoulCanalatDawnVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSeoulCanalatDawnVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9879cf0f8134a7f009c57b73c43c486b0b4cdfce --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSeoulCanalatDawnVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CSeoulCanalatDawnVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CShoppingCentreVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CShoppingCentreVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..30769a374539bf03690184d5b8be02e1a8e4ffaa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CShoppingCentreVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CShoppingCentreVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSignboardBoatLIVENetFlix_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSignboardBoatLIVENetFlix_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6fb39ed92bbd8b894f5c8d8b9b8c594fba732873 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSignboardBoatLIVENetFlix_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CSignboardBoatLIVENetFlix_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSkyscraperBangkokVidevo_960x544_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSkyscraperBangkokVidevo_960x544_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ab4d0b892788750cf3938c1518fa297f53a982e3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSkyscraperBangkokVidevo_960x544_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CSkyscraperBangkokVidevo_960x544_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSmokeClearBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSmokeClearBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6cb3c4aea9bff966bca7475b436951bc0b0d2d67 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSmokeClearBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CSmokeClearBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSparklerBVIHFR_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSparklerBVIHFR_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f6e20384e288388eb972f2b55881fda8bd88691a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSparklerBVIHFR_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CSparklerBVIHFR_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSquareAndTimelapseHarmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSquareAndTimelapseHarmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3e5697e66a933d9423488018024cebf6ebb09e8b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSquareAndTimelapseHarmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CSquareAndTimelapseHarmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSquareS1IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSquareS1IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5c318882acca2ff01e53064190bda30f701e62b1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSquareS1IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CSquareS1IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSquareS2IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSquareS2IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c4421899abb4bacf1a63fafb8dbac400f333607b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CSquareS2IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CSquareS2IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetArtVidevo_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetArtVidevo_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9d08842cc31355dd322854fb88cdddc50dea3288 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetArtVidevo_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CStreetArtVidevo_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS1IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS1IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fc1454eae52309a37172197b18cc0f56e05663f8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS1IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CStreetDancerS1IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS2IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS2IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0afd5acaa40b2f92393e82797c892e6865e0fff7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS2IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CStreetDancerS2IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS3IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS3IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..03087b8b189149904074b7131c56b35c146be82d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS3IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CStreetDancerS3IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS4IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS4IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2fbcf5d5568404bb90d7513490e890ae005f2a37 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS4IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CStreetDancerS4IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS5IRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS5IRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f2a5fb0b45c0339db311b7c9b7a53c044d7fa542 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetDancerS5IRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CStreetDancerS5IRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetsOfIndiaS1Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetsOfIndiaS1Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..44e840fa8e07ffe49fc0f05910bebde39a0989d7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetsOfIndiaS1Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CStreetsOfIndiaS1Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetsOfIndiaS2Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetsOfIndiaS2Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..44b7fc7dc552baa9d56d8ca43b680848e45f6bc0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetsOfIndiaS2Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CStreetsOfIndiaS2Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetsOfIndiaS3Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetsOfIndiaS3Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7c85a78bdc43f6b1bfec691acd67957091b869af --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CStreetsOfIndiaS3Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CStreetsOfIndiaS3Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaiChiHongKongS1Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaiChiHongKongS1Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..48f6e2811e508d5c947e3ba4528e0c6d99bb212e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaiChiHongKongS1Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTaiChiHongKongS1Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaiChiHongKongS2Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaiChiHongKongS2Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4bfcdc9986f1f947e377e7862289446168c6f08c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaiChiHongKongS2Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTaiChiHongKongS2Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaipeiCityRooftops8Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaipeiCityRooftops8Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fc8c7ac7de7ef76247ebd5082db210faa3f6f81d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaipeiCityRooftops8Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTaipeiCityRooftops8Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaipeiCityRooftopsS1Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaipeiCityRooftopsS1Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1dacc7b127bb9c62afc124fb7ad1795cc30208be --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaipeiCityRooftopsS1Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTaipeiCityRooftopsS1Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaipeiCityRooftopsS2Videvo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaipeiCityRooftopsS2Videvo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6946e78ae992576f01a55452d122e94b5e231761 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaipeiCityRooftopsS2Videvo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTaipeiCityRooftopsS2Videvo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaksinBridgeVidevo_960x544_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaksinBridgeVidevo_960x544_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..06d60f24a5f9bb87313c4949a755a25d0113e3a7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTaksinBridgeVidevo_960x544_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTaksinBridgeVidevo_960x544_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTallBuildingsSJTU_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTallBuildingsSJTU_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2ea24bc05af0ce6f67315150e7cdcd30241ee8d0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTallBuildingsSJTU_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTallBuildingsSJTU_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTennisMCLV_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTennisMCLV_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0078c50c6650968a565efecdea282ec573c0d6a5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTennisMCLV_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTennisMCLV_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTouristsSatOutsideVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTouristsSatOutsideVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..37e26fe772744e4f24c2237175ba3d7210aa5414 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTouristsSatOutsideVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTouristsSatOutsideVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CToyCalendarHarmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CToyCalendarHarmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ff76d80e0cfb4f93fcbc0ea96362cbce1866500a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CToyCalendarHarmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CToyCalendarHarmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrackingDownHongKongSideVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrackingDownHongKongSideVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..22dda9a04840f5da9dfb576a0fb68a46f35d5cfa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrackingDownHongKongSideVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTrackingDownHongKongSideVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrackingPastRestaurantVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrackingPastRestaurantVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..12fdc4fcc4e07af42c0ad277340237477c855b98 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrackingPastRestaurantVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTrackingPastRestaurantVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrackingPastStallHongKongVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrackingPastStallHongKongVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9bd850fe53ed9c9155ed324e45f3281f91cde1cd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrackingPastStallHongKongVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTrackingPastStallHongKongVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTraditionalIndonesianKecakVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTraditionalIndonesianKecakVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a8a8dea5be14e26d5873b4f647cf3e1927064b84 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTraditionalIndonesianKecakVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTraditionalIndonesianKecakVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrafficFlowSJTU_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrafficFlowSJTU_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..960b3610a443b0b69f034b8dd9122e796e511af1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrafficFlowSJTU_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTrafficFlowSJTU_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrafficandBuildingSJTU_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrafficandBuildingSJTU_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2b22b3866d907bcfe87036f0615169ac2e6b3729 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrafficandBuildingSJTU_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTrafficandBuildingSJTU_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrafficonTasksinBridgeVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrafficonTasksinBridgeVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ddfdd22c9e06d5d13b17748326e51bc78ddbc0ed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTrafficonTasksinBridgeVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTrafficonTasksinBridgeVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTreeWillsBVITexture_960x544_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTreeWillsBVITexture_960x544_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f1fa7b68c89c85a0565b371026c23194414b063c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTreeWillsBVITexture_960x544_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTreeWillsBVITexture_960x544_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTruckIRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTruckIRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cf0880a8b60ba867da8fb02b232fa47057d616e0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTruckIRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTruckIRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTunnelFlagS1Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTunnelFlagS1Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1c75b03030e725976d216241e602ccf85deb8fdb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CTunnelFlagS1Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CTunnelFlagS1Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CUnloadingVegetablesVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CUnloadingVegetablesVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..71045e121dd5578fba822c21c83aa757386ac175 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CUnloadingVegetablesVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CUnloadingVegetablesVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVegetableMarketS1LIVENetFlix_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVegetableMarketS1LIVENetFlix_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..95a32dc8cb3e050b7ea275f71cd318a3a5192726 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVegetableMarketS1LIVENetFlix_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CVegetableMarketS1LIVENetFlix_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVegetableMarketS2LIVENetFlix_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVegetableMarketS2LIVENetFlix_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a9755626c40a85b4d7c0bfa78ff80a86fa3b1239 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVegetableMarketS2LIVENetFlix_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CVegetableMarketS2LIVENetFlix_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVegetableMarketS3LIVENetFlix_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVegetableMarketS3LIVENetFlix_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c192835cfca2fc20b3121883e7b666ea03f112d4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVegetableMarketS3LIVENetFlix_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CVegetableMarketS3LIVENetFlix_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVegetableMarketS4LIVENetFlix_960x544_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVegetableMarketS4LIVENetFlix_960x544_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4730686454d6ff3e913bda7996732ac3c48d1df4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVegetableMarketS4LIVENetFlix_960x544_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CVegetableMarketS4LIVENetFlix_960x544_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVeniceS1Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVeniceS1Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7d0e61a1d6210b160e14ae7636049f7f704e0032 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVeniceS1Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CVeniceS1Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVeniceS2Harmonics_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVeniceS2Harmonics_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4c38d5ba846a0b9403bbbbeca04532dc6f607b26 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVeniceS2Harmonics_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CVeniceS2Harmonics_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVeniceSceneIRIS_960x544_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVeniceSceneIRIS_960x544_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9a33f39779ac9e0b20359626573c660d399957b3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CVeniceSceneIRIS_960x544_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CVeniceSceneIRIS_960x544_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWalkingDownKhaoStreetVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWalkingDownKhaoStreetVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6a0a4843984cba31ca54d4bc4f2e81373266f766 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWalkingDownKhaoStreetVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CWalkingDownKhaoStreetVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWalkingDownNorthRodeoVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWalkingDownNorthRodeoVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fa253204392d4b96f6fd85e743434bf09e9026f2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWalkingDownNorthRodeoVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CWalkingDownNorthRodeoVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWalkingThroughFootbridgeVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWalkingThroughFootbridgeVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a1d6e0da9d1baf4a49aa114e2c93a138460a2c2d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWalkingThroughFootbridgeVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CWalkingThroughFootbridgeVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWatPhoTempleVidevo_960x544_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWatPhoTempleVidevo_960x544_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0fcd2eae7f9402f3d5ab597aebe6c82c5e750137 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWatPhoTempleVidevo_960x544_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CWatPhoTempleVidevo_960x544_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWoodSJTU_960x544_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWoodSJTU_960x544_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..38429a6805d788cb0b3d16f2fe44f4ad7fbb2c00 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWoodSJTU_960x544_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CWoodSJTU_960x544_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWovenVidevo_960x544_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWovenVidevo_960x544_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4108149d1ccec26df478a0babab7600fb9a3a5f0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/CWovenVidevo_960x544_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : CWovenVidevo_960x544_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 960 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAdvertisingMassagesBangkokVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAdvertisingMassagesBangkokVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c30cbcd297e3e6383c306044baa4750ad6c35e0e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAdvertisingMassagesBangkokVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DAdvertisingMassagesBangkokVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAmericanFootballS2Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAmericanFootballS2Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..82c02ed53a0e3838ef35a5141da3064f08676252 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAmericanFootballS2Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DAmericanFootballS2Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAmericanFootballS3Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAmericanFootballS3Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..970a4e44536987e2465ceb2b2209628864029840 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAmericanFootballS3Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DAmericanFootballS3Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAmericanFootballS4Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAmericanFootballS4Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..622daf527f6558b835c906eb896799fe6c428793 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAmericanFootballS4Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DAmericanFootballS4Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAnimalsS11Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAnimalsS11Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3a42df4191a22f39b4f1eab4d49f4bb2533a44fc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAnimalsS11Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DAnimalsS11Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAnimalsS1Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAnimalsS1Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3eb9b43103c9bfeba7baa67a6129fc961d9b1871 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DAnimalsS1Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DAnimalsS1Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBangkokMarketVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBangkokMarketVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ec192ac541dd13d349bfe631106cbc29ee24ad88 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBangkokMarketVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBangkokMarketVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballGoalScoredS1Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballGoalScoredS1Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..925937b96f44ef0b090cc180d4484778e8eed29c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballGoalScoredS1Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBasketballGoalScoredS1Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballGoalScoredS2Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballGoalScoredS2Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d0f9e43d1097aff148d796ca901b2e57e2afe993 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballGoalScoredS2Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBasketballGoalScoredS2Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballS1YonseiUniversity_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballS1YonseiUniversity_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..eab85d40453045e5c072adf9ae1c58536b114d4e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballS1YonseiUniversity_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBasketballS1YonseiUniversity_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballS2YonseiUniversity_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballS2YonseiUniversity_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d36d6e519f81d3d4e3f37b5be23242249557cba8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballS2YonseiUniversity_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBasketballS2YonseiUniversity_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballS3YonseiUniversity_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballS3YonseiUniversity_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a58a347e4d6b85494badc46bc0527d4e34a4a756 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBasketballS3YonseiUniversity_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBasketballS3YonseiUniversity_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBoatsChaoPhrayaRiverVidevo_480x272_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBoatsChaoPhrayaRiverVidevo_480x272_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ef63c2a4fbda7b4069e3b949a0188b236d4bbb72 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBoatsChaoPhrayaRiverVidevo_480x272_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBoatsChaoPhrayaRiverVidevo_480x272_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBobbleheadBVIHFR_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBobbleheadBVIHFR_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e1d0caa4ade2412ffb91e01e900d88b778e13b83 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBobbleheadBVIHFR_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBobbleheadBVIHFR_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBookcaseBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBookcaseBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1a3398cedc0898c88ef1fb9425662dacbfcad72f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBookcaseBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBookcaseBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBoxingPracticeHarmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBoxingPracticeHarmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0f6070869bb41f91bb3510edc53a93862e59504b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBoxingPracticeHarmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBoxingPracticeHarmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBricksBushesStaticBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBricksBushesStaticBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8ab0c7de91281759a6eb7599ca161b3b787e08bd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBricksBushesStaticBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBricksBushesStaticBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBricksLeavesBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBricksLeavesBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3e92950f2619fca66b79cafb0918fa5e87d6157a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBricksLeavesBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBricksLeavesBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBricksTiltingBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBricksTiltingBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cde3c726354da3de990c5bcce39adbd89d171640 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBricksTiltingBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBricksTiltingBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBubblesPitcherS1BVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBubblesPitcherS1BVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..85c248ab8f611cd0a587bd6dbf459e0385442f4c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBubblesPitcherS1BVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBubblesPitcherS1BVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuildingRoofS1IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuildingRoofS1IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cd7a58ecb1a265f70929310c7f172022c786106f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuildingRoofS1IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBuildingRoofS1IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuildingRoofS2IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuildingRoofS2IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..005f8861cb21369d7ab0d2a825d1e2833a61a4b9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuildingRoofS2IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBuildingRoofS2IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuildingRoofS3IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuildingRoofS3IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5323716bfc62db719b11ea5365cfe0578f9b784f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuildingRoofS3IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBuildingRoofS3IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuildingRoofS4IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuildingRoofS4IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fec3d6298644c0ef0ff156ae48a9f4d683ea607b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuildingRoofS4IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBuildingRoofS4IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuntingHangingAcrossHongKongVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuntingHangingAcrossHongKongVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3ef61ea149ef67b5c03d2c2eb3351ca6bb727d46 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBuntingHangingAcrossHongKongVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBuntingHangingAcrossHongKongVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBusyHongKongStreetVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBusyHongKongStreetVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..381756f5dd685158f954e5ade6f635a0ad7c3046 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DBusyHongKongStreetVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DBusyHongKongStreetVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCalmingWaterBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCalmingWaterBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7c2828bb82aea4ba66975cbe9f97935ab0862376 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCalmingWaterBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCalmingWaterBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCarpetPanAverageBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCarpetPanAverageBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1d6bb206127555ce26910992e41d828eb6bd8d67 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCarpetPanAverageBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCarpetPanAverageBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCatchBVIHFR_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCatchBVIHFR_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a826259bc58e6b2c3b79c10395ecfd55d50e7774 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCatchBVIHFR_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCatchBVIHFR_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCeramicsandSpicesMoroccoVidevo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCeramicsandSpicesMoroccoVidevo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bcba3b16a879abb5235af21e40df4044c6daff7a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCeramicsandSpicesMoroccoVidevo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCeramicsandSpicesMoroccoVidevo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCharactersYonseiUniversity_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCharactersYonseiUniversity_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..28cf1875ca057e4f79441aca307bcc9cfbfb95d3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCharactersYonseiUniversity_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCharactersYonseiUniversity_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DChristmasPresentsIRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DChristmasPresentsIRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1400a129af7a1df881c2c73ccb8dd95d65ad285a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DChristmasPresentsIRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DChristmasPresentsIRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DChristmasRoomDareful_480x272_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DChristmasRoomDareful_480x272_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bad23a773e3b1a68c77278b537edb4527b6ff3a0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DChristmasRoomDareful_480x272_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DChristmasRoomDareful_480x272_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DChurchInsideMCLJCV_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DChurchInsideMCLJCV_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..73b2333f3666a4af3dd8690a370654ad43a5cab1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DChurchInsideMCLJCV_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DChurchInsideMCLJCV_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityScapesS1IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityScapesS1IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..561769519658a4c75d315c6ad5b773fe22d90503 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityScapesS1IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCityScapesS1IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityScapesS2IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityScapesS2IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..70e19f6ae20c4aaa50f0c364e74685344b745c05 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityScapesS2IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCityScapesS2IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityScapesS3IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityScapesS3IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d0446e85be63fb2a45f4f7dd15efbb526f9ea65d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityScapesS3IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCityScapesS3IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS1IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS1IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fef65bb6a7c7f7d9e9b806d49d6b7fcf3ff09bc3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS1IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCityStreetS1IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS3IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS3IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e2f9a2e4123c756c8a6c27a45ca23d9de6b0232d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS3IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCityStreetS3IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS4IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS4IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..41d617e6c3a420fd650d9158fedc23833968d42d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS4IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCityStreetS4IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS5IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS5IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a34904168593cf1925d8edc87cfe6facf2a04d40 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS5IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCityStreetS5IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS6IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS6IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..326a021c3ed5b2b58d19465ce723b84cfd52696e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS6IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCityStreetS6IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS7IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS7IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1eb8759ae8e0833a9a3cd322360c09b788467bd6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCityStreetS7IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCityStreetS7IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCloseUpBasketballSceneVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCloseUpBasketballSceneVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c3ca326a227583ebab3c6b2d147179574d227062 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCloseUpBasketballSceneVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCloseUpBasketballSceneVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCloudsStaticBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCloudsStaticBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..984584579c37f9193e5831d4e384cc628b208b97 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCloudsStaticBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCloudsStaticBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DColourfulDecorationWatPhoVidevo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DColourfulDecorationWatPhoVidevo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3f5ef9563f3227c78781245102396df420a483cb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DColourfulDecorationWatPhoVidevo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DColourfulDecorationWatPhoVidevo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DColourfulKoreanLanternsVidevo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DColourfulKoreanLanternsVidevo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..08db51bd4030514b0ab747905b051a73f3a7551b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DColourfulKoreanLanternsVidevo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DColourfulKoreanLanternsVidevo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DColourfulPaperLanternsVidevo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DColourfulPaperLanternsVidevo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7eedd3a0b99ab2e6f0b486635ce7324c84a7fba4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DColourfulPaperLanternsVidevo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DColourfulPaperLanternsVidevo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DColourfulRugsMoroccoVidevo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DColourfulRugsMoroccoVidevo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..04019b3b87ac50312e8d8dbae05a7547bc6f8fd3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DColourfulRugsMoroccoVidevo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DColourfulRugsMoroccoVidevo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DConstructionS2YonseiUniversity_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DConstructionS2YonseiUniversity_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..18c1c25fcc0e50feed9e7395c076b2c09f19aa49 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DConstructionS2YonseiUniversity_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DConstructionS2YonseiUniversity_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCostaRicaS3Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCostaRicaS3Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c7b4cb548ae9d5ecab4308ead5c71d52f716e098 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCostaRicaS3Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCostaRicaS3Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrosswalkHarmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrosswalkHarmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c6619f5b73ebbc9f24e8fd74ec81b044685cab64 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrosswalkHarmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCrosswalkHarmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrosswalkHongKong2S1Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrosswalkHongKong2S1Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bb8ac078f61bf9360078b3477ef57f204e9fe585 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrosswalkHongKong2S1Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCrosswalkHongKong2S1Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrosswalkHongKong2S2Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrosswalkHongKong2S2Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3d702ef2426b22c42caeacbb44357c057ec3f249 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrosswalkHongKong2S2Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCrosswalkHongKong2S2Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrosswalkHongKongVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrosswalkHongKongVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f4e4cc3c28d4de95980789f85f71cc0622c88a3d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrosswalkHongKongVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCrosswalkHongKongVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrowdRunMCLV_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrowdRunMCLV_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e9b27bcf9eee92f3562236e81557d7d4d167fbef --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCrowdRunMCLV_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCrowdRunMCLV_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCyclistS1BVIHFR_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCyclistS1BVIHFR_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c23759375019c161a667e47ce4a0361ff0ceb5ae --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCyclistS1BVIHFR_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCyclistS1BVIHFR_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCyclistVeniceBeachBoardwalkVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCyclistVeniceBeachBoardwalkVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..26234ac56a60334cae8c9ec7549a428e1646ffb0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DCyclistVeniceBeachBoardwalkVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DCyclistVeniceBeachBoardwalkVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDollsScene1YonseiUniversity_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDollsScene1YonseiUniversity_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0e4865705c2c180d47270b5aff507b028538a610 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDollsScene1YonseiUniversity_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DDollsScene1YonseiUniversity_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDollsScene2YonseiUniversity_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDollsScene2YonseiUniversity_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3481f3d22b081113979d2be2cfe4827fcf915625 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDollsScene2YonseiUniversity_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DDollsScene2YonseiUniversity_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDowntownHongKongVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDowntownHongKongVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ce6102e7d5924f96db74a32bb8231832bf2d3526 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDowntownHongKongVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DDowntownHongKongVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDrivingPOVHarmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDrivingPOVHarmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2b5efcda4a8770ec61fd581aef0218d64de1efab --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDrivingPOVHarmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DDrivingPOVHarmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDropsOnWaterBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDropsOnWaterBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7e939b5a8eca7c252852b9281e7a4d8bed250b6d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DDropsOnWaterBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DDropsOnWaterBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DElFuenteMaskLIVENetFlix_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DElFuenteMaskLIVENetFlix_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c92706eaece73b521de4c46abcc64b2a0946db96 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DElFuenteMaskLIVENetFlix_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DElFuenteMaskLIVENetFlix_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DEnteringHongKongStallS1Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DEnteringHongKongStallS1Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ceb99a91bdedcf897a31882395fb59474f7ba395 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DEnteringHongKongStallS1Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DEnteringHongKongStallS1Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DEnteringHongKongStallS2Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DEnteringHongKongStallS2Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6743250a984e8e1877795ce5045ee69e32fa982a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DEnteringHongKongStallS2Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DEnteringHongKongStallS2Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFerrisWheelTurningVidevo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFerrisWheelTurningVidevo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2eb7d9717c826394354ed2d1c87ff9bb3317ad25 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFerrisWheelTurningVidevo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DFerrisWheelTurningVidevo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFirewoodS1IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFirewoodS1IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5421dcd19a9b8d8e912dbea846cf5ca8a99860bd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFirewoodS1IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DFirewoodS1IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFirewoodS2IRIS_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFirewoodS2IRIS_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..63253e9aa520f771f75e10d12fa0358503bc0924 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFirewoodS2IRIS_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DFirewoodS2IRIS_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFitnessIRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFitnessIRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9ec2545dd48cfaf5f07805cad1de237864a5afc3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFitnessIRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DFitnessIRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFjordsS1Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFjordsS1Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..14a7d14bc9be5b8cdd14ab25bdbae996245106a1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFjordsS1Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DFjordsS1Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlagShootTUMSVT_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlagShootTUMSVT_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fd66e6ae908e43cfaa2b47fe71b7d250d8dd5aec --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlagShootTUMSVT_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DFlagShootTUMSVT_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlowerChapelS1IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlowerChapelS1IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2fdc560e3a6dacbf58ffd016b7f5db27f2de5c1b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlowerChapelS1IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DFlowerChapelS1IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlowerChapelS2IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlowerChapelS2IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0aa877c4b74ce806bd0825ca3110b81b695623c1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlowerChapelS2IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DFlowerChapelS2IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlyingCountrysideDareful_480x272_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlyingCountrysideDareful_480x272_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..89bc932167c4707f1c13976237b34bfa4f496d15 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlyingCountrysideDareful_480x272_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DFlyingCountrysideDareful_480x272_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlyingMountainsDareful_480x272_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlyingMountainsDareful_480x272_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..194e3b704e70ba71496ea68e940a6d129da231cf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlyingMountainsDareful_480x272_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DFlyingMountainsDareful_480x272_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlyingThroughLAStreetVidevo_480x272_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlyingThroughLAStreetVidevo_480x272_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c872b6167ccb90bdc18389b0e3bc11f4da334038 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFlyingThroughLAStreetVidevo_480x272_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DFlyingThroughLAStreetVidevo_480x272_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFungusZoomBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFungusZoomBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a014ec69e61b2d356c37aa3e821b8f7148e2394a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DFungusZoomBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DFungusZoomBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DGrassBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DGrassBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..338757e14833d920c018cfa2292e974fe4d93244 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DGrassBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DGrassBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DGrazTowerIRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DGrazTowerIRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..91ccda183c7aa6ccda2d6a18b759172c7e614e57 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DGrazTowerIRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DGrazTowerIRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHamsterBVIHFR_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHamsterBVIHFR_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5038c41a865c3ec5a02a4e43eaa71568a9be31f4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHamsterBVIHFR_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHamsterBVIHFR_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHarleyDavidsonIRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHarleyDavidsonIRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b462449a4d5995921669c90c0c80de94cc5204a0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHarleyDavidsonIRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHarleyDavidsonIRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongIslandVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongIslandVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0849892e30e3c88a60dcad5dd775c04aa3f36fb0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongIslandVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHongKongIslandVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket1Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket1Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..312eb491b236aefe9e074fa9cd3e3b963bdaf892 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket1Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHongKongMarket1Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket2Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket2Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8a77f6495d0d22bc6f83b69152a5e8b8f5ef393a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket2Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHongKongMarket2Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket3S1Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket3S1Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8afc067c583eea56ece630ca140678536acfcaf1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket3S1Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHongKongMarket3S1Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket3S2Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket3S2Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4be21c9055922577a426e8a108c0cc958d03946f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket3S2Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHongKongMarket3S2Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket4S1Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket4S1Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5a962abf6b2517aab24d204ae3ab2a365dc90d63 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket4S1Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHongKongMarket4S1Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket4S2Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket4S2Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..07082e9877f1d13743e230af65cbd2fd9c117977 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongMarket4S2Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHongKongMarket4S2Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongS1Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongS1Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..516a10e59987a7a8923ac4f2f9e56b7962ddf1c5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongS1Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHongKongS1Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongS2Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongS2Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6d1b5fa028f942ec67c6992f9eb7c41b51df5705 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongS2Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHongKongS2Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongS3Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongS3Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..62e7812fe430a2cbd9fc72f4dc4bbf5d8fc29c74 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHongKongS3Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHongKongS3Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHorseDrawnCarriagesVidevo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHorseDrawnCarriagesVidevo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b9598ac4f4c99f3d188c37b70b4d1506f0e1a1bf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHorseDrawnCarriagesVidevo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHorseDrawnCarriagesVidevo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHorseStaringS1Videvo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHorseStaringS1Videvo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..99a1f67962cb0a914705b87674f05be1b737bf5d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHorseStaringS1Videvo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHorseStaringS1Videvo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHorseStaringS2Videvo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHorseStaringS2Videvo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..399ec2064ba1b8a2c137ac67738b871db42d0585 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DHorseStaringS2Videvo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DHorseStaringS2Videvo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DJockeyHarmonics_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DJockeyHarmonics_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5aa9395a0707f31a81d54c4cf9cd93be044d64b6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DJockeyHarmonics_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DJockeyHarmonics_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DJoggersS1BVIHFR_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DJoggersS1BVIHFR_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7cc4cad48e9ad439e8edbb54e6e0dcf9ff80bd2a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DJoggersS1BVIHFR_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DJoggersS1BVIHFR_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DJoggersS2BVIHFR_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DJoggersS2BVIHFR_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9cb0fd8db34f78ab835af117d255dcdbaee0ede7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DJoggersS2BVIHFR_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DJoggersS2BVIHFR_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DKartingIRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DKartingIRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e59a4d75bb3d0573d3a19c09887bbb41a73ce25f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DKartingIRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DKartingIRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DKoraDrumsVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DKoraDrumsVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2f59c19c0ba4e875d169ab1e9a62492d0ab5fdfd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DKoraDrumsVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DKoraDrumsVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLakeYonseiUniversity_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLakeYonseiUniversity_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..94a970f7b42c3eb82176b29bfea5f72f29aca034 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLakeYonseiUniversity_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DLakeYonseiUniversity_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLampLeavesBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLampLeavesBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ea2f091657555fdbbb214497a78f856d3e377efb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLampLeavesBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DLampLeavesBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLaundryHangingOverHongKongVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLaundryHangingOverHongKongVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..541b36b3a8750b04247ed4ba463dac4d5bf4af2b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLaundryHangingOverHongKongVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DLaundryHangingOverHongKongVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLeaves1BVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLeaves1BVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ee66c2b69a66fafd91549b4aa6cea3890a98c887 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLeaves1BVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DLeaves1BVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLeaves3BVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLeaves3BVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e027d86fabf8758c14d8ae979c806045d9776969 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLeaves3BVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DLeaves3BVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLowLevelShotAlongHongKongVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLowLevelShotAlongHongKongVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8cbff3a11800aeaba891e322fa0d1a988407bcf9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLowLevelShotAlongHongKongVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DLowLevelShotAlongHongKongVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLungshanTempleS1Videvo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLungshanTempleS1Videvo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d2627d8f26d09166bb7c6eeca37242730c0a4e6f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLungshanTempleS1Videvo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DLungshanTempleS1Videvo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLungshanTempleS2Videvo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLungshanTempleS2Videvo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..05123c4375115336ca76f622ae8776285af7b1d1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DLungshanTempleS2Videvo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DLungshanTempleS2Videvo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DManMoTempleVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DManMoTempleVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..664797e883fe9a004ffcaba419e5d027b8b93e6e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DManMoTempleVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DManMoTempleVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DManStandinginProduceTruckVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DManStandinginProduceTruckVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b04daa8f9e03cffd696c49c80f69463723496ecf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DManStandinginProduceTruckVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DManStandinginProduceTruckVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DManWalkingThroughBangkokVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DManWalkingThroughBangkokVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e859f2998c64a83d0a2ea26f54de65b35343e25d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DManWalkingThroughBangkokVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DManWalkingThroughBangkokVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMaplesS1YonseiUniversity_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMaplesS1YonseiUniversity_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7353df6e673935663809a964525549fcc43ac70c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMaplesS1YonseiUniversity_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DMaplesS1YonseiUniversity_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMaplesS2YonseiUniversity_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMaplesS2YonseiUniversity_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7da8c8e14d29faa9e56e0cf1e30d2888fc733470 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMaplesS2YonseiUniversity_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DMaplesS2YonseiUniversity_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMirabellParkS1IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMirabellParkS1IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5d0949d1ae643a91cb06587fb83216e58d44c0d8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMirabellParkS1IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DMirabellParkS1IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMirabellParkS2IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMirabellParkS2IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..93ae6562c967d44c46d4d83cfc0b3c4a23b1e983 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMirabellParkS2IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DMirabellParkS2IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMobileHarmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMobileHarmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b6b59bf34267e5aa14cea264cf8bf7f1dd297a8a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMobileHarmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DMobileHarmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMoroccanCeramicsShopVidevo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMoroccanCeramicsShopVidevo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d96588695e57c0b990f511a9b7f73af71d99bb67 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMoroccanCeramicsShopVidevo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DMoroccanCeramicsShopVidevo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMoroccanSlippersVidevo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMoroccanSlippersVidevo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..294a93beb2317f291aa516a1eea05c9c570cb89e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMoroccanSlippersVidevo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DMoroccanSlippersVidevo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMuralPaintingVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMuralPaintingVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..222798595d0e2eb4332847cc9f71d675e92254a8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMuralPaintingVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DMuralPaintingVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMyanmarS4Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMyanmarS4Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..581569dc99936804f00cb906791a6303f078b51e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMyanmarS4Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DMyanmarS4Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMyanmarS6Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMyanmarS6Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5d3d6bb427c3a71ad933abd495bfed230a0be159 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMyanmarS6Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DMyanmarS6Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMyeongDongVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMyeongDongVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b96de021a3939727b3df12bb73db013c0b0a74a1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DMyeongDongVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DMyeongDongVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DNewYorkStreetDareful_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DNewYorkStreetDareful_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5f22c4562ec308d517c289741bf8fc126cddf8b8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DNewYorkStreetDareful_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DNewYorkStreetDareful_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DOrangeBuntingoverHongKongVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DOrangeBuntingoverHongKongVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2633aeae6ec77674623af63d67c45463228e0914 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DOrangeBuntingoverHongKongVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DOrangeBuntingoverHongKongVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPaintingTiltingBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPaintingTiltingBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3e73a728d9151eb7a278c8fa49495e93edfd6d86 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPaintingTiltingBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DPaintingTiltingBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DParkViolinMCLJCV_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DParkViolinMCLJCV_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d6de9f4c4de4bd27240ac7c526b2b5bd0b8e4be7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DParkViolinMCLJCV_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DParkViolinMCLJCV_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPedestriansSeoulatDawnVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPedestriansSeoulatDawnVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..96e5569b3dfdd518b3acd5182d9e72cf830bb90b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPedestriansSeoulatDawnVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DPedestriansSeoulatDawnVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPeopleWalkingS1IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPeopleWalkingS1IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d6ae5a47f6f83b182d4bd20987203af01ba45a21 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPeopleWalkingS1IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DPeopleWalkingS1IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPersonRunningOutsideVidevo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPersonRunningOutsideVidevo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..677a185d5ab3bde503873085818661215b782689 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPersonRunningOutsideVidevo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DPersonRunningOutsideVidevo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPillowsTransBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPillowsTransBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5c1a4058e64dcdc21549dce02e4fe2a5c6de50af --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPillowsTransBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DPillowsTransBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPlasmaFreeBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPlasmaFreeBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c5f7e868bf247eb2c24e75bc5aca322ea039a771 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPlasmaFreeBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DPlasmaFreeBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPresentsChristmasTreeDareful_480x272_29fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPresentsChristmasTreeDareful_480x272_29fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..49a1f9a43a20ebc6267a5f5e29fa8b09d250d041 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DPresentsChristmasTreeDareful_480x272_29fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DPresentsChristmasTreeDareful_480x272_29fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 29 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DResidentialBuildingSJTU_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DResidentialBuildingSJTU_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9bbfcdf7b3595b0a95711eba8401dd24beb3fd12 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DResidentialBuildingSJTU_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DResidentialBuildingSJTU_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DRunnersSJTU_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DRunnersSJTU_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..af2561a7cca359143afcadce4fa4577e1a02ceab --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DRunnersSJTU_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DRunnersSJTU_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DRuralSetupIRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DRuralSetupIRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0614891947eb88ae7586c9673fa036ffb72d0c54 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DRuralSetupIRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DRuralSetupIRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DRuralSetupS2IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DRuralSetupS2IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c383a05456c1c71a64b298c23da07aab524331b4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DRuralSetupS2IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DRuralSetupS2IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DScarfSJTU_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DScarfSJTU_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5386b144d8da41ce34abf030e65262f215a10a52 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DScarfSJTU_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DScarfSJTU_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSeasideWalkIRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSeasideWalkIRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..14e4650eb1e392c649124cd0e7b75ba2d52b4807 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSeasideWalkIRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DSeasideWalkIRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSeekingMCLV_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSeekingMCLV_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fd79c5782a31cb00ac284fca0da7820c2034cfd1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSeekingMCLV_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DSeekingMCLV_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSeoulCanalatDawnVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSeoulCanalatDawnVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a5fcc66ce727098a9c02aadd58496e78e85106a4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSeoulCanalatDawnVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DSeoulCanalatDawnVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DShoppingCentreVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DShoppingCentreVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..14a2b5f1cd871dd387bebc587795c680d2ed7084 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DShoppingCentreVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DShoppingCentreVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSignboardBoatLIVENetFlix_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSignboardBoatLIVENetFlix_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..57fa9740411914de078cbaf9de870693b4a7d3a8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSignboardBoatLIVENetFlix_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DSignboardBoatLIVENetFlix_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSkyscraperBangkokVidevo_480x272_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSkyscraperBangkokVidevo_480x272_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3adcb540ab77a8fc01d937ef6a481bb94c5b8e39 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSkyscraperBangkokVidevo_480x272_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DSkyscraperBangkokVidevo_480x272_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSmokeClearBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSmokeClearBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..20f9aa3d5aa3aa5da4b404f4533b0d172ad1120a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSmokeClearBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DSmokeClearBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSparklerBVIHFR_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSparklerBVIHFR_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bef1972e648898455c4f765e05637faf342c0844 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSparklerBVIHFR_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DSparklerBVIHFR_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSquareAndTimelapseHarmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSquareAndTimelapseHarmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..46bedee889788704a26c2ef384eb088e95f9672c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSquareAndTimelapseHarmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DSquareAndTimelapseHarmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSquareS1IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSquareS1IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..58a04ea80a9fac54003d53e0da5b6340843c866b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSquareS1IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DSquareS1IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSquareS2IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSquareS2IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5eb9f044ad8891330f03cfc25d664bbf7d55b521 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DSquareS2IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DSquareS2IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetArtVidevo_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetArtVidevo_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f678a2c82b012f228aa440eebf74114b9ae47dd1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetArtVidevo_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DStreetArtVidevo_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS1IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS1IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..66c9e59f054e82effe713e373d981a5359b7a39a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS1IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DStreetDancerS1IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS2IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS2IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dfee3f7614472e267da97b74adff166553bcf427 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS2IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DStreetDancerS2IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS3IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS3IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4b09c12a106f268502e0b3f784e275c208d2e2b3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS3IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DStreetDancerS3IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS4IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS4IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..82b2fc1916ef0b8571842952b4c9b3c431be7318 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS4IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DStreetDancerS4IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS5IRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS5IRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5ae5b875063e41ee864e1995b7ec60933644bb88 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetDancerS5IRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DStreetDancerS5IRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetsOfIndiaS1Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetsOfIndiaS1Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..521d46e11d5edd99b53d589ecb8bd4c21d1ebb07 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetsOfIndiaS1Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DStreetsOfIndiaS1Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetsOfIndiaS2Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetsOfIndiaS2Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cf10ea7b56abc118e560ce81902220b0cd428fa8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetsOfIndiaS2Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DStreetsOfIndiaS2Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetsOfIndiaS3Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetsOfIndiaS3Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..15a45f6a709a11c68cf5cd07285bb48dab01102a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DStreetsOfIndiaS3Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DStreetsOfIndiaS3Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaiChiHongKongS1Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaiChiHongKongS1Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..158864bb0754027b4e7785e00aa1f1a1987886c7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaiChiHongKongS1Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTaiChiHongKongS1Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaiChiHongKongS2Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaiChiHongKongS2Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9c05131c710e8a365bbe4a5a6e5782e26ffc39b8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaiChiHongKongS2Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTaiChiHongKongS2Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaipeiCityRooftops8Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaipeiCityRooftops8Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8e44c82b317f05ce5216a5096abc78209c24a42e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaipeiCityRooftops8Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTaipeiCityRooftops8Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaipeiCityRooftopsS1Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaipeiCityRooftopsS1Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..294b98bdbc7d894fa2413109b9fedca9da8e7fd1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaipeiCityRooftopsS1Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTaipeiCityRooftopsS1Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaipeiCityRooftopsS2Videvo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaipeiCityRooftopsS2Videvo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e0bf1a81f2e78aa94329cac771f81d908cf3abd9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaipeiCityRooftopsS2Videvo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTaipeiCityRooftopsS2Videvo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaksinBridgeVidevo_480x272_23fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaksinBridgeVidevo_480x272_23fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4c48a766f0ccf25eba0d361f2d9945ddcf42c68c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTaksinBridgeVidevo_480x272_23fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTaksinBridgeVidevo_480x272_23fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 23 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTallBuildingsSJTU_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTallBuildingsSJTU_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4131ea251683bc6ae208b61984ed65c9fd32ab3e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTallBuildingsSJTU_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTallBuildingsSJTU_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTennisMCLV_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTennisMCLV_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..46c53daaa122e9aa447d364fb656b96e0993d35c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTennisMCLV_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTennisMCLV_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTouristsSatOutsideVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTouristsSatOutsideVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9e86e6663822c2c8e096680362be28ee517de8ee --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTouristsSatOutsideVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTouristsSatOutsideVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DToyCalendarHarmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DToyCalendarHarmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9f3d88e0bf22fb4d4f2689e7297f31a29a4c612c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DToyCalendarHarmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DToyCalendarHarmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrackingDownHongKongSideVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrackingDownHongKongSideVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e23a21b28a278d35f29c5621ddafa4bb9130e3c8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrackingDownHongKongSideVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTrackingDownHongKongSideVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrackingPastRestaurantVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrackingPastRestaurantVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aa97b68dc6798eefb473b302593e60907c797792 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrackingPastRestaurantVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTrackingPastRestaurantVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrackingPastStallHongKongVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrackingPastStallHongKongVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a67a873d538e27fe510d8d99644649bc90667cce --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrackingPastStallHongKongVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTrackingPastStallHongKongVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTraditionalIndonesianKecakVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTraditionalIndonesianKecakVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fe70841c0cdae14cf753e8a9e8501381b7d16909 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTraditionalIndonesianKecakVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTraditionalIndonesianKecakVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrafficFlowSJTU_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrafficFlowSJTU_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..10c91a88be77c75d353c053c12a9e1dc7802230b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrafficFlowSJTU_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTrafficFlowSJTU_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrafficandBuildingSJTU_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrafficandBuildingSJTU_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ed5c57485d62871870d467f5faab24ee9350ac77 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrafficandBuildingSJTU_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTrafficandBuildingSJTU_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrafficonTasksinBridgeVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrafficonTasksinBridgeVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0b302587d0b250bae3e29f8a7052e515ca9e74a1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTrafficonTasksinBridgeVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTrafficonTasksinBridgeVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTreeWillsBVITexture_480x272_120fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTreeWillsBVITexture_480x272_120fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6e07e74a68e1c24c89a70f8e67507cf77203a2fe --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTreeWillsBVITexture_480x272_120fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTreeWillsBVITexture_480x272_120fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 120 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTruckIRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTruckIRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cdb2cdb0c7d84879d8f95c657305366d4b910a35 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTruckIRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTruckIRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTunnelFlagS1Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTunnelFlagS1Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e3b804135f13f8efa49be878424d9b092e45ee9b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DTunnelFlagS1Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DTunnelFlagS1Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DUnloadingVegetablesVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DUnloadingVegetablesVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bca64570b27101f1fb93345858ccda142e06dad5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DUnloadingVegetablesVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DUnloadingVegetablesVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVegetableMarketS1LIVENetFlix_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVegetableMarketS1LIVENetFlix_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..23e2df3ef98da70660aca1108c716a490c7e3541 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVegetableMarketS1LIVENetFlix_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DVegetableMarketS1LIVENetFlix_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVegetableMarketS2LIVENetFlix_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVegetableMarketS2LIVENetFlix_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f05738f56facc44c27fa802baab6cbfe50c56266 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVegetableMarketS2LIVENetFlix_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DVegetableMarketS2LIVENetFlix_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVegetableMarketS3LIVENetFlix_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVegetableMarketS3LIVENetFlix_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1a5444bd46d8134a585c368e87dfca5a8459e58a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVegetableMarketS3LIVENetFlix_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DVegetableMarketS3LIVENetFlix_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVegetableMarketS4LIVENetFlix_480x272_30fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVegetableMarketS4LIVENetFlix_480x272_30fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0e6e8a4c5e02f7f2c36d99f7720ccb3ff0ed7415 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVegetableMarketS4LIVENetFlix_480x272_30fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DVegetableMarketS4LIVENetFlix_480x272_30fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 30 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVeniceS1Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVeniceS1Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..31c3aef36aa2882f08043917014572f7eba770bd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVeniceS1Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DVeniceS1Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVeniceS2Harmonics_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVeniceS2Harmonics_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2f32322afcc1db1c98bf3976382f70116eba4e11 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVeniceS2Harmonics_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DVeniceS2Harmonics_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVeniceSceneIRIS_480x272_24fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVeniceSceneIRIS_480x272_24fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ac5ce428318a9131e141e2a96813d299efd54e3f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DVeniceSceneIRIS_480x272_24fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DVeniceSceneIRIS_480x272_24fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 24 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWalkingDownKhaoStreetVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWalkingDownKhaoStreetVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3728721d6a21175d6e45d3643bf59a25e41ddf53 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWalkingDownKhaoStreetVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DWalkingDownKhaoStreetVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWalkingDownNorthRodeoVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWalkingDownNorthRodeoVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9a7f92d1965b6b955f89c9827c49572d2067487b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWalkingDownNorthRodeoVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DWalkingDownNorthRodeoVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWalkingThroughFootbridgeVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWalkingThroughFootbridgeVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2e05b08fd72186e73f1d7987f6d8185c6c424c23 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWalkingThroughFootbridgeVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DWalkingThroughFootbridgeVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWatPhoTempleVidevo_480x272_50fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWatPhoTempleVidevo_480x272_50fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cc0778931870deea86c6207fe297c2c8dd7f2164 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWatPhoTempleVidevo_480x272_50fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DWatPhoTempleVidevo_480x272_50fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 50 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWoodSJTU_480x272_60fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWoodSJTU_480x272_60fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..df0268fbc0b9ba86bdcdf2c290ee8b6a6533517f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWoodSJTU_480x272_60fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DWoodSJTU_480x272_60fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 60 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWovenVidevo_480x272_25fps_10bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWovenVidevo_480x272_25fps_10bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..740d3b1b56c2c8ad44931b1b3f617f33a14207ea --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgBVIDVC_IntraLuma/DWovenVidevo_480x272_25fps_10bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : DWovenVidevo_480x272_25fps_10bit_420.yuv + +InputBitDepth : 10 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 480 # Input frame width +SourceHeight : 272 # Input frame height +FramesToBeEncoded : 64 # Number of frames to be coded + +Level : 2.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0001_2040x1400_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0001_2040x1400_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6d92fa851a921459edc70b1650d7347235174ee7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0001_2040x1400_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0001_2040x1400_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1400 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0002_2040x1848_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0002_2040x1848_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cdd06ce0bdd512154801a1947c5a433c6dc8ba69 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0002_2040x1848_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0002_2040x1848_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1848 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0003_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0003_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..24b78a36eb4d9e246bc01cf3bc1480379e06f3d0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0003_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0003_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0004_2040x1344_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0004_2040x1344_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cd7702216eaa4f625ac4270338162c86d88b6a0c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0004_2040x1344_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0004_2040x1344_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1344 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0005_1608x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0005_1608x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9152c78c0afa4269aa55d4c5f0b15008d72a77fe --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0005_1608x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0005_1608x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1608 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0006_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0006_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6836830e8bcf327c48f6e27de6c2eebcab53a201 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0006_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0006_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0007_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0007_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bc8f90db1627fb1d33ecfa381dd9cee1f2f6a3cc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0007_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0007_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0008_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0008_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dc8e5591822eb9b0c246d77db3cd371bff575dd6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0008_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0008_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0009_2040x1520_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0009_2040x1520_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3bbac8a403044a17bbc65fb4afb7ff33a0d7c19a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0009_2040x1520_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0009_2040x1520_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1520 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0010_2040x1640_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0010_2040x1640_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6cb3c06dfbb77ad9f178193b55e1e6b68fa38afb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0010_2040x1640_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0010_2040x1640_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1640 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0011_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0011_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..78caf6a32913e2a02649b2a1f4b4dea18a6a12c8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0011_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0011_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0012_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0012_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ca3c45510746cec95ec86e63c2d7e81aef129662 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0012_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0012_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0013_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0013_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d4cd5d709335d7c40b05a780294df748d6fbbc53 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0013_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0013_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0014_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0014_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a6d247002883dedbbe7fcc83091abfeeb0b1fcfa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0014_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0014_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0015_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0015_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dc15c7b0d58651a5932c7b5a1520d73b4fd681dc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0015_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0015_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0016_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0016_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..da5c2814a4db4836eedb5c24eaf3fab7de2531f3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0016_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0016_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0017_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0017_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1aad7c33effadd75d9eed6462b878c80251f9c81 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0017_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0017_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0018_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0018_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6ef8f445e35bf11270a14674405b7b2386d74729 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0018_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0018_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0019_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0019_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d50d28519366314c7eacae848212a9d9f7675ea2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0019_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0019_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0020_2040x1392_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0020_2040x1392_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..986e30abef394644e6a97bba6bafb8f00de18a36 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0020_2040x1392_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0020_2040x1392_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1392 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0021_2040x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0021_2040x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1f77978374f45721d054910cf23c1b51dce461e1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0021_2040x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0021_2040x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0022_2040x960_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0022_2040x960_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a975ec65cdb0ca35318b42fa1b55b2e6605bd2fa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0022_2040x960_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0022_2040x960_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 960 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0023_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0023_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c5f70d7d777b61d57feac45da1de020c8a4a092e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0023_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0023_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0024_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0024_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..807cb1ee40a898d91080d5f9bc4fe79088af4cbb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0024_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0024_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0025_1136x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0025_1136x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..295b4c293494f1a35041e14d22970974f15a52d4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0025_1136x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0025_1136x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1136 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0026_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0026_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dcadc551048a40d5ef4f21a4a41e7ceecab6c2d1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0026_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0026_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0027_2040x1544_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0027_2040x1544_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d1d00d547187a5104708b8653dc4cb5877f6a3ae --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0027_2040x1544_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0027_2040x1544_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1544 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0028_2040x1992_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0028_2040x1992_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7398a5f20acd1eecf1b843f4f3585494776b75a3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0028_2040x1992_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0028_2040x1992_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1992 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0029_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0029_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..788c94fa8682a4d66a32a47313d7b4af70ab648f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0029_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0029_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0030_2040x1272_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0030_2040x1272_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fbc5ec14f9f31f6aa1eb5c269cd61329847aa5e3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0030_2040x1272_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0030_2040x1272_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1272 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0031_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0031_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0630524c92b46bbde5d778554db1bd7edc4b11d5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0031_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0031_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0032_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0032_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bc8f0b708f42e8e0a6bf0fa4f3d97124d2bf51d8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0032_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0032_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0033_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0033_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8cec65264f068e3d21c7fac0665f6c584257e3f1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0033_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0033_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0034_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0034_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..03587a6a405bc07fd295b2c6d6abb62e0ce3a33c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0034_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0034_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0035_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0035_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c93168034a5afa093cc129a855fceb5031c61d22 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0035_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0035_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0036_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0036_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..059cb3b26c17f5017d671c5015fdc5e58888ec80 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0036_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0036_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0037_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0037_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e0e3e95f8216cb352eecee836020b8fba4d09917 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0037_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0037_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0038_2040x1224_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0038_2040x1224_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f52ee4cc45984d5635faf2d08a9931281d246f1b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0038_2040x1224_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0038_2040x1224_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1224 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0039_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0039_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6a274b899ac3de2f7a40c3b1b3134de5a3505f30 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0039_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0039_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0040_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0040_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3dbee31aab93a988ddb3824daed91bd5a48ef0c0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0040_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0040_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0041_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0041_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8fb32ec896e59f00f55629080ff51e80db469691 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0041_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0041_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0042_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0042_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5585fe26364b8f75e18825e9dc9ec59b643b802c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0042_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0042_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0043_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0043_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f77a99bce9b1fc85e46ef6fe8924ecb7fcf235b9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0043_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0043_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0044_2040x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0044_2040x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0a6e1f9a1840c410814d1d47f75db6afde37ac64 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0044_2040x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0044_2040x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0045_2040x1136_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0045_2040x1136_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..af2eb8d6b28441dafb2d184dbdc32d1aaf8910a3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0045_2040x1136_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0045_2040x1136_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1136 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0046_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0046_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..418440d0d8d035c333e4202c8c2948b6dfea4926 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0046_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0046_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0047_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0047_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5bde2a6a1c47112cef2b5489ea11caef21f83327 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0047_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0047_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0048_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0048_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b8792f55d69f71f7ce7e6bfef7fa4cd8dcbfc1d8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0048_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0048_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0049_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0049_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dedce0d959200b9c03b8aebfeb8d3b76efc3e39e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0049_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0049_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0050_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0050_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1d9101ee45b80e590e5bd5baee7d1a13d8f6f169 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0050_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0050_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0051_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0051_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a5961f0ba559f6080b77bead4b294d95ce32e3a5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0051_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0051_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0052_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0052_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..94bc1877708a7e30447bebd4b73e570f8713df37 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0052_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0052_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0053_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0053_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2631a10586699e483377641746b30e29451d3f75 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0053_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0053_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0054_2040x1328_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0054_2040x1328_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6f07208fc6c17eaf94e2e7db72ac111772e3fb25 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0054_2040x1328_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0054_2040x1328_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1328 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0055_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0055_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4fb521f24acae06fb94ab11c45bd1ffe9a23e44a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0055_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0055_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0056_2040x1376_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0056_2040x1376_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0e9e8c5c8a3b86887cf1ea66f46e459d60e74dec --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0056_2040x1376_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0056_2040x1376_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1376 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0057_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0057_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2657ca3a058e699be39399ac0369765e582bed24 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0057_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0057_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0058_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0058_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a1f7ff940706ba9eddc4f416152bc8e683fbf887 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0058_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0058_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0059_1640x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0059_1640x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e44fadc5397bfd9f8939d29543d530915b0b623e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0059_1640x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0059_1640x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1640 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0060_2040x1224_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0060_2040x1224_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..274b2d20fa45f153e982052c9dd070b0424531e2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0060_2040x1224_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0060_2040x1224_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1224 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0061_1280x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0061_1280x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f357373805dd9fb14c67422a8cc1b8f4cc9e09ed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0061_1280x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0061_1280x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1280 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0062_2040x1424_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0062_2040x1424_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4229234a4e5857f2806341ae785bfab7114df9f5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0062_2040x1424_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0062_2040x1424_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1424 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0063_2040x1584_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0063_2040x1584_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b16ccc89b3a7b61e42c5ecd38bf828ae135627f9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0063_2040x1584_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0063_2040x1584_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1584 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0064_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0064_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..adff25389b37951499724c2051e1e321419659f6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0064_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0064_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0065_2040x1184_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0065_2040x1184_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6d0ceb35c394ecd3e73679a27bcee82a7db7ad17 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0065_2040x1184_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0065_2040x1184_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1184 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0066_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0066_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d956a605e3abb5ad82443abd47e9036597e18c01 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0066_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0066_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0067_2040x1320_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0067_2040x1320_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e027eccec89434bdbf0173be974f28c31c56ad3d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0067_2040x1320_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0067_2040x1320_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1320 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0068_2040x1376_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0068_2040x1376_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a5ec1bfb2997886a305a97538fe1241f8624d8ba --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0068_2040x1376_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0068_2040x1376_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1376 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0069_1248x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0069_1248x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0cd5117740a7af020697103a047e3feb9365f0b0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0069_1248x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0069_1248x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1248 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0070_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0070_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..eeb2fa0c4f6f050bec2b4ad4bbd597770f8d3978 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0070_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0070_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0071_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0071_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9eb1524505d15c949c65d5b4b6a4693d60c21d9f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0071_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0071_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0072_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0072_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..94a08377f44fc25c5b3553331a181b9ea9868c49 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0072_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0072_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0073_2040x1136_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0073_2040x1136_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..da668939cdeea9fe703bb56c15b2579f1d5f5fc4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0073_2040x1136_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0073_2040x1136_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1136 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0074_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0074_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..eb9fbcf27871994f22fcdb8cdd4f58aa7eabe4ba --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0074_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0074_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0075_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0075_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2f15d39373e11a4908d7ebc02824d7c2eb8563d2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0075_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0075_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0076_2040x1568_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0076_2040x1568_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f42664934cdf5886798f186658786b08d0df28b4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0076_2040x1568_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0076_2040x1568_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1568 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0077_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0077_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5faf4f2b31f7b1c68971ffaadad5a2838fa63e1f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0077_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0077_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0078_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0078_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0faeec1b0c8797b22904368fd5e103d7e12a3f1f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0078_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0078_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0079_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0079_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..61715893fedbfbac23190bd2b04c3c9a2440b45c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0079_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0079_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0080_2040x1328_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0080_2040x1328_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f0fec77ed6d9c7ec1c7ca94f0045249a4a7b0ec8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0080_2040x1328_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0080_2040x1328_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1328 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0081_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0081_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2724a6cd5e324aa19de624f3ad4bcbd6c524932a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0081_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0081_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0082_2040x1208_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0082_2040x1208_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a6e06554e7df476b5d8e73e2c6e4075ca4f4c4a0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0082_2040x1208_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0082_2040x1208_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1208 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0083_2040x1160_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0083_2040x1160_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ec37ba391ee748245d68f70356bc8cdf3ada3a48 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0083_2040x1160_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0083_2040x1160_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1160 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0084_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0084_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9fa953b7b0243dd6ba5977be3441836ea5cd33cd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0084_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0084_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0085_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0085_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e0ebc9afe7ec1c199d659e91255cff52450ff1c6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0085_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0085_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0086_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0086_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..39c51152229b9ba4db5977200ebf3bde2579adc7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0086_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0086_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0087_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0087_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5c6124066dfa8ca6053f2336271cda05badf3cf0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0087_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0087_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0088_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0088_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..446b2bf033b9691a1ba3fea0cb607c7e82aea759 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0088_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0088_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0089_1536x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0089_1536x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7d83c5b6cbba838068f006684973d52e6ed2338a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0089_1536x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0089_1536x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1536 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0090_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0090_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8714cd4dc35ff387ab9e11476808e3fcbbe980f6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0090_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0090_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0091_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0091_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5215d8b71d1afa72d579ad13c4cec0f327a7eec8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0091_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0091_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0092_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0092_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ff80eb99ff4944c4402ee9e9142794852a82c181 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0092_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0092_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0093_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0093_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..112a37c77b897c1fa8c4dcbca8f150f35cfdd6e8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0093_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0093_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0094_2040x1272_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0094_2040x1272_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..33d6884b4cd857e86303bde61f5d3e646d35b453 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0094_2040x1272_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0094_2040x1272_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1272 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0095_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0095_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..23a43bc322f1b247cbd19df9f70098033adefed1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0095_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0095_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0096_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0096_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..01c1f7f161ceb7e1f2636e019abea5dab469e6bf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0096_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0096_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0097_2040x1184_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0097_2040x1184_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..556a247e174678084d0682e65e028231f0f0e284 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0097_2040x1184_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0097_2040x1184_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1184 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0098_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0098_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c9b9636943f55a9c6d51379d48d84679ed01ea36 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0098_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0098_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0099_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0099_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e27b4a3202b787549b9251a7135630c9a88ac570 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0099_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0099_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0100_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0100_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dd3fdec09470ad0ff1b3849c39fccc422afb5292 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0100_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0100_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0101_2040x1512_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0101_2040x1512_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..93f8263579cd50c0c17d1ca8a1e9af42c6e75b51 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0101_2040x1512_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0101_2040x1512_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1512 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0102_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0102_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..25f9fd91d05dc6571793992c0ce648275b12462d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0102_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0102_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0103_2040x1136_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0103_2040x1136_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7a4185bfbac742cbd8c2690f0fb970a64c39e11c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0103_2040x1136_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0103_2040x1136_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1136 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0104_2040x1320_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0104_2040x1320_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2a1998c2e47910ad04bf55a6beb796ec3f880d4f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0104_2040x1320_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0104_2040x1320_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1320 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0105_2040x1296_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0105_2040x1296_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4fe64e7f0356e6a2c19cf82a371ca6e7aeb3f440 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0105_2040x1296_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0105_2040x1296_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1296 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0106_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0106_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6e459d24ec7d2e3d1df8efa42e8428523970a5b0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0106_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0106_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0107_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0107_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bddb6f9a512e98e88a80463fb07e0555df2d11e8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0107_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0107_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0108_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0108_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1899108bc90edf98ae5bb627375395dff68401ae --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0108_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0108_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0109_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0109_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..39387984786e1b605b53d7609ac3ee038de97067 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0109_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0109_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0110_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0110_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3ce9606d29c76303080475739e3e08dd6cd97c6f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0110_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0110_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0111_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0111_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..265212ad3aa2e1ae3680de1020e79e90fc52c888 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0111_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0111_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0112_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0112_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8412b7bedf15e65557e8223ce34acbba8398eae5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0112_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0112_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0113_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0113_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a0b43b2fa592ac09e88b5153107e1ab692addcba --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0113_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0113_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0114_1368x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0114_1368x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c704e2d29d88bffe881e065e474a5e1756824ff2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0114_1368x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0114_1368x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1368 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0115_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0115_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bee8645e2a82a3fcd3a27cccb8ec583cdc0482b6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0115_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0115_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0116_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0116_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d90c96ac65bc2a39a1be950a93d99a4a4476568a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0116_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0116_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0117_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0117_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..343fc336b6209dbc75d1d01f91f6e43995843329 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0117_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0117_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0118_2040x1488_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0118_2040x1488_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0eb5fac8aaaa17ae9fbf59cbfcbf5154ea179017 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0118_2040x1488_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0118_2040x1488_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1488 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0119_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0119_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b81817b5990b79e8b161f5fdcdb64373d15c1178 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0119_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0119_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0120_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0120_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d7553c46ecaeb4644b28350da1aec220f8b54efa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0120_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0120_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0121_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0121_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5878eb51a7065cb784126bb8bab357bf764a8838 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0121_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0121_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0122_2040x960_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0122_2040x960_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9f00fb697d8829bc4ff931234b68c558dd73db03 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0122_2040x960_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0122_2040x960_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 960 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0123_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0123_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2d267c6b37a5ad399de3feb7d4ed8b8318d06b38 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0123_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0123_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0124_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0124_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7f6716ce85a6a769d23e7ef7f7bbfd38c97ae9c2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0124_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0124_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0125_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0125_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..db93f104789b042b0d63722138ef98e36237b5c7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0125_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0125_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0126_2040x1464_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0126_2040x1464_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..364c3ee46f717efce12ae74db1cb67ccd51b1ff3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0126_2040x1464_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0126_2040x1464_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1464 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0127_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0127_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e8f639f8fe4f8fd92e28479bc971ff3633dbdc21 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0127_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0127_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0128_2040x1280_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0128_2040x1280_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3bf4812290ba2c4e7d03d37e4bceea8c18d7b37b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0128_2040x1280_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0128_2040x1280_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1280 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0129_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0129_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2562638724342b76bae3c8292daff28683425e87 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0129_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0129_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0130_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0130_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ec41f7ad80dc00792ab9361092c250978833f7f0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0130_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0130_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0131_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0131_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9d5ae6ddecf3196208189fed3e7206562513c050 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0131_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0131_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0132_2040x1296_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0132_2040x1296_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3feb1fd633304b3f46ab2cc555952dd5da2286a6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0132_2040x1296_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0132_2040x1296_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1296 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0133_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0133_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0cc1e3a25de6030d31d980174e04421874f81e36 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0133_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0133_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0134_1776x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0134_1776x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a65976cd0589ca3a611221ec0788ee95ff8533c6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0134_1776x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0134_1776x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1776 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0135_2040x1344_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0135_2040x1344_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2e2db9abf056304905191c056d7c2b0c2a99e0d4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0135_2040x1344_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0135_2040x1344_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1344 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0136_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0136_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f559a7b1a4aeaed43217acb32c3353cdfd363f7c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0136_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0136_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0137_2040x1328_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0137_2040x1328_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0225e793344efb201054808c7e6aa820e9ab14b8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0137_2040x1328_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0137_2040x1328_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1328 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0138_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0138_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..64ca05d50cd77182eb8723b37f56f2cd5e530dda --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0138_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0138_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0139_2040x944_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0139_2040x944_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f19390b7194bde8cd8616be64b0a4109dc47d48a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0139_2040x944_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0139_2040x944_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 944 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0140_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0140_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..77323789214a09d6542052eaabebf505251c0f91 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0140_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0140_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0141_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0141_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1704e98acda322e376f2bcedadffc8efe71f9af6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0141_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0141_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0142_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0142_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8b311343d79c3818e844f2e8c27b550b8f76420b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0142_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0142_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0143_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0143_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..30c19d294054b0407ea2d09d134720626e8b0157 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0143_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0143_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0144_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0144_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d70f979a025f6c9e6a0140adb2f79f0b3c7eeab6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0144_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0144_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0145_2040x728_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0145_2040x728_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bb1f75801de265a15d4da29e60dd2556618457c9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0145_2040x728_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0145_2040x728_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 728 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0146_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0146_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cdc07e032e721b8f0b1622dd2a1878a91f69b8d3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0146_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0146_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0147_2040x1656_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0147_2040x1656_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..72e0acff6579113f9d167c2fae6a67344906bad8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0147_2040x1656_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0147_2040x1656_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1656 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0148_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0148_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c2de20ae938d98d384a29db83ad456cf92b29c3f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0148_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0148_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0149_2040x1752_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0149_2040x1752_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ce3bb41a1e2dcfcd3a35a2e06b9fd3ef78656b6f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0149_2040x1752_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0149_2040x1752_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1752 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0150_1160x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0150_1160x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f5f585db3962305682ba505b1da959444065a3c7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0150_1160x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0150_1160x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1160 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0151_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0151_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..828bb7e1366f705924d24ec924767fae61717072 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0151_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0151_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0152_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0152_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..059e78be4dd0c00db8d36e18faa40852a5bba7c6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0152_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0152_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0153_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0153_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f694565833d110c1524cc7cd5a64d028274bfed3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0153_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0153_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0154_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0154_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c9e4929eef1f8b02233db56f03c5337c05648f4a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0154_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0154_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0155_2040x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0155_2040x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..92d815d974424e2577c075a34403e6bba5a48feb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0155_2040x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0155_2040x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0156_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0156_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a9cad00efaa6455ec06b3b8b38d53e742d54e152 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0156_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0156_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0157_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0157_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ae7b65c8ff04a909ef4a8da2adb195d023f2bfcb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0157_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0157_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0158_2040x1224_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0158_2040x1224_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ce0e3d7a4fca023a46a18dc15270ad3082b0a56a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0158_2040x1224_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0158_2040x1224_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1224 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0159_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0159_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..146822038534e1b1c9d167c0ea49bd007bb8cc47 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0159_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0159_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0160_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0160_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c38fb79720219e242f703455c65cbe46fe3d6a83 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0160_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0160_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0161_2040x1256_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0161_2040x1256_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2908c3e1c502911451533dfe3a4bf0a05bbfd590 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0161_2040x1256_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0161_2040x1256_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1256 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0162_1368x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0162_1368x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..24ca738bddde3cb6182256e2f78060b147f2a441 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0162_1368x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0162_1368x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1368 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0163_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0163_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..08bc26ba586754c8e8b39787ed807afbb6adaf1f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0163_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0163_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0164_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0164_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..790cb00e9abc99ac4eae9190e0fe216f2b1535c6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0164_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0164_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0165_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0165_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e497ca24ca23058390b6582324933bc045cf4b5f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0165_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0165_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0166_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0166_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..634a03cf842a9cdc1d4a99d930ebe8a58c4eb9a5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0166_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0166_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0167_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0167_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d71abfe413cece55516785e0f5dbdd3ab01979b5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0167_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0167_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0168_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0168_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..10ca5d3145a49704950f627dceac719925445b62 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0168_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0168_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0169_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0169_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5f06846e601c5d50e8daa4f4e99988e94e277671 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0169_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0169_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0170_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0170_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e8a097a1bea140398742c8411c747a2dd8e70ceb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0170_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0170_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0171_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0171_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1d05a59ad9cce724ee59261062abc886148f80f7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0171_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0171_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0172_2040x1256_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0172_2040x1256_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fd8fee13d64471a96557af6dfcfcc07e5c932194 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0172_2040x1256_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0172_2040x1256_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1256 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0173_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0173_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5a23287ce203e100c87f25595a1b9eeaa55a3033 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0173_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0173_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0174_2040x1304_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0174_2040x1304_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b3346a41099c9e27bcd6a9543521df39ca8e7e28 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0174_2040x1304_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0174_2040x1304_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1304 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0175_2040x1064_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0175_2040x1064_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..003ff0d55e4bfeef6d292ad85fe1e99a06868bd4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0175_2040x1064_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0175_2040x1064_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1064 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0176_2040x1640_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0176_2040x1640_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..18db416ae423fa24112aeac9344c15efe8ae9284 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0176_2040x1640_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0176_2040x1640_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1640 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0177_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0177_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5a71e0c0f40c44a29834550621f9d9f8d2972ac7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0177_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0177_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0178_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0178_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e64379e6cf1823b185f5d3e537ef9b4c8272a8a0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0178_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0178_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0179_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0179_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..736f58fe7f9e03bbfe98bb6efad98ee6deafb776 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0179_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0179_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0180_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0180_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8eaf107f78a7c22e6bb026673364d0b0a80d7783 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0180_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0180_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0181_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0181_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3620032bd631b321f91ab8acfa67d5cf80a7d45c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0181_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0181_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0182_2040x1248_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0182_2040x1248_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ad541ce75d1d8fa854b107a069e05606d0533453 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0182_2040x1248_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0182_2040x1248_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1248 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0183_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0183_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..91741a689ab5940a709b85f8b437580618860495 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0183_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0183_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0184_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0184_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0cac6d0fa428d8cf0bd2590cb4149690875c4c0e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0184_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0184_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0185_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0185_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bb76c2fe7544feed5be52282b616196f3c010260 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0185_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0185_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0186_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0186_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6dd575ac5054ccd0a4af027ee37e13221e2a2591 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0186_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0186_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0187_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0187_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4030b8c1a03a3d5826918d7fff03b8a8711e6220 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0187_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0187_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0188_2040x1544_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0188_2040x1544_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8606cb2b49e2a334efda081573095a351ff88a4f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0188_2040x1544_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0188_2040x1544_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1544 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0189_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0189_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..681615da49298ecc25ba3862493f16646bb19082 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0189_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0189_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0190_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0190_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5ba08ea1e1efe2e26f772221652c518ef203abda --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0190_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0190_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0191_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0191_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..38561d206d5352ba42f910c9db1e09671acfae39 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0191_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0191_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0192_2040x1448_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0192_2040x1448_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1daba810da46f4fa07194bc0c9ebece5e677de77 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0192_2040x1448_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0192_2040x1448_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1448 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0193_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0193_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6cee643ccb443c8fe851eb016e172daf92238ce8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0193_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0193_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0194_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0194_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c46e89bf2a4fccc2a076de648fcb8210e6b34ffc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0194_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0194_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0195_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0195_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aef2aba0ec0a8595ab9bab5ce6f4fd95ec2f4992 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0195_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0195_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0196_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0196_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..afe05037f327abbea8a0274a705aa1c64bceb483 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0196_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0196_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0197_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0197_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5e2503da35cd183058eaac803c67d2d853195842 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0197_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0197_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0198_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0198_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..796dd23fa4dd060699428149477d8b06ffdc1b22 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0198_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0198_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0199_2040x1544_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0199_2040x1544_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e012a86f0691cbb12484d13b473de589177b7d4f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0199_2040x1544_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0199_2040x1544_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1544 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0200_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0200_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3f573c4136fb03a3824bf510ea6d05815aa69ad4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0200_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0200_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0201_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0201_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2654ee8b67e3630750aa1be5d7c787b9062ffba6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0201_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0201_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0202_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0202_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9ee519f4f42036ed4ad65a683ff36036562ed003 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0202_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0202_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0203_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0203_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5c853cb20d48151af755af983dd6f3ea7c2f624c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0203_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0203_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0204_2040x1256_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0204_2040x1256_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fa170dc919d3fb3ec651c2aeb95d177d35bc7abb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0204_2040x1256_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0204_2040x1256_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1256 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0205_2040x848_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0205_2040x848_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..603b2c6608dadd6ea002eed7281093265fc40067 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0205_2040x848_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0205_2040x848_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 848 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0206_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0206_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ffbbf403535dd917a86ffe78117abf941e0ce50d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0206_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0206_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0207_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0207_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..285478c298040880f28d13b0d439e2a15faa4b15 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0207_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0207_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0208_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0208_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aa4a466c69406b230d7a5466024f6248e4a2ffe2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0208_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0208_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0209_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0209_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7ea5dfc32cb71fca5787641253ac753c74c2b359 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0209_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0209_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0210_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0210_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bb43c2b144c671771e33e7d78f9446312b7e2415 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0210_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0210_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0211_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0211_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ec70e5d472189880e4490c7d71f09577c9b5800f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0211_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0211_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0212_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0212_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3c777bad8fb94de93864f8cbe2a0b03301fba43d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0212_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0212_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0213_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0213_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3370d8fc3640464f74cd2893f79bed97ce18e6ef --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0213_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0213_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0214_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0214_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..692f51b0a6e11d9361459345e1dd8af7ecc3c5f1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0214_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0214_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0215_2040x1560_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0215_2040x1560_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..48b29100803b6b2eab01391a607a9268343ae716 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0215_2040x1560_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0215_2040x1560_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1560 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0216_2040x1632_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0216_2040x1632_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ce2c9cfde65abe660d615a4b2d24dd62bbbd3a34 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0216_2040x1632_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0216_2040x1632_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1632 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0217_2040x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0217_2040x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a33b7464d4732e1485977fa5a97f7484d4d9fad5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0217_2040x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0217_2040x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0218_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0218_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e47cf6bc71dbae2387990c4357501f094aa26cc3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0218_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0218_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0219_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0219_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..919bbbd860d7b2f34835c113ce348dbe5337ffb2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0219_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0219_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0220_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0220_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d305f7f5ad4d64a314fc2210238ed518e387ac95 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0220_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0220_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0221_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0221_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..00e0aba32df06edaf72bba2f291faf8612f46dc6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0221_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0221_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0222_2040x1160_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0222_2040x1160_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fc55f96e5fc0e7f1999934c9b7b96d0f1cd74cac --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0222_2040x1160_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0222_2040x1160_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1160 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0223_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0223_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e00c8afbe829af6dc3ba46b8673f8340abac55bd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0223_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0223_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0224_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0224_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f721bd774fe6c1cb7bf4ec19c59df286f5517b29 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0224_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0224_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0225_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0225_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1b5573a08bcd9514e89462de6bb0d1399e9d9cce --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0225_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0225_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0226_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0226_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a6934b48ba68f77f0942166816233595f0116b7d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0226_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0226_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0227_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0227_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..74c1c8dfb135aeecffcbd1f7e82f21d3818cab68 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0227_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0227_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0228_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0228_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ea1aa0b9d15b517cdab6b69b8e31972c6b37cc45 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0228_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0228_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0229_2040x1296_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0229_2040x1296_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..12cf1d6e8100b38056992560d4dd752667c67499 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0229_2040x1296_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0229_2040x1296_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1296 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0230_2040x1392_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0230_2040x1392_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bd049ca3c7641a389299caacd29cf7acc7376259 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0230_2040x1392_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0230_2040x1392_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1392 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0231_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0231_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..00f42f2c274da18fcd42ad788c2ab3a0ad38cf58 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0231_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0231_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0232_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0232_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..371b7528851190e2385702f844bd48ddfd5606f8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0232_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0232_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0233_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0233_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cf707d03db814b983904f72f4cd8ec884746d642 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0233_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0233_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0234_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0234_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a7f38178e8f2376bc5aaf41c36199e06ae58353e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0234_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0234_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0235_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0235_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9704703637e63e2d1ebdc29f18e6665ba9441611 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0235_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0235_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0236_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0236_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9037b6d013b46be7eda03db7df4ddece07a057af --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0236_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0236_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0237_2040x1136_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0237_2040x1136_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9933f93bc8257cd56e1b5ba1ce8da8437a126030 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0237_2040x1136_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0237_2040x1136_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1136 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0238_1296x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0238_1296x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2e6cdff031dfb0642fcf61e9eb17427a0716e97d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0238_1296x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0238_1296x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1296 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0239_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0239_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6902a21c91455f5bdffd09c5cfd5cd4f0f3085fb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0239_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0239_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0240_2040x1832_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0240_2040x1832_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aee3dbb678b7d9946e8ae5d29dfd82f31357df98 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0240_2040x1832_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0240_2040x1832_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1832 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0241_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0241_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..737cfb66a16b46d61187e6d5d7468497c2005891 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0241_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0241_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0242_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0242_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e232d299840ef43b6b1d34961d3311f6f314d99b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0242_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0242_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0243_2040x776_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0243_2040x776_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..89066363573b680465a0269fcf887590563ee78f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0243_2040x776_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0243_2040x776_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 776 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0244_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0244_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..22b65eb4b5d92c17e07a061e1ac4d775f69f88f7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0244_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0244_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0245_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0245_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b329c604a7e83e8034880cef470ecaf321e3db37 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0245_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0245_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0246_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0246_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..35ec719743dfaebd218b54b1955fb197186087fa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0246_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0246_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0247_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0247_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..770a8bddbc0e05aa44216d27d7418ee5f61f9b6c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0247_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0247_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0248_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0248_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2b5fc6b34b16adaa3d4190274625138563fe60d8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0248_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0248_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0249_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0249_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..17569feaaa1857166bcb69da7ea737e4ab0b43eb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0249_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0249_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0250_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0250_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9a43a696eac05a1ae4c120023de20162a0491adf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0250_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0250_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0251_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0251_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a727253f21554053fa458768a5c0cc708ec2ab3f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0251_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0251_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0252_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0252_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a5cc0f96462f1910b30939aa2c16ec9a5534e2ba --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0252_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0252_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0253_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0253_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..903f55b61128711180e0c9cac6b5b5c8ccf582ab --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0253_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0253_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0254_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0254_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..28fe203b2cd65591ef849082dafbc3e8f56260c9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0254_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0254_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0255_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0255_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5cb03a69d4c88e8ac2c3eefeaf3795aeab452d16 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0255_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0255_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0256_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0256_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9b164285d57e9d36c8d3d6163bc1aadf59ddf30c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0256_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0256_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0257_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0257_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9c342b60e6823ad8b44c58a0e3765685b8f4322f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0257_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0257_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0258_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0258_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0881fd3aa06bf7363f67aa8c06631587f574c6f8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0258_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0258_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0259_2040x1296_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0259_2040x1296_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ecfa825d806783e132e77cd3e231f3e11c3961de --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0259_2040x1296_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0259_2040x1296_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1296 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0260_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0260_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8d34a7cdb90c7b0913c74cf26b405d0f579b9d7d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0260_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0260_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0261_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0261_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cdcf3fb6ed7e27fcecb9e4b234d39603242b22d6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0261_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0261_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0262_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0262_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..eb2fc1cf998aac6c10194fa509254c2b422f4989 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0262_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0262_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0263_2040x1328_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0263_2040x1328_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..29adaf788db6f49b149d178531617108b6af7c45 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0263_2040x1328_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0263_2040x1328_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1328 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0264_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0264_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5183218be3cb19899693a46dba0bc16c7e579b7f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0264_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0264_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0265_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0265_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..676f27e974a648caa171fa534f2b383814cdf9a2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0265_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0265_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0266_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0266_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..894c139ee31f28dfa2fbfeb26765967ae56a8939 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0266_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0266_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0267_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0267_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..031a58f9389d2377b2e5057a6b241279f2203b51 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0267_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0267_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0268_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0268_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7fb9ad36dca80dc51943971b69fa196dcf7474ed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0268_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0268_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0269_2040x1632_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0269_2040x1632_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..17eaa7352fb956083028cb04a203c18f35b3e2f5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0269_2040x1632_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0269_2040x1632_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1632 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0270_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0270_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dee71e4d1b06add923a3cc6fa640be854374cc64 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0270_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0270_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0271_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0271_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8c84f11e4d2b6bb8505c80a887fc84b9640f6990 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0271_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0271_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0272_2040x1184_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0272_2040x1184_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5214b879a3656c38683693de3b43810169a7d0c4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0272_2040x1184_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0272_2040x1184_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1184 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0273_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0273_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..56e8f8d252423f94f31ddfa4c2ea0a1aa490c947 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0273_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0273_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0274_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0274_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fecb92598823d8ba4a844ab50a4ecd93410d71c3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0274_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0274_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0275_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0275_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1ac6b6f4e740d8bed84e5aea4ef2a6284510ffe0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0275_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0275_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0276_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0276_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b0b3102c772504c0487d25e2ffbc4c08d84875f6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0276_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0276_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0277_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0277_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5e4371193b9cd7869890b045c7028592065f27d0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0277_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0277_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0278_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0278_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5ac6664aa5c1bbb6b757c509957eac8b3f5ed969 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0278_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0278_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0279_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0279_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6b23a4f9fe89295b12c9ca988875128276ff874a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0279_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0279_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0280_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0280_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8942bf498e027566c276f6a3f30524187f647098 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0280_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0280_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0281_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0281_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..829dbccdf23febe68f49a3fe4375ebd21c74789b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0281_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0281_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0282_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0282_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7f8d43ff435b134007ebcde0d5d23aea09194465 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0282_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0282_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0283_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0283_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..60b3f4d4f69315fb5897bbdeb5ac6fdc98b7463c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0283_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0283_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0284_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0284_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dad8a560d54f3a1e89b58c72a8bfacc423fedb4a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0284_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0284_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0285_1232x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0285_1232x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9dacbd5223bd9f02f35a685e5833d00ccc43c216 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0285_1232x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0285_1232x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1232 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0286_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0286_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0ef15d35df0647fe0926772b3e1d81f47ec50db3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0286_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0286_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0287_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0287_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4e294a4c7f4b5dd3c0a84b07140fbf997fb86602 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0287_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0287_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0288_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0288_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..323b4f962ee74f80c29bc0573f1e1e3fc74da6c2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0288_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0288_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0289_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0289_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7e7c7711c4bd09aab0cd06dca0a6a849f895b156 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0289_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0289_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0290_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0290_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d57b9945282908b4949e4753e4e9e69f919e9561 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0290_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0290_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0291_2040x1256_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0291_2040x1256_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c1cda377cfd3e15c6672e8ea1727571f533ac666 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0291_2040x1256_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0291_2040x1256_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1256 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0292_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0292_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bcb83c7c66f9d058bd9314831e1a19f148782745 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0292_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0292_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0293_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0293_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1bc9835eab9cee6a4efe079c280e076d3e1a5058 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0293_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0293_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0294_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0294_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6e83abc8e0b8f1d5ec77ce8f944e2eb629c34e2f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0294_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0294_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0295_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0295_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c21f445f7489cf0d2bea82c322f7c68412ff1778 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0295_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0295_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0296_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0296_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f7334f441cf6914b7718140135968125ffcaf5e8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0296_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0296_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0297_2040x1344_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0297_2040x1344_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..faa9e837cb7b824dd6727abff18aef0fe490bfc7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0297_2040x1344_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0297_2040x1344_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1344 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0298_2040x1224_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0298_2040x1224_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2f0aa80125044f6475b0164c344dd37ad26268a9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0298_2040x1224_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0298_2040x1224_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1224 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0299_2040x1392_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0299_2040x1392_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d28e3a7483e2e31a92c2bc6299888f6912295579 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0299_2040x1392_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0299_2040x1392_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1392 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0300_2040x1320_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0300_2040x1320_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a4d10bd06edcd7009eac1cce57c2d6ce0305a272 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0300_2040x1320_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0300_2040x1320_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1320 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0301_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0301_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5a7295b6b020717e1f2c89db18d7551f8b31a765 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0301_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0301_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0302_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0302_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..40df8ce5f0074fc03fae8aa79fb66b79e9479d5f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0302_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0302_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0303_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0303_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cff4481c110dcf34e525da3c5568b744654227ff --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0303_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0303_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0304_2040x1224_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0304_2040x1224_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6f8df99fb2ad09b98523a78b03ca9888f208d92a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0304_2040x1224_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0304_2040x1224_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1224 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0305_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0305_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..518216b0ec007e9a5348072238b081354451ac1a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0305_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0305_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0306_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0306_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8523f11babbc1078caa5af6ad3efca59c7753299 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0306_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0306_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0307_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0307_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..001929527dcb4be38e3c1533a356f7ab69dc54dd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0307_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0307_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0308_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0308_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..559e88a39e54c00718b3c02ad96a5543840d01a2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0308_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0308_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0309_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0309_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b13eeb30c67e9b0bc8fa93ec5afc0cf876a6a18d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0309_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0309_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0310_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0310_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..915fd2234fb2caab49035216f15cb751b013c2be --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0310_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0310_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0311_2040x1184_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0311_2040x1184_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9e351679a750b964931c94e5902e2f29e561bf52 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0311_2040x1184_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0311_2040x1184_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1184 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0312_1712x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0312_1712x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7c4d6b7a11abc41b316ea9ae3f6f5a8f33d2a160 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0312_1712x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0312_1712x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1712 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0313_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0313_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..10d7a0bccbc8235c0447a9f442f3d99d3eb15874 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0313_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0313_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0314_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0314_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..156f2dd65eb42c5684b68cdc0eacbd8c6a565de4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0314_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0314_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0315_2040x1200_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0315_2040x1200_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e686707db82fab209291900589b9f377510178d9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0315_2040x1200_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0315_2040x1200_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1200 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0316_2040x1328_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0316_2040x1328_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..290fdf8f3c50dfcb0cc22e5927748542cfbe89bc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0316_2040x1328_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0316_2040x1328_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1328 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0317_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0317_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3c85e26787f01c3b222d2e65e3d23b2a492c62f9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0317_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0317_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0318_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0318_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1098f023d8207ca94113e451f5770e5b57bc0658 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0318_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0318_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0319_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0319_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4dde4f44cfbad75abdcb3d010a87a635ec7b5c12 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0319_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0319_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0320_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0320_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..575432cfe269e6bc78bb0e23f1facd6a96136f36 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0320_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0320_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0321_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0321_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..01962f3574b33d09ebcc213c0523c209ae13a17f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0321_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0321_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0322_2040x1640_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0322_2040x1640_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d1f850ec72378725cdec98416470397055967b18 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0322_2040x1640_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0322_2040x1640_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1640 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0323_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0323_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f333dcf4ad0771fa1972d25bfce0959ea5418009 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0323_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0323_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0324_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0324_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..91e6a86822a2338839f831c779301499c857c7ad --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0324_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0324_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0325_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0325_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..00ad168c6f040185534893219560b01e5119daac --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0325_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0325_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0326_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0326_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..61648d2ec73b97d7bda45eb6113af0f9f78cd190 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0326_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0326_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0327_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0327_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..48ad0f691d6b6410feba86dad5ae9045b1dc5a80 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0327_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0327_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0328_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0328_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8320d3bd4e7c1bf913573f0978518d64473abb3f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0328_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0328_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0329_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0329_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d3a2bfad2359d7e582d3cd44d07786e6dc7e78bb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0329_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0329_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0330_2040x1136_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0330_2040x1136_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ec94c47d6d89417bf856fd675c0d3671dc751a74 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0330_2040x1136_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0330_2040x1136_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1136 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0331_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0331_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..304d5aa7fd35966fb1219d2197434e417bca1a93 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0331_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0331_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0332_2040x1224_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0332_2040x1224_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f6b7efd5ce9df722133c4d8b3aec8461ca580715 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0332_2040x1224_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0332_2040x1224_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1224 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0333_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0333_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b44d8051ddd9de787686e56fb0296b9b1aecf98d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0333_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0333_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0334_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0334_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6251f8e27c1f260125219ce04836fa32993d690c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0334_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0334_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0335_2040x1272_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0335_2040x1272_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e21ac7fc974b42bc52c1d61e9c02710de96ff4b2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0335_2040x1272_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0335_2040x1272_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1272 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0336_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0336_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3eb00b9ae84706864c69c7d1344ffdd153a35bee --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0336_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0336_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0337_1632x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0337_1632x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9fda165445193a0e30dc2efab8a4a2e397c9fa5f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0337_1632x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0337_1632x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1632 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0338_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0338_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dfc524116a58f717427629304356a543d3a742fc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0338_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0338_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0339_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0339_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..38ddb17e5b5dfed30c16041cb0f05cd8be43d72d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0339_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0339_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0340_2040x744_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0340_2040x744_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6a8955bb0b1d8392ac41e63786973acbcfda3b7b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0340_2040x744_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0340_2040x744_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 744 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0341_2040x1440_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0341_2040x1440_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e5a6cd747974c40527b33643b536b28ad6291b61 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0341_2040x1440_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0341_2040x1440_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1440 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0342_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0342_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..848c357948bbb0d699dcfca5cf146c52dc0a4fd8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0342_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0342_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0343_2040x1200_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0343_2040x1200_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c07a8406561af5dee8917d0a32bd22eafadb8f8c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0343_2040x1200_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0343_2040x1200_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1200 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0344_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0344_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7864b9cf15ad0d1874f217de4df88385d9775472 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0344_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0344_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0345_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0345_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f16af4d2bcb2c6bae5e28a4fcd87bc93d8b59dd2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0345_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0345_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0346_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0346_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7e9cdd7b3206141a87c4542c0ba6dea509e6ba8d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0346_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0346_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0347_2040x1800_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0347_2040x1800_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a21c87fe2d377516918127e6e86ac2c734e9def1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0347_2040x1800_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0347_2040x1800_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1800 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0348_2040x1256_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0348_2040x1256_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4b25bec11c62b6e808a65877b7593659041f6a76 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0348_2040x1256_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0348_2040x1256_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1256 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0349_2040x1392_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0349_2040x1392_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a4d5bc4061cf4baa00d53154ef0c536abc3e8f5d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0349_2040x1392_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0349_2040x1392_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1392 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0350_1112x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0350_1112x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1e0d608cb9004edec5a74cf3b026ec00e7368f6c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0350_1112x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0350_1112x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1112 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0351_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0351_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..81102feb33aa1b63836ff16d64d5022e6651861e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0351_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0351_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0352_2040x888_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0352_2040x888_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e8f91bf4ebb46ae3915fde55e2a3af2844b703d3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0352_2040x888_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0352_2040x888_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 888 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0353_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0353_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..097c7ffda95ed54a77ab01623ea38170f30763b9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0353_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0353_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0354_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0354_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8fe76277e0990e0c3027c65473dd01a90763b0e2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0354_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0354_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0355_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0355_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2a62537cca6602b3b9d49c3f44cbf6b64ab78e54 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0355_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0355_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0356_2040x1272_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0356_2040x1272_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..de548614d90692bd6dd5f7c49cc346ad1485b1a7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0356_2040x1272_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0356_2040x1272_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1272 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0357_2040x1176_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0357_2040x1176_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f2901256fe75ca3e8236438aa60d1a68980756b8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0357_2040x1176_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0357_2040x1176_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1176 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0358_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0358_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bbc8e61cee1c7dac872bcfb488d7b3684e6dcadc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0358_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0358_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0359_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0359_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..014c7c18cec8a13ae558e89ecf717721f3423a19 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0359_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0359_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0360_2040x2000_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0360_2040x2000_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f642a4bb707952aa962f174dc7263ff57a80b61c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0360_2040x2000_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0360_2040x2000_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 2000 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0361_1536x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0361_1536x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fb779e12584906ece2047c2d5a681fb8306152fd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0361_1536x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0361_1536x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1536 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0362_2040x1464_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0362_2040x1464_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..85b6b069b25d4d8db13690c0de0f187edd5f1fd3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0362_2040x1464_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0362_2040x1464_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1464 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0363_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0363_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dff04e4391835ccd6e86fcec4f6f3eb3238bcf78 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0363_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0363_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0364_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0364_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7b7ad66f9b295b1bcc621e4f49d683cc75d42219 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0364_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0364_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0365_2040x1208_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0365_2040x1208_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9c250273c54839b66ae9a1c3dda5052b9150c002 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0365_2040x1208_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0365_2040x1208_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1208 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0366_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0366_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fbaa81b4499dc027cb87f7c7541c702e6c20d9e0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0366_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0366_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0367_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0367_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b9001c2734c42623e5499f3400be435f9962bf4a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0367_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0367_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0368_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0368_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c99466da8a7e05163a9b4f561cc24fa94be26535 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0368_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0368_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0369_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0369_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..68d386b80bdaa5b52a605858dce3e7d5de4953f3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0369_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0369_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0370_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0370_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..747c7f891077f511db70de181c86c489c4954a25 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0370_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0370_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0371_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0371_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9e90bef5994b951ce9b2783fb83f4e3f0ec108be --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0371_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0371_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0372_2040x1136_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0372_2040x1136_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..63c36397af925d64aefd06cc0aa1c09145e33a5a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0372_2040x1136_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0372_2040x1136_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1136 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0373_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0373_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..73c79765b7cfe9a80df19e80e4d76816d567e27d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0373_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0373_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0374_1632x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0374_1632x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f3eca0a92e1e422a754627ee745f032d7e1ec7ad --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0374_1632x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0374_1632x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1632 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0375_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0375_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5668bca90541d4e175cda47039f946e79a9f84d1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0375_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0375_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0376_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0376_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7049425efd15c374fede004df4e07ee72f3b9f1b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0376_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0376_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0377_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0377_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ee19ccce9f49765260b44f0206a47c6c97459924 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0377_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0377_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0378_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0378_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..00aacb4176dc436cc0f06108e15210b23dd38479 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0378_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0378_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0379_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0379_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..13a4d6fca925b45a4e2dcaeabbc679bcbee89954 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0379_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0379_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0380_2040x1272_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0380_2040x1272_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..50c356019aa480ac1fe633a2823b1550e12b55be --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0380_2040x1272_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0380_2040x1272_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1272 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0381_2040x1448_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0381_2040x1448_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fdd0ec254a20e557c520a34a1574623eb38e840a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0381_2040x1448_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0381_2040x1448_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1448 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0382_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0382_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a22c9af8df748a9d74872cd92bbfa5794e16aa63 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0382_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0382_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0383_2040x1512_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0383_2040x1512_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5815c3bc80e5f7b8bb8cba1a97e9c913fcf44890 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0383_2040x1512_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0383_2040x1512_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1512 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0384_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0384_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0b8c676532f9a8d5ad472f395717b6649f2ea2c2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0384_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0384_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0385_1440x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0385_1440x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ec6d2df8d73199caf6968709f15d473d86e1b7bb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0385_1440x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0385_1440x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1440 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0386_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0386_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2dc6278d07cccb6ec1b3cb24ef667d89e1da3b85 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0386_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0386_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0387_2040x968_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0387_2040x968_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..abb2ae202f8a4a7e916f230e73cfe97d5514c0c1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0387_2040x968_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0387_2040x968_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 968 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0388_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0388_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..98f392d72884bf0c0d55faac5594e2df21da5a10 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0388_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0388_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0389_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0389_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..23919c59f812bc502a96510301502b2db26c77a3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0389_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0389_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0390_2040x1304_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0390_2040x1304_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..45cffb9f74c7cf4c0856c4c04d8d6af13aeedc11 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0390_2040x1304_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0390_2040x1304_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1304 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0391_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0391_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5a0cc20972bf99dbba414dc268c9b1ac8c0184b5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0391_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0391_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0392_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0392_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..73835725e79b2fb72a6edfec3b22de2a1541e028 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0392_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0392_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0393_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0393_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c915da6ebefc694029307918008cf6beada532e5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0393_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0393_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0394_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0394_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f23bfe8d72c17e13e2208e8b940142c4efd4e4c6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0394_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0394_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0395_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0395_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..11a374cbca0bfc146aa4294a5a953fd0ef46d5ce --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0395_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0395_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0396_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0396_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..133f449790820f1482e25a081337e68263841e9a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0396_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0396_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0397_2040x1256_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0397_2040x1256_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cb250f84b4bceb827aaa7451cee228473cf2b5e5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0397_2040x1256_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0397_2040x1256_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1256 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0398_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0398_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ac9fa1f52a285caa013bde879eaef037b5d583da --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0398_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0398_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0399_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0399_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4649081c594f6136de9610e13272fa75d3bbe80d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0399_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0399_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0400_2040x1280_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0400_2040x1280_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c6bb13fa0adc72d8d83d3f6ee8d112538bc31eb8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0400_2040x1280_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0400_2040x1280_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1280 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0401_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0401_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0fe0da7fcbeea24d7deaa60de2b6b8604874c6ec --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0401_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0401_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0402_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0402_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9c811d05713ac0b57f257d171e7f1a2b74a938ca --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0402_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0402_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0403_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0403_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f28c250ce644cb5b416e0ba78a2a799e5ab682a7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0403_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0403_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0404_2040x1632_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0404_2040x1632_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aed25eb3d6233917e6958d5851d22138f52fca77 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0404_2040x1632_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0404_2040x1632_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1632 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0405_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0405_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2d33d7d6baad9844aa3f61867a87d3ce5d6a6ff1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0405_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0405_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0406_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0406_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..33fd852f1993f436cb0af8993579f1050c901d76 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0406_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0406_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0407_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0407_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..04834dc4be519f1da6fcd63c3e52e1add7bd5e83 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0407_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0407_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0408_2040x1464_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0408_2040x1464_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fadb1b302a3af0dc1849ba86bf825f6e079ea5c1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0408_2040x1464_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0408_2040x1464_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1464 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0409_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0409_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4114eda7d289d8e5404f2d76e558fdbd9649748c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0409_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0409_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0410_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0410_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f8f35d2eecd55425bcb55747d296577b7f616ea8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0410_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0410_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0411_2040x1256_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0411_2040x1256_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0a2f899ac1e51f7cebd289403c45a2bbcedfb398 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0411_2040x1256_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0411_2040x1256_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1256 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0412_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0412_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..eb4ed0c57b46d5d367b8217bd6608c7f09d641c4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0412_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0412_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0413_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0413_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6816bade98f324a4b207d4f098e42e2ff9c1c5e9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0413_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0413_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0414_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0414_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d6e888662c973bee9a0c51544a5312dcc1652327 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0414_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0414_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0415_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0415_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..317a1dbca7fa2262f3a580650ff5aefc4958ce96 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0415_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0415_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0416_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0416_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..69198764abc4031909dd73390e56ef861193086a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0416_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0416_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0417_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0417_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..997f7eae78625757fd4b8e72725baeb6d4a8295e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0417_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0417_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0418_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0418_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0d8de125b7f3d4485863dba264d837491a8b4efa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0418_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0418_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0419_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0419_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..98abf733d880a2eb911b0171dcc3b3c8d6d13987 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0419_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0419_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0420_1536x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0420_1536x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..347f414827efee788d49c08c33ae994fe3b77b5c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0420_1536x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0420_1536x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1536 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0421_1520x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0421_1520x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8c01ddf92b2b0861193c3515eda45c2fa4e86b56 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0421_1520x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0421_1520x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1520 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0422_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0422_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..899c6bd40ec2be1f99c3d7e8819f0ee6417a1d1a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0422_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0422_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0423_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0423_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d81e5052b8f16fcf0c05dac77e28ea76bf171a40 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0423_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0423_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0424_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0424_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..27328d52d8ac211fd50c5b4e232446e3078320cf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0424_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0424_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0425_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0425_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e956b07e337b4e7f359bbf1559fe8c00a3044eb9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0425_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0425_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0426_2040x1160_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0426_2040x1160_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6d451ca04dd4a1f1e52edfe4f346674c0d98864c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0426_2040x1160_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0426_2040x1160_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1160 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0427_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0427_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..40de8dd3bbc18feca72b4ceb5f0d05d3f537058c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0427_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0427_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0428_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0428_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7292d602ae6e9fa2147b1f56069587ebe230fe37 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0428_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0428_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0429_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0429_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f102c9f46c7d685a74a239c9220260b722abbf60 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0429_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0429_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0430_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0430_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4fd2b3d12bb6e23c7396c3fadd4b58a85fc7e12f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0430_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0430_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0431_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0431_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2a9ebb155b10be9a2967d98c6d98a27c2fb72362 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0431_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0431_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0432_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0432_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..121a5ccfd3d394aaa54a8394843bdfc7fd70007d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0432_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0432_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0433_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0433_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4f6ad4ebb20454b13380127d9adc3dc360dabbf8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0433_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0433_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0434_2040x1224_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0434_2040x1224_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b7ef0f6fbf9f7bc61ca732e73371325a1642ffc4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0434_2040x1224_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0434_2040x1224_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1224 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0435_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0435_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e64458c0d1191acabc955bd8638df94335acad05 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0435_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0435_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0436_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0436_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..76de6c08e5ef0b2fc309170103f288ce80d1548b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0436_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0436_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0437_2040x648_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0437_2040x648_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2a2b2938a1b4a7b8e283b899d940467c5afe5e6e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0437_2040x648_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0437_2040x648_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 648 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0438_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0438_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..144332291349f1ffb0c682f65f261d4f14af37e0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0438_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0438_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0439_2040x1392_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0439_2040x1392_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5a6026a0dbc25f4d047137be9a2f3097d51ecfe2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0439_2040x1392_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0439_2040x1392_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1392 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0440_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0440_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6cdadb4a29c1122ad2fbbe5e52a314ecdd4e69fd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0440_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0440_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0441_2040x1184_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0441_2040x1184_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7d27982e869e8cea32f949d74c195b480df75c88 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0441_2040x1184_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0441_2040x1184_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1184 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0442_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0442_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d921097ba20aa9e8b67dc72001828daa5559429f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0442_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0442_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0443_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0443_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6958f615aaf6f2c8009c09dfc1c3fcfb80aa4926 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0443_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0443_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0444_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0444_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9cd51f9a81033e551a35d9cf041339c811bdb9b9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0444_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0444_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0445_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0445_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5f904ecc7617b672f74034152d0093f14c7309bd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0445_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0445_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0446_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0446_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..867be7000f297502e730f69c7756986bf7314905 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0446_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0446_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0447_2040x1688_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0447_2040x1688_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..76d3bafdd718f15f1df9551247caf2fcde4e0cda --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0447_2040x1688_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0447_2040x1688_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1688 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0448_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0448_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e2131ee5a5455283b8051083c385f536e4683dce --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0448_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0448_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0449_1368x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0449_1368x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4a31e67264cac627cf6d640bd0e06394728cf1c2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0449_1368x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0449_1368x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1368 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0450_2040x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0450_2040x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a8ec284be0b80eabd96c95f38216efb68d24e08f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0450_2040x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0450_2040x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0451_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0451_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..66a837847f7c7ff7efc0f39d2ce8dfba0b1db38f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0451_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0451_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0452_2040x1424_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0452_2040x1424_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..82e8b4d3f500f9f767dd45b70973bd7e88a35ca9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0452_2040x1424_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0452_2040x1424_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1424 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0453_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0453_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2cff372153e237c817a8636db20c73ed3e7b95b9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0453_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0453_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0454_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0454_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..70a61f3a43ca9bbfa55b105d9bc714fb069d4075 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0454_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0454_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0455_2040x1128_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0455_2040x1128_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4c4dccc6bcc3bb4d605f811facda151905033608 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0455_2040x1128_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0455_2040x1128_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1128 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0456_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0456_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e686202326d9ae2e04e0efee1f23e08e85fee47d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0456_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0456_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0457_1160x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0457_1160x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c1d5475e61f88f52c5a26449562d78f72e21dd40 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0457_1160x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0457_1160x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1160 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0458_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0458_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..78be23430ddb5adb4f1554e9a456c0fad910cb06 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0458_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0458_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0459_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0459_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..43cf5bf3d4c94307941eeca15af1883f246dff13 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0459_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0459_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0460_1944x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0460_1944x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..34600abe4d09ce9c2b8e1fc4f46e19a1daeb186a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0460_1944x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0460_1944x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1944 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0461_1440x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0461_1440x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7e90481049fab810a251b9029768b498ab9510e6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0461_1440x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0461_1440x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1440 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0462_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0462_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7c7e05d17094a261a5f96afcbb479b5088bdf145 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0462_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0462_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0463_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0463_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1b8a22f9382210d7740b840ab8fa53fb08988101 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0463_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0463_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0464_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0464_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..47e77acc38d384959a1b14cbe42edcc3b8547008 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0464_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0464_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0465_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0465_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a631ef6ecc8c2ce28b0c624164883f5aeffbf211 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0465_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0465_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0466_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0466_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1ebc6485886386a52f100e2f150b42266376d553 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0466_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0466_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0467_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0467_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fe8f725e44e36c8e5375ddefaedd582adbc5d6c4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0467_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0467_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0468_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0468_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ef632883caf4f843ea7a87cf738ba4d7f5eb61ba --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0468_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0468_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0469_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0469_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..432b682820c31ef9e0a28d07c05cccd7fa5e3f4f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0469_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0469_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0470_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0470_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..52f2ca6abde6378fce2b5bf86c9af36a4b2129e1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0470_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0470_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0471_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0471_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2c78da4793686776a6c4c14cce53a53fe3dfdfef --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0471_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0471_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0472_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0472_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..43f7fd1219302432c8ce1c1165f05a6c0f81d860 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0472_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0472_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0473_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0473_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..850fa6c7eb220d7767434fccc82675514024a215 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0473_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0473_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0474_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0474_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..df91d9089c5d3d1c870ffab3cf41802f31a2ffe7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0474_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0474_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0475_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0475_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1ea20d61f95960c7cbe86ab69865461444912baf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0475_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0475_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0476_2040x1448_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0476_2040x1448_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..32ed77121902fee87160c03b3c4f37c0306e38b1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0476_2040x1448_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0476_2040x1448_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1448 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0477_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0477_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1d863888101e71d86007c374cc552e3d0ad8befe --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0477_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0477_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0478_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0478_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6d38e3ed452863865a7094efbcc24273db64cb01 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0478_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0478_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0479_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0479_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4980e30cb30108c4f759584a298b1115635041e3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0479_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0479_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0480_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0480_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e716ea3c6f8bfb2ce19701f3aae44d5b940fa6b0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0480_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0480_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0481_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0481_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bd2b4808390096b0621edeff7c5fa633c6523c9d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0481_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0481_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0482_2040x1488_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0482_2040x1488_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9ac95c3d4ebd29846fe65576c60d2f15dd33803a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0482_2040x1488_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0482_2040x1488_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1488 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0483_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0483_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..52326b86f60ca214b826e997d3f80b209d54b236 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0483_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0483_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0484_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0484_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..295ddc624da8ebe54dd16a4a2e30fd84a86f3a79 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0484_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0484_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0485_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0485_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..382ec12561b2c4c9f0acec44e597d1523c780ce1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0485_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0485_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0486_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0486_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..20425bdaee116db7afa2697d9f83f2122a96ba71 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0486_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0486_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0487_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0487_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5438365e06e3f63d4fb18687538898386061d9ef --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0487_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0487_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0488_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0488_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..401a0f2a3fb765f4ad4904ef3c73910f73a2a700 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0488_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0488_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0489_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0489_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7d86ad1fe0a41ad9b2b7289acbc726d835df9c13 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0489_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0489_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0490_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0490_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..44dad215e7324567498a29ce40f779c6eb9cf7d7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0490_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0490_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0491_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0491_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..354d481c8f2d89ad956260192becaf1dec556e84 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0491_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0491_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0492_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0492_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..69ab8f83e844218c8afc5185b9c631bd52e0f67d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0492_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0492_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0493_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0493_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f6028fb7b4eb2e187536de1addc31d03c5f4793b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0493_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0493_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0494_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0494_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cc6a6d34fba40c31db7c1d96dfbdb92b8725ff94 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0494_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0494_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0495_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0495_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d9eaf81125d1382e78ee4619676aedafefd18b54 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0495_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0495_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0496_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0496_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6a366693cfacb7d76ab7f70e6a51abb905e22658 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0496_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0496_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0497_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0497_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e4eb7b09f768af6887d2ce644da84281b85ad7c6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0497_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0497_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0498_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0498_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..20518c0133774523f5710fafb30f1590eda5b4e8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0498_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0498_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0499_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0499_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..db90b2e0f9d642721557a69ff7c6393b93a54a47 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0499_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0499_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0500_2040x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0500_2040x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0e74914d5ea4d33173f6cb053fe34d0dd23009c3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0500_2040x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0500_2040x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0501_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0501_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9451a13073a768f0e24c6c398fdf4e9c269d562f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0501_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0501_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0502_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0502_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4e19525fadd3cc91004f5fb200dd84efa6726c71 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0502_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0502_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0503_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0503_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7e724066fe76fb5bf49366e62a43173fe5b6f168 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0503_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0503_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0504_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0504_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c5adf397579e1a96901cfbed9fb090d358cfede0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0504_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0504_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0505_2040x1136_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0505_2040x1136_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..475535968cf94f1097b7c38b622e6f9f43c666ef --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0505_2040x1136_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0505_2040x1136_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1136 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0506_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0506_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..02c23077474f803814bf2d0b1304ed0f298e0ed7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0506_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0506_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0507_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0507_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c4d3d270eafffa3382eec93c08592daa129591a7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0507_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0507_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0508_1368x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0508_1368x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7c879a592ecdfbffa2e68954587625fcdff3f7c9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0508_1368x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0508_1368x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1368 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0509_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0509_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2e92b8259ff9e935af500fa2400ea22e6395ee1a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0509_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0509_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0510_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0510_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..27287a82f8ef42b8f9e5a1bf4503ecf77062a2a8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0510_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0510_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0511_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0511_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..da358b8d50141b8ec6711ad065f607da67166498 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0511_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0511_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0512_2040x1448_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0512_2040x1448_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..53cb350db9313f19209646ad0993a9ea9ea6b437 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0512_2040x1448_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0512_2040x1448_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1448 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0513_2040x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0513_2040x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2e85221999bcc545e4791fdd9392d3a31b3e6973 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0513_2040x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0513_2040x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0514_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0514_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..46764e5256144c647489623358e5175fa0fbb743 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0514_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0514_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0515_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0515_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fafea8eb7cce629b047afe6ef8e01bdbd9cc198b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0515_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0515_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0516_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0516_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d327a7c518344b0687a0be5826ecf9604e93a673 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0516_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0516_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0517_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0517_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d39edc37860df937866958326ace0325a508d745 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0517_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0517_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0518_2040x960_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0518_2040x960_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fc3b00bb9cbb0a8929062529ff806e20e3d79f83 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0518_2040x960_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0518_2040x960_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 960 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0519_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0519_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ac09b45f4511b227f385cac44f32413a342e0ab6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0519_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0519_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0520_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0520_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1626ff153f16200d38b7f5fec660b1af88cf7191 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0520_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0520_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0521_1368x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0521_1368x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aa9df2b42d54580ceff60d77b54d579bd4ce2957 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0521_1368x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0521_1368x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1368 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0522_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0522_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bdf29e54d87b10bb637b738fa3b720e2d439fe51 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0522_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0522_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0523_2040x888_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0523_2040x888_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d96a4c6125bb71b5e4cc44ecca56300befec11c7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0523_2040x888_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0523_2040x888_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 888 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0524_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0524_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fa3f6070d0c8e717cd7420ab2fe9a30a7b4c1237 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0524_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0524_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0525_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0525_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ad21c499130f691f71dace509d37ea526484f74e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0525_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0525_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0526_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0526_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7c0d59d42bb67f6d4e538afbbda2e7909f6f3048 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0526_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0526_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0527_2040x1040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0527_2040x1040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..863a4137df36c1fc09cb6334e8379727ff892a09 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0527_2040x1040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0527_2040x1040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0528_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0528_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0e7e230bac10e5cbe9abce62317f2c539a9a0f2e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0528_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0528_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0529_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0529_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..678be433c39d4ce3cf11f63e5fdc34145ce865df --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0529_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0529_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0530_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0530_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d75f3f7112b55bc8a33c34d3e0d27d809a8a89f6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0530_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0530_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0531_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0531_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..17da6f5f2c2e3951e72854059575b4e0705c889a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0531_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0531_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0532_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0532_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..12223726a0de94e3e122dbaecfc18454f378e554 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0532_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0532_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0533_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0533_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3b32f6b5c5d3f6a359b4a85020d23a77eda04704 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0533_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0533_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0534_2040x1224_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0534_2040x1224_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2815e0649fc53ec5b53bf6f9d74e01618bd125eb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0534_2040x1224_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0534_2040x1224_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1224 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0535_2040x1280_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0535_2040x1280_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7451014ece663b15ea87efc98ce807b888718036 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0535_2040x1280_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0535_2040x1280_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1280 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0536_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0536_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4fe703806a987f20f7591fdace85a1b8369ef147 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0536_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0536_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0537_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0537_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bb6c03a631a931952705cb4290b6ea4edf8da6e4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0537_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0537_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0538_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0538_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e3afcc54f8a0ff1e42f54fd7ee4a599fd1680a59 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0538_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0538_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0539_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0539_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3567f00972a1212f6f2d7b1eb7b53470d1a13e8c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0539_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0539_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0540_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0540_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6fbd9a5ab624748ad29e0fc814acc2053dd09990 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0540_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0540_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0541_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0541_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8d4645851c9f47708b1ed37a18a95d5f5fc4a13d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0541_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0541_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0542_2040x1136_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0542_2040x1136_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..04610ffe5f09b74d8341bc41bd0e10b7e2248259 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0542_2040x1136_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0542_2040x1136_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1136 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0543_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0543_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2618b222da2818dff756a48a2b772e2973cb7a91 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0543_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0543_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0544_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0544_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1385edecf1d46a434fa2517ed7e79b0e5ef645e1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0544_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0544_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0545_1992x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0545_1992x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..36badceb4334ded4a02675cdda2f1b2ae6a831af --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0545_1992x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0545_1992x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1992 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0546_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0546_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..284ecbcf7dae2bb6f811bbfad6395db1a0c2691d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0546_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0546_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0547_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0547_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d1cda3db8a96f571f779beb9f5c5eeb5b84766da --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0547_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0547_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0548_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0548_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f76bfb63b3039f37fe63c852d47f4a5c714ed960 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0548_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0548_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0549_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0549_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..52555bcbcb24fff2dc2e120672527f313ba8e8f7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0549_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0549_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0550_2040x1224_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0550_2040x1224_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..753f20f7788e766e3fc3c6d521169a682f03d6f8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0550_2040x1224_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0550_2040x1224_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1224 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0551_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0551_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c09fe9ab63f8bc37e7d13d023cd6781e546088f8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0551_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0551_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0552_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0552_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..30e9f65b14253f052426af7aab86540697062e72 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0552_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0552_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0553_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0553_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b0146e134ef817451ca4db44729912b1287c98a4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0553_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0553_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0554_2040x1328_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0554_2040x1328_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ab85c43ea15d725100f28c68e901359fa0fbecdc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0554_2040x1328_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0554_2040x1328_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1328 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0555_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0555_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..89f6f46d1c635d70eb3c34f50c795e0d337dd613 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0555_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0555_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0556_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0556_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7bfc791d385d387521b68bce400b85b8b6dc5310 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0556_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0556_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0557_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0557_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c7e727bd62888e50cd685258294205924f621168 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0557_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0557_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0558_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0558_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bf7d8c748cfd960c5d03cc998e1c3b65724b1c83 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0558_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0558_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0559_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0559_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e7eb2afd31c30ddef717e9b28286b5c73feae120 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0559_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0559_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0560_2040x1088_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0560_2040x1088_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a04b05e4d2f9bbbe826c16f602e38d72385380a9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0560_2040x1088_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0560_2040x1088_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1088 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0561_2040x1176_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0561_2040x1176_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f5a151735a9e9bff79644eeb40b39b35c1ca9870 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0561_2040x1176_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0561_2040x1176_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1176 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0562_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0562_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2d02c401f4ec78155f7c932d2e234f37ca954c1e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0562_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0562_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0563_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0563_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f2c5f764e467e5b151a99be2e25b0aecdfcdeffe --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0563_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0563_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0564_2040x1608_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0564_2040x1608_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5f8dbd9a05b35592096d685c90456aec8850e2f4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0564_2040x1608_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0564_2040x1608_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1608 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0565_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0565_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f6eb4ef48251661e0c0a1bd77be402d21a592255 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0565_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0565_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0566_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0566_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2ea15bb1112012330607069c20fcec7819918baf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0566_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0566_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0567_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0567_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aa9ecf502277d8602a30b494fc268b837aaca9e7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0567_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0567_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0568_1824x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0568_1824x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6bfc1d8b360b011081510bd68ef6f663eed9fac8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0568_1824x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0568_1824x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1824 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0569_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0569_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4ad4f87d2be8f8fc9b4c5efa138d1764de3f1fd9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0569_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0569_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0570_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0570_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ed6ca44e74384c99498fa8cda8e25a2be5b1f3ff --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0570_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0570_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0571_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0571_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a6345064517b88967e189f2983d33adaebad2abb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0571_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0571_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0572_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0572_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7b4b1d6a79a66ed318063f8ff104a50c79663a64 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0572_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0572_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0573_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0573_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..67c07e1d6df9f8d61d7a9626640bb2c1fd498f07 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0573_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0573_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0574_2040x1328_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0574_2040x1328_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c7b4a4563c519e7cad13dd8dac79a32d9a6b30c0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0574_2040x1328_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0574_2040x1328_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1328 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0575_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0575_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1902a8a429c44c11b926c5311030fd239697022b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0575_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0575_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0576_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0576_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ec66efbbfbe9ef05bfef702e7e0741c03eb7e7a6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0576_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0576_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0577_1344x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0577_1344x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..63cb0ca98ad14aa6e44816b79f3af98cce15ddd3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0577_1344x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0577_1344x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1344 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0578_2040x1248_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0578_2040x1248_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..56210379b443a028eb7ad8388889383139b0a78e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0578_2040x1248_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0578_2040x1248_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1248 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0579_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0579_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9738f5d3b341135a7e2177f7a24807c3c97f4962 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0579_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0579_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0580_2040x1344_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0580_2040x1344_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d218f207393d2be72496815ecb4ef021084071d3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0580_2040x1344_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0580_2040x1344_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1344 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0581_2040x1064_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0581_2040x1064_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7cbdd52165e0143cbda1b1af2bea1714d9063ed2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0581_2040x1064_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0581_2040x1064_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1064 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0582_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0582_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fd535864c2f275cc07af9c4fe7fd289fcbfd761d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0582_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0582_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0583_2040x1184_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0583_2040x1184_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..18101088bf595a304fb3eefc640ddcc2757fab68 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0583_2040x1184_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0583_2040x1184_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1184 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0584_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0584_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..87c5358347f540fa157466c5d218616177f14b9a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0584_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0584_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0585_2040x1248_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0585_2040x1248_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..19eda6e6d3724fe418a8b192be922d446c759009 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0585_2040x1248_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0585_2040x1248_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1248 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0586_1424x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0586_1424x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a971dea3d6fe8a613463527835b517750da879a4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0586_1424x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0586_1424x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1424 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0587_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0587_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9a4960fa63052229abbd5412b9a507f1c3b8ba3b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0587_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0587_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0588_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0588_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..413ecb88a37586f1d8ec202031bbd7350971a530 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0588_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0588_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0589_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0589_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a0395c6b4f957ae2df3216e20ff5841e875eb994 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0589_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0589_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0590_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0590_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b1435751d69d0b2e24cb47bf2e1ebb3b6b36c1fe --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0590_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0590_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0591_2040x1208_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0591_2040x1208_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d13d3b1902c839cfd90c424cc0ac020a81b89f55 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0591_2040x1208_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0591_2040x1208_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1208 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0592_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0592_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d2e8bf3be83ad614397b5a0606b47a380f4d1aab --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0592_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0592_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0593_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0593_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9a4a12c965a2b2b67d68f1153be778b526cfaf1b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0593_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0593_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0594_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0594_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b05a3170730749c16b4a6809ca60f86ba64cdcb6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0594_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0594_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0595_2040x1424_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0595_2040x1424_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..587c9fba8415f134dfb6e94d86b92a1194e9a549 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0595_2040x1424_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0595_2040x1424_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1424 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0596_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0596_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..46392fad643abc879c1f7f314249f5ca4678de07 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0596_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0596_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0597_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0597_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..510ca99f9f54304b72abece459e71fefdb6ed835 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0597_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0597_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0598_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0598_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7e9ef7e1d6845c22c2f7c81a24831b05660fbd8a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0598_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0598_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0599_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0599_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..18b87bbf38997c90a63ae97ef6989ba20d095d58 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0599_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0599_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0600_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0600_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d12f9d464e0cb57f36f903b09b7494537b4aa1d6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0600_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0600_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0601_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0601_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..23e57c1b62e34bbb62bf4cb8f32d26a2bde1f773 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0601_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0601_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0602_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0602_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..50f01c193498a29ffd7f6437be952204058cce18 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0602_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0602_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0603_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0603_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f5d0974d0224c2c345e25eaed47c44fe9d0f6d54 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0603_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0603_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0604_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0604_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ec3acda1a441e8647245063da848b18135fb0479 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0604_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0604_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0605_2040x1424_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0605_2040x1424_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..04454cfee4ce17b3ed8f68915b1b30f651ac499f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0605_2040x1424_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0605_2040x1424_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1424 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0606_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0606_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c99aa9d9bcaad2d1e363a301e1f8f7bae4dc00d8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0606_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0606_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0607_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0607_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7373f0861a8f248e06fc452bbf2d71fec0d59610 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0607_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0607_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0608_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0608_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..78beac08a19a9aa5ed9186b866d1ced096d1d27e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0608_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0608_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0609_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0609_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1c4c97898b18343e0feee9428bd28265c057a693 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0609_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0609_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0610_2040x1440_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0610_2040x1440_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5aaa212e482b4670bf07aff2a7a4a3a30d52e38d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0610_2040x1440_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0610_2040x1440_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1440 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0611_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0611_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3175dfd15b5001a3ae74c4807ab5f7e50cf82fc9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0611_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0611_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0612_2040x1184_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0612_2040x1184_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2eb246dfdf3f35afb6aafec80b0b5754a9042e5a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0612_2040x1184_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0612_2040x1184_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1184 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0613_2040x1584_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0613_2040x1584_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..37069746e2e57d0c5f29768d3e5312e1c8e92eeb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0613_2040x1584_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0613_2040x1584_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1584 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0614_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0614_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5561b3d1263b97fd97c16024b5a57712b6bb8226 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0614_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0614_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0615_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0615_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1068c33272cfda6c17dce9c0b8898444e555e05e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0615_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0615_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0616_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0616_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..24ed2f5c200fb55eac32c4cfbbe62e7f1a7fa3ba --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0616_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0616_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0617_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0617_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1cf5feef1612754456d29bf4a17e56b17cd44535 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0617_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0617_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0618_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0618_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bec0a872bb3d76777de41d9151e5a55584cf451f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0618_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0618_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0619_2040x1520_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0619_2040x1520_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..635d79dea4af4257138430a1007fb6edd8ab9d36 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0619_2040x1520_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0619_2040x1520_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1520 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0620_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0620_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..307ff51e4d7b1916e03d3b29c95f6c4e7897bee6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0620_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0620_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0621_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0621_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6849b78f0feba3ad2fc60290f936f4433cb28f7e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0621_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0621_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0622_2040x1448_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0622_2040x1448_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..775de42e8e81cb9690288ff4c1f0e416634771b0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0622_2040x1448_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0622_2040x1448_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1448 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0623_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0623_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2343438a71df0ca3101b962d55c66054c8fb6db0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0623_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0623_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0624_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0624_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5b20a02df88bfc15b8e0bdf58bd5f0cc448f1221 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0624_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0624_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0625_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0625_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1aa56b86c32bdb651ae0e6cfe739d8ebb4f5fed7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0625_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0625_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0626_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0626_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bae091ddc214b8caa069a5c20a6ee43f60bcaa86 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0626_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0626_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0627_2040x864_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0627_2040x864_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b27e867949cbc29b5b56bc27f108f8995fc84ac6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0627_2040x864_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0627_2040x864_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 864 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0628_1632x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0628_1632x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..97f68dba1d5b7924bef1aea2ab6f1952a9b07210 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0628_1632x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0628_1632x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1632 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0629_2040x1464_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0629_2040x1464_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6515dd6d5e3647cea3be02a01b618a1f687a7d6a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0629_2040x1464_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0629_2040x1464_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1464 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0630_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0630_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..91191e0cb8c50317b9feee95b3900a732c56a306 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0630_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0630_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0631_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0631_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..59f3fa28b7bee106053c49f273b1840f4fcb39dc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0631_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0631_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0632_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0632_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1e6848339e67678ee0e11826f0595a4482062027 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0632_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0632_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0633_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0633_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a4fbb91f340f4252c817f292f78a9e5cad4b4f50 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0633_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0633_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0634_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0634_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c19f9a12bba1c39b4a5611757c092acb2c7a7293 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0634_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0634_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0635_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0635_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..086723067c775d20c806822a89dc779941993275 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0635_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0635_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0636_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0636_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f4c70b096c013771229ab016f80722d9abd32915 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0636_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0636_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0637_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0637_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..330069ced8e1e4e38de55dc84c66e27c41cec3a2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0637_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0637_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0638_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0638_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..20bde79692c8c25d7829a5ad7c8d9256aca5c248 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0638_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0638_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0639_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0639_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fa346c7edb9a213e91f625754b16a55722486be8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0639_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0639_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0640_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0640_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4920057c198466e05386cd97f0b9b77d1b3de297 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0640_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0640_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0641_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0641_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7a51bfda8bb7a4b0b5ae8f7807e8abde4a0c26e9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0641_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0641_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0642_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0642_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6a0969c24072a7733c0665ac2394c35051e7bb08 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0642_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0642_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0643_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0643_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b4e68f4b66029afcc57d99dcd6a9db764058b7b7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0643_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0643_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0644_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0644_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3a82e12eff5e023a876704f056758c29f85862cc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0644_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0644_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0645_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0645_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..686239d40da14a2f2ec94956e9373e8b87432b25 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0645_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0645_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0646_2040x1472_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0646_2040x1472_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..87cfe5796bfc7870c7ee40624abc80fd79f6f7d0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0646_2040x1472_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0646_2040x1472_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1472 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0647_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0647_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b008b4516bf828bc865492f886c6230864e8c35a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0647_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0647_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0648_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0648_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ca500d0d6d045b6d59702f3ff8696ad35df320ae --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0648_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0648_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0649_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0649_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ce9b1ed2c8481b2eaeb889ec293116ddd109bd83 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0649_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0649_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0650_2040x1448_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0650_2040x1448_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9e8c3e0aa3555488bcac977353a33fb30d5e3a8f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0650_2040x1448_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0650_2040x1448_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1448 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0651_2040x1224_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0651_2040x1224_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a54bba553695b6fa32f63659d1fd64b17bcdaf37 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0651_2040x1224_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0651_2040x1224_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1224 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0652_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0652_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ec3e687da4ad3143b353dd39984588f7531aec6a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0652_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0652_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0653_2040x1584_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0653_2040x1584_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6e53141b7436d71896db85995fc2f6f014320090 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0653_2040x1584_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0653_2040x1584_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1584 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0654_2040x1344_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0654_2040x1344_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cc51be3d82ca9cec5b85f57fc0d64c588a1dd556 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0654_2040x1344_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0654_2040x1344_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1344 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0655_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0655_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4d1893ffa4c4fc1a8515668a9482d4cd40ffaf21 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0655_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0655_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0656_2040x1320_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0656_2040x1320_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1ab84046f6f310f4a1efac86a7b48dd44b026fdc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0656_2040x1320_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0656_2040x1320_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1320 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0657_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0657_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dc1f8ab30a1d5322c11f82e8fea28d6c5982845d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0657_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0657_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0658_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0658_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..abe91609cc64953240b155f22071cc3de36f4f61 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0658_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0658_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0659_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0659_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ce8799ddc8572bdd214420463258d5b07fcf4225 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0659_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0659_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0660_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0660_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..423ee533f6a46030245766254bdb8bff6dfeee84 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0660_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0660_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0661_2040x1296_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0661_2040x1296_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8c9535e8744c57805d0d067588c229558caefb30 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0661_2040x1296_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0661_2040x1296_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1296 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0662_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0662_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..51bdd9f0d5ae81534d397620a92ca43865990c2a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0662_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0662_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0663_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0663_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2a599655e2fd39daae2b865a32e17db9c87d879b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0663_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0663_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0664_2040x1632_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0664_2040x1632_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6e8d08100546b98aaeef807c0861e49d5d23b53e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0664_2040x1632_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0664_2040x1632_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1632 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0665_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0665_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a6616adbe1b27ba7f3036751e10f845d61afea8d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0665_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0665_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0666_1472x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0666_1472x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..71d0002ad9f37aab7cf48a4f9cdf7c7853f1378f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0666_1472x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0666_1472x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1472 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0667_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0667_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..38f4ba835346d03a08373e0726130f3e0b480f86 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0667_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0667_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0668_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0668_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4427137006b6d26158bf4ed46f47b18c092b7bb1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0668_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0668_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0669_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0669_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..371bf847ac23d1115dfeda257b824b4919eb7c95 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0669_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0669_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0670_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0670_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..52bf900f5a3d1ad5796864444f8ea1898215812d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0670_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0670_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0671_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0671_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f1f990340f0abab5ef8fae9bf0bc28d1318e9fa6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0671_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0671_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0672_2040x1304_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0672_2040x1304_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fc6ab85b36f16deb569861e41523e51fe6ad179b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0672_2040x1304_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0672_2040x1304_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1304 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0673_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0673_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f042ec454fa7d6d16f03a0018e8b2adc9ca7d7bf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0673_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0673_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0674_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0674_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..030dba4e2e39b595304a083709a47b26e2ca606b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0674_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0674_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0675_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0675_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ed11346b786f0db4b05d59fa5614889df385926b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0675_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0675_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0676_2040x1344_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0676_2040x1344_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4b17d0d17aa56f95e7a5e41bf8070f1e45ffc30f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0676_2040x1344_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0676_2040x1344_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1344 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0677_2040x1376_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0677_2040x1376_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5019db44b7ba2ea6a8ca91879d71e85f0da4c61f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0677_2040x1376_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0677_2040x1376_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1376 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0678_2040x1448_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0678_2040x1448_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..081ec329ae2334ed0ba8936a3371c3b85059ca6b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0678_2040x1448_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0678_2040x1448_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1448 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0679_2040x1464_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0679_2040x1464_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..40cd1988ff0a7e8c350896d4a8aa758b0f2463e8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0679_2040x1464_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0679_2040x1464_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1464 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0680_2040x1208_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0680_2040x1208_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9b5eb3fb142cf8c2c411efe9f28a0222fb01e890 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0680_2040x1208_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0680_2040x1208_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1208 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0681_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0681_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..044cfa103551b1c50590fd4b097651654fd6805b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0681_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0681_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0682_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0682_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..21217b80d404fe4f16a8e8b2098eb112f0da1b8d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0682_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0682_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0683_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0683_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..550eddf5e1e57d5e872d3164e10857efb0dde1f0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0683_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0683_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0684_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0684_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e32613976cbbb2aded8f201e4dd618ed2ca271d9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0684_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0684_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0685_2040x1080_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0685_2040x1080_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..77bb4176526679399679db34600210f61e7766bb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0685_2040x1080_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0685_2040x1080_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1080 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0686_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0686_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4d9046b544c64a2d44ddf243746acd4cfc868fb2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0686_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0686_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0687_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0687_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3441a5950a49648f55bc505a46fd57e013c5dc55 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0687_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0687_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0688_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0688_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ae99cdd9f7a2d84332fe9a8fd1ad9e2d34592333 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0688_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0688_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0689_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0689_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f95544ea6d5cd19563bc47accb198ebb56263901 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0689_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0689_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0690_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0690_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..13809ce4c1925d1ad5f4d8b2cb6bc26b1d7baeea --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0690_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0690_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0691_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0691_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cfd5afb74733f393a8c8109b4434606d1ab0a29b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0691_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0691_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0692_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0692_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..279ea60a25499d71080f963e4d7878e696fa5fdc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0692_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0692_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0693_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0693_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8e5193937271e8e148554fdf1fa983733dcd056c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0693_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0693_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0694_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0694_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c6e9ea89a1d3efa419f7e6f448cb47cf67e24c2a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0694_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0694_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0695_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0695_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8ad626a7a59725b73cc9063f52e6a7beb1dd44cd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0695_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0695_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0696_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0696_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dfb5152ccd800dce02bbe5d39522b5c0e41ba510 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0696_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0696_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0697_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0697_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c60e2d963ac21d32457c53c91d9a374f7bc6c0d4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0697_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0697_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0698_1968x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0698_1968x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0cbbbbfaa0659433045e2dc4fb3b69675a688796 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0698_1968x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0698_1968x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1968 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0699_1568x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0699_1568x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..73c482c8e1bf8001213d611188beaa0554ce73ee --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0699_1568x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0699_1568x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1568 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0700_2040x1728_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0700_2040x1728_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5489b1c6fca64d825f6a8e1d7fe1adbfe4f67661 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0700_2040x1728_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0700_2040x1728_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1728 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0701_2040x1344_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0701_2040x1344_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5fbf192eacff355471d6443d0b06f27ca7bf3f54 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0701_2040x1344_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0701_2040x1344_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1344 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0702_2040x1320_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0702_2040x1320_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5dff02d4521afe84ad35fadd50661b49db62f675 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0702_2040x1320_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0702_2040x1320_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1320 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0703_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0703_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..db504f94f21f51960a09181348a6f935460c176d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0703_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0703_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0704_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0704_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..64fe02d276451f1be65cf475593759e6095ebeb5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0704_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0704_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0705_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0705_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a9ce37799ee3607f13bcb597c3cb5f7162d075d0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0705_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0705_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0706_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0706_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a5ec4c5da9611d8dee969590f545126955902af4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0706_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0706_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0707_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0707_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1c360450d96bb3f64b44ec0c5070783ab48378b9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0707_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0707_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0708_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0708_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5cd4f7914a85f456e7e77f323816d25923077ede --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0708_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0708_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0709_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0709_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b7bcc404d59c5e13c170bec603296083052c35a6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0709_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0709_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0710_2040x936_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0710_2040x936_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3b29e7cdb5bc58b4d84cf68ad071d108a1d77e54 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0710_2040x936_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0710_2040x936_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 936 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0711_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0711_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..95f55bd22a50849f14f60caadcdb2983452f0a78 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0711_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0711_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0712_2040x1784_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0712_2040x1784_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1dd49400d18ca6d87b6e6032fb5b827edd3cac03 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0712_2040x1784_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0712_2040x1784_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1784 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0713_2040x1344_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0713_2040x1344_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3bd53c6dbb3341c59f086cf9a64f789107cfeeef --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0713_2040x1344_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0713_2040x1344_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1344 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0714_2040x1520_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0714_2040x1520_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cf4454c376bf15a5824d120751909ac284916153 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0714_2040x1520_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0714_2040x1520_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1520 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0715_2040x1328_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0715_2040x1328_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c288beac2c4d0b56412052991fc21e6a96883698 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0715_2040x1328_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0715_2040x1328_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1328 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0716_2040x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0716_2040x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7d858167434ed8f97ac5a797e5bcf1f4ded1a11d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0716_2040x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0716_2040x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0717_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0717_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..11a9128631820b3e84df6fadc4a7068e186511e6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0717_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0717_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0718_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0718_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aa75b5b421945759101963d996c7eac8948476e1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0718_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0718_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0719_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0719_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5fff7a2233b205471ec02ae7c615a19cc77797bb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0719_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0719_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0720_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0720_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8f0768c4b7f8fe311c6fafc394b4f212eb5e5174 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0720_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0720_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0721_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0721_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bbc9824e5e09cea1210a2c71dd29fbaaca1b2ba4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0721_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0721_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0722_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0722_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7d0ed7b9104e18c717b7c6368e6f57a6690f2855 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0722_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0722_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0723_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0723_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fba6e3aeb777b92696f551692d496816632c2b07 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0723_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0723_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0724_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0724_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c05d9ea4b98b28078abb323caa3b317faef5d985 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0724_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0724_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0725_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0725_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6d4780adfdda632d6d8a59a383b6f997999e3aed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0725_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0725_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0726_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0726_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c928333c1452b7de8ec0448c7d94ed23bb014e28 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0726_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0726_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0727_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0727_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7258bdcc505fd628374309453d7697fe1d81d310 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0727_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0727_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0728_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0728_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..852c6db61de5c43ee4a6306e8638e34bdd5442c5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0728_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0728_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0729_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0729_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6222b6a89f72b644842dcdde38d5b9fd15a636c9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0729_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0729_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0730_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0730_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3d78de8143ccaedbb26a2e9bd60207040ae70fe1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0730_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0730_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0731_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0731_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0ccca58695da489962aa7175ff613e56facd310f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0731_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0731_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0732_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0732_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..af3677fbe9cf8bfc3b29884da32f3404edc6aaab --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0732_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0732_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0733_2040x1304_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0733_2040x1304_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f6e72bf1c91d83c983ab0f8fb0610f1d6f816123 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0733_2040x1304_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0733_2040x1304_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1304 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0734_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0734_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b1008c2e5da7abbd54637d62218dd76dd3bcb7a6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0734_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0734_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0735_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0735_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1c278ec08a984e12eadf4886bf689787d40564a1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0735_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0735_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0736_2040x1448_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0736_2040x1448_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c0bd6f4d086d9d3d2340b20398c144a8c633dec8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0736_2040x1448_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0736_2040x1448_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1448 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0737_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0737_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9e49cf4f2952b747bc991f968d786148e2cbc91c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0737_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0737_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0738_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0738_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..64daa317e578d3bcaf8cc415d2a37c352270a5f4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0738_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0738_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0739_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0739_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9d4ec7f13c4e47d31cedeb09f8157ccefc605661 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0739_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0739_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0740_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0740_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..26b479d7e83473683032eace0374fbf4913a51c2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0740_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0740_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0741_1320x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0741_1320x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8ceb5ae354299cefdafc5a7a37b8ad7793ba0c03 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0741_1320x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0741_1320x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1320 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0742_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0742_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ddc7e62d2b0727662ea112d3b6bd0d8b897dee8f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0742_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0742_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0743_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0743_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2d1d4dde15037fdb04fb36625d34500a7b2b5476 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0743_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0743_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0744_2040x1584_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0744_2040x1584_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..23bd3512c14bcddfb3f8a2a6fc373c6c2e9e8cd7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0744_2040x1584_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0744_2040x1584_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1584 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0745_2040x1136_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0745_2040x1136_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ad7bb626c998a6eea2d8c027a51cc68f0b828b3e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0745_2040x1136_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0745_2040x1136_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1136 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0746_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0746_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..14bb81867a321f22e0fe63413b3dca89764bc4a3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0746_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0746_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0747_2040x1464_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0747_2040x1464_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e72998f24d0682f600568118375ade1fdb789557 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0747_2040x1464_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0747_2040x1464_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1464 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0748_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0748_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..979b2047047fa3f38f60a467bb4b96f4d9036d5b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0748_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0748_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0749_2040x1328_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0749_2040x1328_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e117d211fab19730b446d54bbe0f5438905b832f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0749_2040x1328_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0749_2040x1328_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1328 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0750_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0750_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..64eeb82d1ec2bc65d5e887ec82a50b7219bc2611 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0750_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0750_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0751_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0751_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4934b32f173754e33fbff2b5db6c8d6a85637775 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0751_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0751_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0752_1176x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0752_1176x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a5bda2473f5b2b549953cddc9f6e2a7dc60743ac --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0752_1176x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0752_1176x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1176 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0753_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0753_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1f004c475be71e8f5512f5579b03f265b6dcef30 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0753_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0753_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0754_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0754_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d7af2af77312894117ef6e06c4b3b802746c656a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0754_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0754_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0755_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0755_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2596afd3b6b5c5be00462a49f3a2e36d3c8d8f0c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0755_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0755_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0756_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0756_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..56c7635560fb941f37c1d27e073a65961eb300cf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0756_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0756_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0757_1424x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0757_1424x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..68f824c7111e9a0563ac6c2fd6e074dec64a6e12 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0757_1424x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0757_1424x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1424 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0758_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0758_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..857a8147afbe15a48cef4e513d0b66fa0fb8a25d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0758_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0758_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0759_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0759_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4e03df495afac1fb575990186f2561f81f758383 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0759_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0759_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0760_1352x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0760_1352x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..df90855932e4aeac09ddfb16cc903254dfc88033 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0760_1352x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0760_1352x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1352 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0761_2040x1440_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0761_2040x1440_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a13ff09c5980a4f7f848b2e709c9ee1acb372831 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0761_2040x1440_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0761_2040x1440_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1440 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0762_2040x1296_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0762_2040x1296_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e236a88aa16279fd0e406f09df6b3797d132b92f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0762_2040x1296_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0762_2040x1296_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1296 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0763_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0763_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fdca48d0e549448dc83a496fb34795c548a85e1a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0763_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0763_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0764_2040x1344_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0764_2040x1344_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..45976e0f61fa20c3c9419e1a00452f7a0cd745c5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0764_2040x1344_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0764_2040x1344_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1344 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0765_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0765_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d2888b60e985701e6aea6e6c0c0140172f651049 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0765_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0765_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0766_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0766_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..45844b1b5b0f757f48fc1ae8466d8e32e8339a03 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0766_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0766_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0767_2040x1568_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0767_2040x1568_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..babba2341528b2f47ae5f9bc88dc146bd99154d6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0767_2040x1568_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0767_2040x1568_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1568 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0768_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0768_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c301c7a37905e094e3c51946c9cc4eaa3e2d7f86 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0768_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0768_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0769_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0769_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8afd115519416b43048a98b714876c531cf3e89d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0769_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0769_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0770_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0770_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f6853e87812d8f731bb8a128aaa4c91dfbc94649 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0770_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0770_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0771_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0771_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3ebffb97623d632eff895d8dc01c353a0a03651a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0771_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0771_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0772_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0772_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..80fec98c33f1a5d63d347d1b26f72e1b79cc3b89 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0772_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0772_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0773_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0773_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f43a56617332a03f26bb487da89d60eb0ea73c84 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0773_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0773_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0774_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0774_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4d62a812922e59cc2284eb16e142dc831c2ea0c7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0774_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0774_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0775_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0775_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c95c049c20c1593f50d65ced934b544221f4469d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0775_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0775_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0776_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0776_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8e496f96c96d2311525a97e0bb4b4218fab89aaa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0776_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0776_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0777_2040x1536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0777_2040x1536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..91df6e79f0758bf86c03f73742da8313c5f87a38 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0777_2040x1536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0777_2040x1536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0778_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0778_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9f7d2caa564bb50a25ea73a746a67c91cb920fcf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0778_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0778_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0779_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0779_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a822a50fdd6135b169830f52e28f517ee4e55b34 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0779_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0779_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0780_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0780_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ea60765b8e57da194c2c8e034b488f6689f51d59 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0780_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0780_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0781_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0781_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..79a7a2b14e7e225fd56075f7d9a1cea9f13131c9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0781_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0781_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0782_1632x2040_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0782_1632x2040_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..627ca43d9523dee7a0162a32146034e812d8af62 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0782_1632x2040_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0782_1632x2040_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1632 # Input frame width +SourceHeight : 2040 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0783_2040x1368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0783_2040x1368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8f025097eee1b5a48109febe8a0bbffcacc6ff98 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0783_2040x1368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0783_2040x1368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0784_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0784_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f2c4f8aa3e6f3534cc0d6dcce113dd5ca52a8bbb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0784_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0784_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0785_2040x1224_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0785_2040x1224_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d2d0a35b16eb48306a42e0796a11efe148d09356 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0785_2040x1224_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0785_2040x1224_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1224 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0786_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0786_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8e2567a8ab92ed78f7935896f760180413b7c0d7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0786_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0786_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0787_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0787_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ec26416503778ad685f82dac6a3547ac5de0f5ba --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0787_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0787_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0788_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0788_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5c0f232e79dea5918103f71d0456179e2982aef7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0788_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0788_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0789_2040x1256_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0789_2040x1256_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e7483a8c4ce26dae43fcb1a4c30daa4981eb0d30 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0789_2040x1256_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0789_2040x1256_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1256 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0790_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0790_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4d4794e23e40290fb6b358ce3c5cd3c142d823b0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0790_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0790_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0791_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0791_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8c8a672e9a43b2cebc39f06065a775c6cda153e7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0791_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0791_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0792_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0792_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4909e0a825b9927dfbf1fe2b09a6d7bd487dbcdb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0792_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0792_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0793_2040x1488_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0793_2040x1488_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c7a9bcc15796d0b86370cf7cfcd981a20e9111a3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0793_2040x1488_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0793_2040x1488_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1488 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0794_2040x1272_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0794_2040x1272_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1d4d9f1f0132b1970d78c5c772a981b85ac6f0b7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0794_2040x1272_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0794_2040x1272_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1272 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0795_2040x1152_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0795_2040x1152_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8dece4ddf6893a53dfe30f8bf170c94f9201cd5b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0795_2040x1152_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0795_2040x1152_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1152 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0796_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0796_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..85e134ab85568861c4436411a841311d0b4e7af1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0796_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0796_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0797_2040x1416_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0797_2040x1416_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a90d4dfe410a23ebdbdc9ab39610cff147680876 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0797_2040x1416_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0797_2040x1416_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1416 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0798_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0798_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8e12e06698ec5b4b50789c92d044b4fd72ea9ee2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0798_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0798_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0799_2040x1352_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0799_2040x1352_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..709ccc8866d2660fbadd96f917908af165902f0f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0799_2040x1352_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0799_2040x1352_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1352 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0800_2040x1328_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0800_2040x1328_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..70f6afd742d18d7e54ad3c9dccc44f7e6d3f6ffa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_IntraLuma/0800_2040x1328_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0800_2040x1328_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 2040 # Input frame width +SourceHeight : 1328 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 4.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0001x2_1016x696_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0001x2_1016x696_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ee7a3ab5816b4b6f1ecb94ccde158b91d94d31d6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0001x2_1016x696_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0001x2_1016x696_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 696 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0002x2_1016x920_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0002x2_1016x920_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4e2463870fd0cd248730b399cc68cbeaa33d8bdf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0002x2_1016x920_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0002x2_1016x920_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 920 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0003x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0003x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b07458872b2974b7f66b49d1c3a58461a558a6a9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0003x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0003x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0004x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0004x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0c4ae60458ddafb388439a37791c7f3cd50d42df --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0004x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0004x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0005x2_800x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0005x2_800x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..353097aa2b6dd7fb9034fb5c74af1f2fd616c259 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0005x2_800x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0005x2_800x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 800 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0006x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0006x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..74fda04ec73147fae26ddc2e210613c93edfcab0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0006x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0006x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0007x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0007x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f16b256e79be3bbcb245bd0ddb4387b1fffd768b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0007x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0007x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0008x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0008x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9f7546e5fcf57f09106b3cee2187009190fe471b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0008x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0008x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0009x2_1016x760_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0009x2_1016x760_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..559ab1a4ccd9233d9d77baac656b17ff480efbaa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0009x2_1016x760_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0009x2_1016x760_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 760 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0010x2_1016x816_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0010x2_1016x816_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5ea4201d1f95f4e3ffa67183f395565c8ad33ce4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0010x2_1016x816_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0010x2_1016x816_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 816 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0011x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0011x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9b9691d51ad7bc4f1e6af77833031b305ad8f745 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0011x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0011x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0012x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0012x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a5ee74e20e9da4876e8fed46108c221ae8ad4b17 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0012x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0012x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0013x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0013x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2b6c615662b1e396f055736829083c5f86550e65 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0013x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0013x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0014x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0014x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e854ee9ed78ed3a58553e76a4050228a00e59ce5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0014x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0014x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0015x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0015x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d2ca277d92d18ceace06886cdbd2e23cde9a5466 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0015x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0015x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0016x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0016x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7a155caf19bd86900f96558aad9d3742f1f93bc8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0016x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0016x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0017x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0017x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e5941be6aae11a1dc04a7fec721c7db594348936 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0017x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0017x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0018x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0018x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..362840344a426248753df54a47200c9589895e2a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0018x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0018x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0019x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0019x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..185c149b5c1541f41963ff704ff525450ed58418 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0019x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0019x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0020x2_1016x696_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0020x2_1016x696_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d75165bc2ca1406b9f8e60ed65f7894e3f2609ec --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0020x2_1016x696_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0020x2_1016x696_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 696 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0021x2_1016x384_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0021x2_1016x384_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7fc2ee6f8b7e2e0580f84b9cd47b5988584876c6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0021x2_1016x384_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0021x2_1016x384_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 384 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0022x2_1016x480_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0022x2_1016x480_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..381be0766dbfb57c634856dd7f11d2ebe34afd69 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0022x2_1016x480_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0022x2_1016x480_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 480 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0023x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0023x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..51f33da4da813c955b4277ae40853e1419e46dca --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0023x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0023x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0024x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0024x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..638c4c441db54c73b98d55cc3af97d1f191ae676 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0024x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0024x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0025x2_568x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0025x2_568x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..115e9289d1581ea575901d4e081ccff6b7ce97c5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0025x2_568x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0025x2_568x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 568 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0026x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0026x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c841246bd3fbfab5c52a9051137e80c42da5275e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0026x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0026x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0027x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0027x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a86bcd375d434203af2c4bf1377ad6a0e8f2af2c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0027x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0027x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0028x2_1016x992_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0028x2_1016x992_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9140c7c47ed9021b03404a1ba50d837ddfdb2abe --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0028x2_1016x992_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0028x2_1016x992_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 992 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0029x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0029x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ec7be079ee40926bddcd2feca5ea0dbdb33dd204 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0029x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0029x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0030x2_1016x632_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0030x2_1016x632_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..01cba26bd236247bfa48fb5637a53ca503e3d341 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0030x2_1016x632_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0030x2_1016x632_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 632 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0031x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0031x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..073a1f42a4a30bc908183d4f021ce167e8ccf37a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0031x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0031x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0032x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0032x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9b699c7332d58edd0c26a3dc37c80c81ad2ddfb5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0032x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0032x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0033x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0033x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8d999596dbb16b8a657cd1f6b98ba11f3d6f953b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0033x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0033x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0034x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0034x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a303968c4ec41c90750c56a4f12d96879abadc02 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0034x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0034x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0035x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0035x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a42f78344d12a9981fb95f224c417f20ab356665 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0035x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0035x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0036x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0036x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..200f60d980db25449dc778c84b5373777a89db92 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0036x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0036x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0037x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0037x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2d46131bfff769b50264bc184bb94a70132e1b37 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0037x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0037x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0038x2_1016x608_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0038x2_1016x608_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..616e281e88399365c290c7a3e3adb7fd5211c595 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0038x2_1016x608_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0038x2_1016x608_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 608 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0039x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0039x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cc2dda2aea9aa799ed4f597161a8d56b19acc923 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0039x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0039x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0040x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0040x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..08dabc709bc36d6f7ed5f7f460e0f32721866b7e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0040x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0040x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0041x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0041x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..23b88286fd4ffdc0a1f22f636bb0e30b869942a4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0041x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0041x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0042x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0042x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..10e54f80740572bd72695463de2c4a749d47caaf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0042x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0042x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0043x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0043x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a1910d539c58c9f9399858214b45f61898a72577 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0043x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0043x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0044x2_1016x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0044x2_1016x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d7688a1977db167961d2c9e59b1909a3f7ba47a9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0044x2_1016x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0044x2_1016x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0045x2_1016x568_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0045x2_1016x568_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0b5483b2c5c04500eb0ff5b934543dcbe3153ead --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0045x2_1016x568_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0045x2_1016x568_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 568 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0046x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0046x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..110ea03782ef57ef9501c90a8aa34dcdedd74dcd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0046x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0046x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0047x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0047x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cfba24190f9662fbce8008c2d4765f82e1860549 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0047x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0047x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0048x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0048x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d07bea58ec610900b8990899a30e3b3600a98bb7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0048x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0048x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0049x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0049x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ff6866ed4cd5be680cd668d91ca45ce1a0d8d93a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0049x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0049x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0050x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0050x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f0a77bd763f6ebceca50b3d2fecb48562d003d35 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0050x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0050x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0051x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0051x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d914b9ca60929314f1f0e30f04b6403ab4fd5571 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0051x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0051x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0052x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0052x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..625063cca2928cf5d5fa3e5e3e64fc4a4a52c201 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0052x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0052x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0053x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0053x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..248b9b16d6cbc6f67adb574533b9a55749332db8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0053x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0053x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0054x2_1016x664_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0054x2_1016x664_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e6637c9887c697854ae76c2cebbe069b4d782211 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0054x2_1016x664_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0054x2_1016x664_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 664 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0055x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0055x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..caff3c969f862a87c8e6c4302ec2e17da0a3fe60 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0055x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0055x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0056x2_1016x688_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0056x2_1016x688_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..446d6429d4d3e419418e5926e710f2b543eced83 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0056x2_1016x688_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0056x2_1016x688_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 688 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0057x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0057x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..34fef8fceee26c1c3fae6e12cbf088d890f10ef5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0057x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0057x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0058x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0058x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..23677f9e7a6b36bf33bc6de1af57231f8812c803 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0058x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0058x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0059x2_816x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0059x2_816x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..860d56625dc382e39733dd68fae0ec81cf4cad7e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0059x2_816x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0059x2_816x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 816 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0060x2_1016x608_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0060x2_1016x608_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7d325d53bad8c46956f6e4314cc05cc345ed3ef2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0060x2_1016x608_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0060x2_1016x608_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 608 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0061x2_640x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0061x2_640x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fd13c2b3a9f6e5cd0e1cff76421183e60639c5a2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0061x2_640x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0061x2_640x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 640 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0062x2_1016x712_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0062x2_1016x712_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..06e8f4f78911018ae791c06908b0893e5989e171 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0062x2_1016x712_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0062x2_1016x712_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 712 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0063x2_1016x792_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0063x2_1016x792_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..95cdb37e7f22f34bb4cdd8d4c4e3ce7355e82416 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0063x2_1016x792_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0063x2_1016x792_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 792 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0064x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0064x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fe34e375112c96205f83c265f2886d26f8d23036 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0064x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0064x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0065x2_1016x592_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0065x2_1016x592_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..46432a124d724f57ca78d627e3fa3075dd68cd4c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0065x2_1016x592_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0065x2_1016x592_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 592 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0066x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0066x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..548d96ef221db5f2d44867c725b6e184f13f4b74 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0066x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0066x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0067x2_1016x656_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0067x2_1016x656_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7ac214101c7d49418c92f48e2ceb6f4e0c30d719 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0067x2_1016x656_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0067x2_1016x656_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 656 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0068x2_1016x688_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0068x2_1016x688_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b057cd046bee8899172c0019134d2ef498477b42 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0068x2_1016x688_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0068x2_1016x688_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 688 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0069x2_624x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0069x2_624x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f832a7461e7472fca1b1437b8a983eeef111a753 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0069x2_624x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0069x2_624x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 624 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0070x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0070x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..34caf65b3d30cd6a1af15e45305d0161d8229e17 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0070x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0070x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0071x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0071x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8c27eb9c8b59be3d4fd04b586c57cd45a92273c3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0071x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0071x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0072x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0072x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..19b3f680482ec74510a0d6d5b5ced175d64ace51 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0072x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0072x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0073x2_1016x568_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0073x2_1016x568_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8225803156da6f2221d708a9748931c2800888c3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0073x2_1016x568_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0073x2_1016x568_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 568 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0074x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0074x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..57d8e48f9cd806e42f385364f4e67174d38ba3d0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0074x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0074x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0075x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0075x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..94b82229932482c55e1a0670bf6d177c763dedc5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0075x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0075x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0076x2_1016x784_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0076x2_1016x784_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..086fb09805879b4c863f8b721c4fa02ad4f5d44e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0076x2_1016x784_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0076x2_1016x784_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 784 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0077x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0077x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c9b93ae34d1a0201fad66060f95e52220b39ab90 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0077x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0077x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0078x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0078x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ace23db5c6ffd76ad06116048f88a50db5553803 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0078x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0078x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0079x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0079x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c1834001b338b7b6871a3ee74f83d4f799633b72 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0079x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0079x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0080x2_1016x664_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0080x2_1016x664_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..91824528b5c5efd3c96b1c8a22a2e627961aa6d3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0080x2_1016x664_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0080x2_1016x664_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 664 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0081x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0081x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4f1376b115110167eff591e4c75e82321f4db6bc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0081x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0081x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0082x2_1016x600_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0082x2_1016x600_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..038e47e3eb08f387bf33ca696ef638c579b57433 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0082x2_1016x600_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0082x2_1016x600_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 600 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0083x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0083x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ef5253548307067f34f5b8485a569e6406ee75d8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0083x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0083x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0084x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0084x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9afb7f19ba9a472e149cdbe5e21329ccfbe4d226 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0084x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0084x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0085x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0085x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d002533dd7dc2600db569d1753f405bd0fba589b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0085x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0085x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0086x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0086x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..653c21bf5a75971dda679572e72edc1e2b2ef7c1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0086x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0086x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0087x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0087x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c0625eba0784b568c5cf028b8ddc91158a831c87 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0087x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0087x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0088x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0088x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e078153548ba1aedf410112af01da2ce8e070ca8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0088x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0088x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0089x2_768x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0089x2_768x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ab2d87ad26598aa0107b5344ec92dcd35c526547 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0089x2_768x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0089x2_768x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 768 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0090x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0090x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4948466b39a5f20864948ed7a34ac24f0bc4d466 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0090x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0090x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0091x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0091x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..119c0ef240e1793e32e523751cd2e95d1e2547bc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0091x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0091x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0092x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0092x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4111e70e3546853b4ef7bc0054c8c71cc7dc3c0f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0092x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0092x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0093x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0093x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fb8c0b434a861d6575b9c9c0816779e02519b5ca --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0093x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0093x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0094x2_1016x632_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0094x2_1016x632_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d5ec0bdd88e53cdac898b9ba3dc5f26d16f67ed4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0094x2_1016x632_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0094x2_1016x632_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 632 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0095x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0095x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4ad370674101eabd7302bada016ee5c523d53e38 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0095x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0095x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0096x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0096x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..66d2d73dac2c1ececa4fa9cebade5818ab318f12 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0096x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0096x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0097x2_1016x592_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0097x2_1016x592_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..21ae10fce59042785e96b3744d13d40fd543b29c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0097x2_1016x592_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0097x2_1016x592_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 592 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0098x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0098x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b990a137a1da8ea99a7d56c3582300571998cb9c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0098x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0098x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0099x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0099x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dc18eba3dec0999f2f43244d23b072f71ab7c45e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0099x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0099x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0100x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0100x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6be1972b74ac4ae8314112cfa5b2c8b94fd3822e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0100x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0100x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0101x2_1016x752_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0101x2_1016x752_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e61b6734625b4950a64a67f8f58438c7b6308aa9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0101x2_1016x752_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0101x2_1016x752_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 752 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0102x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0102x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..693be22dd9dee3de35dd16dd1bd855a6a6200aa6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0102x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0102x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0103x2_1016x568_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0103x2_1016x568_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..05cebd225cdabbe2c333c1c40f431254ab734b94 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0103x2_1016x568_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0103x2_1016x568_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 568 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0104x2_1016x656_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0104x2_1016x656_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9edfe77f4a7eb8b45baf446b053ea3b685be4d48 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0104x2_1016x656_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0104x2_1016x656_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 656 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0105x2_1016x648_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0105x2_1016x648_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..331c04d8fa6fa220c2c447be49c9fa6737beee1e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0105x2_1016x648_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0105x2_1016x648_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 648 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0106x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0106x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0143d7901cb97bcff4090894ecaf03041b943ee2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0106x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0106x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0107x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0107x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fc9810eb6bff1750d0e80b13db14d4de8487bb0b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0107x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0107x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0108x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0108x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3710a1c7701fbc8e81215e546c94ab1cff54b180 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0108x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0108x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0109x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0109x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e85e0cfbe084303909b3712908642b734d4b907b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0109x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0109x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0110x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0110x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4368f6e9c1e7f1712b7605a7219c3d1f102fb798 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0110x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0110x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0111x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0111x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..eda02f297a881039ab3d276053021a7d989fd33d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0111x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0111x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0112x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0112x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..71876a72305b18666135c10f0dc49a7411c7fdc7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0112x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0112x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0113x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0113x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2a0162860ad6027879b01f7888a7aeffb416f3a4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0113x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0113x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0114x2_680x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0114x2_680x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c0128f7745d58957fbaa3b8aa8596929e992c6b6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0114x2_680x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0114x2_680x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 680 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0115x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0115x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e535ab9502499756075c17caa20249b981f9367e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0115x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0115x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0116x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0116x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e5fbc7d531f5fa001921fbf2114d99b1f8196dde --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0116x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0116x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0117x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0117x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..26f719501fd0c1ff0c5105d75e5e2d8a709e3a61 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0117x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0117x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0118x2_1016x744_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0118x2_1016x744_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4a62c2f3e765df09ec56a04eea7e9c85e2730af1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0118x2_1016x744_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0118x2_1016x744_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 744 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0119x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0119x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a5cbf8efe1806f408aeb07e0c984d0ba12a3ba13 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0119x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0119x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0120x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0120x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8a08989b3514d60cdfc780db0ab537e3fbe66e13 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0120x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0120x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0121x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0121x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4e5e27986346b354c60d967a10443f45447d9f03 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0121x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0121x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0122x2_1016x480_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0122x2_1016x480_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4987ffb7550f85a81e7cfc76db6f1f7df45a1603 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0122x2_1016x480_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0122x2_1016x480_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 480 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0123x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0123x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..31b1573538c4e097a889b1563e8edfe3ced0e64a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0123x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0123x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0124x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0124x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..613b839ddac606e7f68d3cb74cdc42811696c34f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0124x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0124x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0125x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0125x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..42b30e90f9cf872e3eb441894201d2db96e45a6d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0125x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0125x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0126x2_1016x728_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0126x2_1016x728_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2bf83c159f78adefe482f5a83f29731940eebde3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0126x2_1016x728_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0126x2_1016x728_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 728 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0127x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0127x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..95695481cea898ea9bbbb76b02ba3ecc67ccdc84 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0127x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0127x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0128x2_1016x640_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0128x2_1016x640_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9186adee72bd2ada185479d8ec82da472717fa37 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0128x2_1016x640_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0128x2_1016x640_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 640 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0129x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0129x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ee3374e12ab91d3f8e4d94ad126e64aed31658aa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0129x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0129x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0130x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0130x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..05ca874afa6afeaf9ce6fc2ff37536795c0103d0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0130x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0130x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0131x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0131x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d89f88b07c67821c694f3ebc8b6c2675dd25ba0a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0131x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0131x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0132x2_1016x648_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0132x2_1016x648_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4a2d5104a9502b1dac4d27d8ecd370f99eefd2f0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0132x2_1016x648_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0132x2_1016x648_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 648 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0133x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0133x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..61d4f59484b583ae5a981a872e4f8d24415a0e63 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0133x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0133x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0134x2_888x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0134x2_888x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b613c50f81a24015817dcf8b92edc4c86026a678 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0134x2_888x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0134x2_888x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 888 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0135x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0135x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7a7989ef6e04596754cff6df417a46911c7fc7c8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0135x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0135x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0136x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0136x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1ff4584bd9c718b02cc2e33ac21306d4a828da1f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0136x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0136x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0137x2_1016x664_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0137x2_1016x664_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1b839b48c506a13aa4874fc93e787f4cd6e985b4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0137x2_1016x664_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0137x2_1016x664_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 664 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0138x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0138x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ea661d2f49d57d108b4f22ea4df27e49f1f65329 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0138x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0138x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0139x2_1016x472_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0139x2_1016x472_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c88e322a8f376aa370a3bcbc1741b472105acf94 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0139x2_1016x472_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0139x2_1016x472_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 472 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0140x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0140x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4e8710ba7439c8df3652e0508fa35543a1e74afb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0140x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0140x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0141x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0141x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..77e6cf2361b06c204e944141c808363188193f4d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0141x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0141x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0142x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0142x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ea65497cc5ae6105eec44848504d7a190102a699 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0142x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0142x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0143x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0143x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..05c599e520bbccae3044f6d19b4c7345cdb87a73 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0143x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0143x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0144x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0144x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4786aceeace4003ec1d6803bf5c126aba3f8445f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0144x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0144x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0145x2_1016x360_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0145x2_1016x360_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9f8bff705b003d1e5da7b6a4e745844a91fe5137 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0145x2_1016x360_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0145x2_1016x360_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 360 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0146x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0146x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e09d23317e1c076420a4e1c0771323d26787645a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0146x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0146x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0147x2_1016x824_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0147x2_1016x824_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b6b587bae53618bbc6464ad5e904e880e316685f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0147x2_1016x824_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0147x2_1016x824_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 824 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0148x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0148x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0c6174769cb717c16ed86d0d3f5214beffbf6632 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0148x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0148x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0149x2_1016x872_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0149x2_1016x872_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2712e4e3be8a26189691b8e95a3fc3f4501d0b17 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0149x2_1016x872_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0149x2_1016x872_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 872 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0150x2_576x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0150x2_576x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..de74c40c34897212ba971da8d55428fd84ad53ed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0150x2_576x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0150x2_576x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 576 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0151x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0151x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7d988aa20c777534ef129c553aeb78aa6c55a403 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0151x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0151x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0152x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0152x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b650a887a6906b510e8ca33bc426e299790da682 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0152x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0152x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0153x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0153x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..41817b13fed455c583f5188e2a4aa419640903a4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0153x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0153x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0154x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0154x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1d05e10786c423a3beb0d2ed07bf812b6d3d7fb7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0154x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0154x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0155x2_1016x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0155x2_1016x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c48a7a833fccb671dd882a006696815dc8ef3080 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0155x2_1016x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0155x2_1016x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0156x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0156x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ff959e42b1432b8181eb9ec4853b6c585c281967 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0156x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0156x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0157x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0157x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d015a13ecf9827b785da6c9c24e7a1c2392cc6df --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0157x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0157x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0158x2_1016x608_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0158x2_1016x608_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..020d82eae8c0071ddaaf73770560669bf701d6c9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0158x2_1016x608_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0158x2_1016x608_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 608 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0159x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0159x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3f118070fe6f7bad873222c1e98342fb281bc977 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0159x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0159x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0160x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0160x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cf9b13724681ef488a68c9fe05ea51c31ed29ad3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0160x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0160x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0161x2_1016x624_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0161x2_1016x624_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..82a4fffe067967b44fef84df37b5760eef45bcb7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0161x2_1016x624_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0161x2_1016x624_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 624 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0162x2_680x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0162x2_680x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4c3b70766f7a26f1b8e29c7cf7af1c5181e40697 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0162x2_680x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0162x2_680x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 680 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0163x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0163x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d61e2a2db6f7291f5ee57a885aae4774af119e57 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0163x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0163x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0164x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0164x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..54428c0b615d90ec06036d3f21064ad7a0ce1d43 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0164x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0164x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0165x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0165x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a340f061ece7278d61b47f25baff784a2d685453 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0165x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0165x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0166x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0166x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..157e562ed7d7cf7180b91304537842ec5e8f6d71 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0166x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0166x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0167x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0167x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..525725e24dabd5f9cce9d7c0fe85dffafd06110c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0167x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0167x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0168x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0168x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6985d70d619b1c77fb2e77f9c2f4210f001fa962 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0168x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0168x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0169x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0169x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aed0be1140b0a5bac41296ae139f817d9378108a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0169x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0169x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0170x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0170x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0d9b5fa318e0cf866fc51e6e70a72cd972221a76 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0170x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0170x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0171x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0171x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a5211cc21c1f92067f65221ad6a242e3f46b104d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0171x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0171x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0172x2_1016x624_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0172x2_1016x624_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b308e8e293a9737fe6967fc1afaaef57cc42172e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0172x2_1016x624_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0172x2_1016x624_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 624 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0173x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0173x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..940420e4074bcc9d182872979b68ad7b1bd03ed8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0173x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0173x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0174x2_1016x648_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0174x2_1016x648_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0be461159c913643f2268687cef67099d209a245 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0174x2_1016x648_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0174x2_1016x648_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 648 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0175x2_1016x528_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0175x2_1016x528_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7c51902917fbcd758c6055428ad7408a6d74d8b2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0175x2_1016x528_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0175x2_1016x528_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 528 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0176x2_1016x816_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0176x2_1016x816_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0326114d6215611a5150419a7ce3579154552fac --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0176x2_1016x816_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0176x2_1016x816_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 816 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0177x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0177x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1c09bd145f00bfd090f1f7e5d62efb5b6c33f7de --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0177x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0177x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0178x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0178x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4c176f3adec7408c28d0e9efaee7b4d7602da8a6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0178x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0178x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0179x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0179x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..10bdf25528927fbb57a12890d4dcc7c701585f82 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0179x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0179x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0180x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0180x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b5247d805b0230cc71d35b87e56d06d608e7b476 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0180x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0180x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0181x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0181x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1e1503f09916491af290c384ccd465d25f6346a6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0181x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0181x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0182x2_1016x624_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0182x2_1016x624_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b5427dac336514ce65b6ea37c776ce442b793880 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0182x2_1016x624_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0182x2_1016x624_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 624 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0183x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0183x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b16467c9aa45c342be47fef13e2497c31fbebfe7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0183x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0183x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0184x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0184x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d423eb524ce83742ef94625602a00d0a5cae6fa5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0184x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0184x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0185x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0185x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e75c15d5e2d5a6931de54e316e4b44c5be8c7c72 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0185x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0185x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0186x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0186x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c2b12c0c70eac009f2eadfc6f1a1f913b94a251f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0186x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0186x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0187x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0187x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..93d11aa50e4019542f3d30caa31b05a6c0beea30 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0187x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0187x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0188x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0188x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a7adb69993e10826324c4cee447ad7ca3ad3f80c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0188x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0188x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0189x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0189x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b6e7d412e8d6fce54a5bb50a0a3c75f6f34ae367 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0189x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0189x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0190x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0190x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..afd83d14c5bf844e3c69611503fd4e24580ecc9d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0190x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0190x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0191x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0191x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..25a5bab098f8e472ecbfb3e7ef0e5d13e038436f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0191x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0191x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0192x2_1016x720_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0192x2_1016x720_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8a9f9129feae5e1a2c74c011b7ea7cac87778241 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0192x2_1016x720_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0192x2_1016x720_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 720 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0193x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0193x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e3db9997e010c5bcb931b3ce284f2dd56f809b6e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0193x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0193x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0194x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0194x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..510df3856b2815425a1cf00dbe4bf06c67cf026b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0194x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0194x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0195x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0195x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4261658f5e316168f3b89e9eab6a354d3c948ce0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0195x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0195x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0196x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0196x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e68908c67485072bed77cd577d954cf1a8f0d81f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0196x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0196x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0197x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0197x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4f7866dede219a5fc0934afbf74e0f7ef3bee810 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0197x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0197x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0198x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0198x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..42c9670c26b60d7c2e82d8e083a94d28f305f7c5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0198x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0198x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0199x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0199x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8d0577456693759be1dd54e565f4d0c593fb1412 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0199x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0199x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0200x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0200x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ce7b63e337c9dee31c222e0b0d5c974f6c96791e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0200x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0200x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0201x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0201x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9eb11680658e0b98ed84280196843f7d6bea6568 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0201x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0201x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0202x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0202x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..28a3599309eaa1c463723fb987cb80d95cd8f478 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0202x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0202x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0203x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0203x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c8cc6b8545946bf135f8491dde1541b136dba42c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0203x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0203x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0204x2_1016x624_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0204x2_1016x624_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b4c473798076139ba839ecbae3c2457ca53bc583 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0204x2_1016x624_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0204x2_1016x624_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 624 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0205x2_1016x424_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0205x2_1016x424_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9316e530699b297a18654b53353fa1931305cbcc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0205x2_1016x424_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0205x2_1016x424_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 424 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0206x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0206x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5d13ea6b3f50c2acd870749c3a68660025e3e047 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0206x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0206x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0207x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0207x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..44096074e0eaa8be9d32d7f6218a8db0acb26b67 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0207x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0207x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0208x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0208x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3f7052becf4c1bcf08f034d033721295f2fd1da7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0208x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0208x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0209x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0209x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..62433123e5e04a54b924d3af8a4a007868263131 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0209x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0209x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0210x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0210x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e620c94e86c30d54402f7a088ab74ddc9b81c44b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0210x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0210x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0211x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0211x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f32d304d5cc39d2d396cf7564777bab1d963c832 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0211x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0211x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0212x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0212x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e3755b92e5e47d8ee61951c06b9147ae8fc640ba --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0212x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0212x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0213x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0213x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4971993465a4d71edc21c3ecb6c27868d78e0bce --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0213x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0213x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0214x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0214x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d6f638da297fda12d4df5da4aab537d0d2215658 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0214x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0214x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0215x2_1016x776_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0215x2_1016x776_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..939d517f24cd1ad8a5fab0215ea59e91773ed3e5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0215x2_1016x776_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0215x2_1016x776_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 776 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0216x2_1016x816_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0216x2_1016x816_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..acd77b31d7460865523fb8faf9171d1ee367f53a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0216x2_1016x816_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0216x2_1016x816_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 816 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0217x2_1016x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0217x2_1016x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f0401e0d0bd8d0e337f876112d09b75d1e905033 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0217x2_1016x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0217x2_1016x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0218x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0218x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c71ac7aa02e1ad25daf7efc08eda117a4909ca28 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0218x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0218x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0219x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0219x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..15617b4fef95676ad95eb8db11bd15e286de1e7a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0219x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0219x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0220x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0220x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0081aa6d0826ed42fd86ba3e9121e9eb6a348c23 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0220x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0220x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0221x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0221x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..056bd0c8cdc7a4b53236620ee2d7a5c9846b26c9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0221x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0221x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0222x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0222x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ecc218bd5834abc30ea3c5f44e69521748cf7616 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0222x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0222x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0223x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0223x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2ebec17e81952f4a05699ce72939945bef43a3e3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0223x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0223x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0224x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0224x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4148482366b5b56ed8fb3c4270dc775e0271b197 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0224x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0224x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0225x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0225x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6ae2d65c01098230487958181af432f54b568ce0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0225x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0225x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0226x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0226x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..72025efdcab47ca08991acd94745f1db1fe3feec --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0226x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0226x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0227x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0227x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b9705895ffe26c3b93742c12fed7641ad6304201 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0227x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0227x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0228x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0228x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..db24abb65509641f318371194a5dde5b29f4bbdc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0228x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0228x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0229x2_1016x648_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0229x2_1016x648_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..01ac94cda9723ec51c4d680feba31cfd8e5eb3b4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0229x2_1016x648_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0229x2_1016x648_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 648 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0230x2_1016x696_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0230x2_1016x696_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2a2e84e57647e69640c518487bf2cc4529e0f8c6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0230x2_1016x696_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0230x2_1016x696_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 696 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0231x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0231x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..886bdd0909f4ce0b81d50fe1fa896d3d324c5b09 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0231x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0231x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0232x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0232x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7f50196e4d6b727d2eb3f67e99424168f427e52c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0232x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0232x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0233x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0233x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2b499a799936b5d6c12b7a659509c05d8fca3ba8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0233x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0233x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0234x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0234x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f1ced787670799bc98502efed580592d69fc044c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0234x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0234x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0235x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0235x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..946f4958ec78944c823bf0835f28777bb38972fd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0235x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0235x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0236x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0236x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fd623d053d2693b00cef865f31db0907a1c57c2a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0236x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0236x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0237x2_1016x568_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0237x2_1016x568_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8390a9b61fd7044d4c79ef51bd22fb9d5c967b53 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0237x2_1016x568_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0237x2_1016x568_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 568 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0238x2_648x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0238x2_648x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fedf3699a5d86f56d44531d4679a83bf4b579b0a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0238x2_648x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0238x2_648x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 648 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0239x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0239x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8ff8cf0b81e0b8155a5bf4516d9f0ffe56218881 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0239x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0239x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0240x2_1016x912_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0240x2_1016x912_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c10a18d4029d17654462410bcf35178429728b86 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0240x2_1016x912_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0240x2_1016x912_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 912 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0241x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0241x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e3db260841aac28497b01f7e6d2e040b25373cb3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0241x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0241x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0242x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0242x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f5f5d1384a5f27b77f03e8b9126b660d1d63cab5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0242x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0242x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0243x2_1016x384_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0243x2_1016x384_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..66ac1af473bbdc92dca7c3745ba221804f259a0f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0243x2_1016x384_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0243x2_1016x384_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 384 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0244x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0244x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0a71e7be63e93865890600dea356646807cd3f7a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0244x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0244x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0245x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0245x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b54a76c92749185e17c37dc6ddbb0cef851d0f62 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0245x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0245x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0246x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0246x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0af58c37550ea1d8a503ba91cd987739c094bedb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0246x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0246x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0247x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0247x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0e6aba22e7f3febc97a7731986c9884acdf11499 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0247x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0247x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0248x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0248x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a79c69aa64d73bf50152459562af0a548841e983 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0248x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0248x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0249x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0249x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1bdd9e1eb549ef260b1c02bb7d1177da4ec36145 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0249x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0249x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0250x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0250x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8612d770b991eeb546caab4bd0ee5283fec636a1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0250x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0250x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0251x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0251x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..55ef1a558685d50cf3c3a007195496138121ce1a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0251x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0251x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0252x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0252x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9338763752cbc3174374c7df949d3f7a7e8d3918 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0252x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0252x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0253x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0253x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..64ef0894b326c91be5d11ee8cd9600229e358b57 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0253x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0253x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0254x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0254x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..03396e3469ddf592d80779664596314f6301a6e5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0254x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0254x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0255x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0255x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cf9ce6905d8f9fc4620cb6c2ed3c12a68863fbb9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0255x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0255x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0256x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0256x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0d3a45e51255d0961e0b51cff4399ec5959d851f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0256x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0256x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0257x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0257x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fc97b7dbbd176b029ac8e897e9c561cea5865e4c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0257x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0257x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0258x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0258x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5e1673c35a19847fcdafb9b1899242297c8b9707 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0258x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0258x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0259x2_1016x648_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0259x2_1016x648_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d51024b53715b718bfbc392728bbb5df0ee3d663 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0259x2_1016x648_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0259x2_1016x648_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 648 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0260x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0260x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a8b2ced687ff039b812a637e3e781a50ef9c1d59 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0260x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0260x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0261x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0261x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..346391e679d290a40257b00ac250caa133284a2e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0261x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0261x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0262x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0262x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c134f00364a6be29b0f25762781c6ebfebb94a06 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0262x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0262x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0263x2_1016x664_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0263x2_1016x664_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8dade68eb46daf735479b7e9e31e463484993135 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0263x2_1016x664_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0263x2_1016x664_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 664 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0264x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0264x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b5296fc4a30948dddd3e27dcede858515d6b3c77 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0264x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0264x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0265x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0265x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9125cbc9dc9029697822dd12630eac1b77d88c8e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0265x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0265x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0266x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0266x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ca11fcb3d8846c214cd6591d2e8e91bfea6217be --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0266x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0266x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0267x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0267x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6e6e8ad42e5ecc8d92eef5723613b57e07c01713 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0267x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0267x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0268x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0268x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2d27bcde6fd0c0f57392e7b5f0544d2b718d8008 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0268x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0268x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0269x2_1016x816_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0269x2_1016x816_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..482f0bbb13339e26a476fb690da9320f4465b2dc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0269x2_1016x816_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0269x2_1016x816_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 816 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0270x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0270x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..988146b4f30fd3ef62507947ce90ce638aa37623 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0270x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0270x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0271x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0271x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7a1464cdeedc2b76c9e7473c45e89ebd9bc18952 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0271x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0271x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0272x2_1016x592_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0272x2_1016x592_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bcc1286fcedd87de7da34d9ad854ceab6d244e2f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0272x2_1016x592_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0272x2_1016x592_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 592 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0273x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0273x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d27e9404ae8ce3fe595d4656ec2dddec6e9f2220 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0273x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0273x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0274x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0274x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..940d5a9e3c8e796e34cce2eb815ab1be1875d1b1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0274x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0274x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0275x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0275x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8d57c29a952ba382083b4235710590c06657aba5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0275x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0275x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0276x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0276x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2e30660e2d92bb4bb452b9f2c10d302ccc6ae851 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0276x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0276x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0277x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0277x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a516bb7572ddc7fe68581c78ca2578ca56e5d9ec --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0277x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0277x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0278x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0278x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..464a4a9947c89a1ff6dae752ed94d2b0a7d626e5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0278x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0278x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0279x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0279x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b3d5aa65c2f4bb5175f1bbfdced9e70146ca6629 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0279x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0279x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0280x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0280x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..33324bf2eb4f7d3dc31ec6fbaf4dbf349a7016fe --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0280x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0280x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0281x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0281x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ab0ef609644a14a049b95c2c56c5a8bd24133f3c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0281x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0281x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0282x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0282x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5f28e90094826ca1e0fd09ef7db391995435abf0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0282x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0282x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0283x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0283x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6437fce7a72d52f6a6adfb9e28484d53631db87c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0283x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0283x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0284x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0284x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..29d23f82f0b59a56fe91ab4d77b2dae54355775b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0284x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0284x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0285x2_616x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0285x2_616x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a0469a3c4c37e968222da16734ac5ff9ef029738 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0285x2_616x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0285x2_616x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 616 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0286x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0286x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9ed2fea49d3747d2444d4f9185d56129075fe2f2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0286x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0286x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0287x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0287x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d94a78071c40b970a4fcd785bde0f8f9ff420d6f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0287x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0287x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0288x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0288x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..abfc157f44d1ea4a3e6d9967c4adce3b23e780e6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0288x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0288x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0289x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0289x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c3f90cccc1971ab0bf70fd3a7ae98ee65b071d30 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0289x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0289x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0290x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0290x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ee05a12d4c15c5c6518ce58b451b8a31ef63f077 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0290x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0290x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0291x2_1016x624_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0291x2_1016x624_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5af203f5df812ba01e229c21edf4d2542dc67eb4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0291x2_1016x624_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0291x2_1016x624_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 624 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0292x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0292x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3758b5d675bfc4a792afb7281e8c3d1661a08f52 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0292x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0292x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0293x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0293x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..67fda33790e20a16509fbc25153aea340324ec67 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0293x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0293x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0294x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0294x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..511b7f65215b05103e3f8b5b5be0b1cf9c70c4e6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0294x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0294x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0295x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0295x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d559b3a0dc6b405c208ac212f39932ca8e1a4f2e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0295x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0295x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0296x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0296x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6cb3f20d32a28acf2a085acc5de770448613472c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0296x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0296x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0297x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0297x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ef80053769c48249135c21c197f0e650fe337640 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0297x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0297x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0298x2_1016x608_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0298x2_1016x608_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8627644eb9daff006e735ddc5e304ee3073f752e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0298x2_1016x608_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0298x2_1016x608_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 608 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0299x2_1016x696_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0299x2_1016x696_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b697f3da33ee8b6ee56a83cc5c7db606620dd4b6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0299x2_1016x696_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0299x2_1016x696_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 696 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0300x2_1016x656_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0300x2_1016x656_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a84e2bb96cd2df549b4122d3527687186eb0739f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0300x2_1016x656_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0300x2_1016x656_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 656 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0301x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0301x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0a337109762020427d060fd199c2127167754480 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0301x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0301x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0302x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0302x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a5dc07b568bd717b5d8fba2dd6ce65b6c2459041 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0302x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0302x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0303x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0303x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3e0ef9ce37232ffaed8447633dc1ef5a88d403df --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0303x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0303x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0304x2_1016x608_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0304x2_1016x608_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aa316c48ae66d80a153ce30c58b0d398e37fbfaf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0304x2_1016x608_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0304x2_1016x608_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 608 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0305x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0305x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9f8c44dbb92bb1c34635daf0a4cf81caf594fe96 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0305x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0305x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0306x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0306x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1fbaaabe1144c0cd19de138cf8ae3d11ed47d417 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0306x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0306x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0307x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0307x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6ec84ded0ecd3a9bd55e4b280038986ff5b7c509 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0307x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0307x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0308x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0308x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1775afa23743bc0b757bfde895a8b12156fee345 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0308x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0308x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0309x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0309x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c56d19710a2df45d8bff158c5d282e66dbf5cbed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0309x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0309x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0310x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0310x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..10970df3a0f67383de958b6ec4a4088615d21f27 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0310x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0310x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0311x2_1016x592_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0311x2_1016x592_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a8c27317793a2a34fc0ff8c8c410be0e63fcbb3b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0311x2_1016x592_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0311x2_1016x592_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 592 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0312x2_856x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0312x2_856x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4ff3701e280a40d4e05de27af81d57d5383f1b35 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0312x2_856x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0312x2_856x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 856 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0313x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0313x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1503dcc4d4ae03ff77ad75121adf5ecf9d58b322 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0313x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0313x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0314x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0314x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..acc78e318aa71d93927a2b3ebd96128bd33e7d44 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0314x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0314x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0315x2_1016x600_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0315x2_1016x600_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..634f7a256b918a591a9cc7b03513e3e4720ac16c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0315x2_1016x600_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0315x2_1016x600_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 600 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0316x2_1016x664_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0316x2_1016x664_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..886e900d18aef497ecc81dbf90326f0c1f0574fa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0316x2_1016x664_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0316x2_1016x664_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 664 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0317x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0317x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2b6a037db457927dbb15e9af2ae989ba5ac108d5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0317x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0317x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0318x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0318x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b9fd3e77a98fc273c00b170fe5d7527073894a62 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0318x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0318x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0319x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0319x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..aff407e7aacd7b87e8398d73005b3733fd8e505c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0319x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0319x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0320x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0320x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..01cf5e32d858301ca767c39f3c863692869dc0d1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0320x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0320x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0321x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0321x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b464b4d3e3480f34a32bb8bf613dc0e8c1223d63 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0321x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0321x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0322x2_1016x816_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0322x2_1016x816_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cd7c712d0c60c4dd1b1aab6a5fe4e2594f8bf5c0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0322x2_1016x816_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0322x2_1016x816_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 816 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0323x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0323x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..51ba90fe90a4b8b9a5f6c360d40589326d4a5c4f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0323x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0323x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0324x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0324x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8a575ff8930a277ec0290f05b87147ce9316bbbe --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0324x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0324x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0325x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0325x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..46245a64b7e011407119ddf044e5f9bf007520a4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0325x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0325x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0326x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0326x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f62d0f667f3d12c1b490d8a95fd5fa48aa7c7923 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0326x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0326x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0327x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0327x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bd287167153c75b131efdec594f9f7838bcbfe1a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0327x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0327x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0328x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0328x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..22c059add21e86637f32817bf63e4f4132bb7352 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0328x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0328x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0329x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0329x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..88d6c759fff95b8b40bae1ddb6d971fd6de9c168 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0329x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0329x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0330x2_1016x568_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0330x2_1016x568_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..25149b733717c65723941ff7d064486f797f4e00 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0330x2_1016x568_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0330x2_1016x568_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 568 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0331x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0331x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b5c8d118d58f714939edda7619583d42fa965ff9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0331x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0331x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0332x2_1016x608_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0332x2_1016x608_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d896baacb11cd8e528ab0a0e36a6fd381bae437c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0332x2_1016x608_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0332x2_1016x608_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 608 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0333x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0333x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..04d2327cab72e90b86951ca4cb52d4a04c48e731 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0333x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0333x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0334x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0334x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..919e13defec04047b7e61ec8638ec396fb1cf22c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0334x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0334x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0335x2_1016x632_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0335x2_1016x632_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fb59bf3a13da9c0142116919cb828a49f512479b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0335x2_1016x632_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0335x2_1016x632_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 632 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0336x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0336x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d7b33cc9ef9c9a0e57f5158f28a80e0eb33319f5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0336x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0336x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0337x2_816x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0337x2_816x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..272f08b555cf0833206e1997b384502e09626453 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0337x2_816x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0337x2_816x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 816 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0338x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0338x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..064bcbfe222ee76223affe06e468e5fca56f80cc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0338x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0338x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0339x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0339x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3b2b8813bb10ce783386494d57ef7e1b65f8deab --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0339x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0339x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0340x2_1016x368_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0340x2_1016x368_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2f9260810a2705b6ba72c0f4d1726970c1742405 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0340x2_1016x368_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0340x2_1016x368_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 368 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0341x2_1016x720_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0341x2_1016x720_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3b472107954cca9387f9d2038aab51f90e083570 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0341x2_1016x720_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0341x2_1016x720_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 720 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0342x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0342x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9b5423303cc1a0d33b0df7863bdcad534cc35cf5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0342x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0342x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0343x2_1016x600_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0343x2_1016x600_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..98901a7353e73326ca4d8e83569a8b985327d9e2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0343x2_1016x600_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0343x2_1016x600_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 600 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0344x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0344x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..83d384ace3e275d7e424a26a9192422d893bb834 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0344x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0344x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0345x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0345x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8bb7ec655b7d940e89d6a60b1bd70da12387dfd0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0345x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0345x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0346x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0346x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f7e72a21fccc8bf4d2dc79ac6f4c45ee39892bcc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0346x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0346x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0347x2_1016x896_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0347x2_1016x896_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5358cb7576089124e4eb98315a9d5d012df5968a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0347x2_1016x896_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0347x2_1016x896_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 896 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0348x2_1016x624_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0348x2_1016x624_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..380d333e2197a8b7c7050ad7cdd24aa048b364cd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0348x2_1016x624_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0348x2_1016x624_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 624 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0349x2_1016x696_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0349x2_1016x696_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..84ca636c93ddb5a2beebf8d2d48182c10a2a09c6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0349x2_1016x696_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0349x2_1016x696_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 696 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0350x2_552x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0350x2_552x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e6d91d414d71d68bb1d6106ddf521349b880dc8a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0350x2_552x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0350x2_552x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 552 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0351x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0351x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..20e324567b3f42bf00a41aa314ba961916422e1f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0351x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0351x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0352x2_1016x440_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0352x2_1016x440_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f6c8ced4a9b86bb628809e4723e80399d5c76930 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0352x2_1016x440_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0352x2_1016x440_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 440 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0353x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0353x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d5f71312c8135579a943b0bff8c86a51ef08fd0f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0353x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0353x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0354x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0354x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7e0cc92f8d8ce2775c0962155de756af0e872108 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0354x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0354x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0355x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0355x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4a87cd72ad7a9445da1ce054e50b382bd1d88b4e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0355x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0355x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0356x2_1016x632_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0356x2_1016x632_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..db6b6fa6eafcba389bce1809614aed3cae88767c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0356x2_1016x632_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0356x2_1016x632_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 632 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0357x2_1016x584_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0357x2_1016x584_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7ae2dc12acfae0431a211d926b68311b1868a112 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0357x2_1016x584_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0357x2_1016x584_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 584 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0358x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0358x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3f72d9b00cdd6880f59ccbcd244beec5c8344b49 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0358x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0358x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0359x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0359x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..20d975cdfc8cae49c4098342e2ba05e0b0cf9bda --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0359x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0359x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0360x2_1016x1000_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0360x2_1016x1000_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b995cf56764ff736160a11cdea52638a206c6f1c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0360x2_1016x1000_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0360x2_1016x1000_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 1000 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0361x2_768x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0361x2_768x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8b724d218e05b31697f8c0f96fd70227f9f95a04 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0361x2_768x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0361x2_768x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 768 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0362x2_1016x728_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0362x2_1016x728_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..900f4d373f3ff7fe4bdbc58895afcd2aa188e955 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0362x2_1016x728_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0362x2_1016x728_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 728 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0363x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0363x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b3e83fa04630506bb377e0ad179637c6eaef9bc7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0363x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0363x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0364x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0364x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a1641bb64d1a34804c10a941be4730c7e1b781e8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0364x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0364x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0365x2_1016x600_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0365x2_1016x600_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fb1b9c256c31bf8d0ff32a6709795531036b9b53 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0365x2_1016x600_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0365x2_1016x600_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 600 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0366x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0366x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..27998e35ac6c55303c1bb1bbd835489fbc8698d8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0366x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0366x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0367x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0367x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8e178a23634ca5d48969497a9953b59f96328952 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0367x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0367x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0368x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0368x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..af775e7d7ca5e517fc44510efef84ccdbd0d5954 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0368x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0368x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0369x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0369x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a4fb2d9ab96cf3c6e597458cbd0640be3ef47dc0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0369x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0369x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0370x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0370x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8823e31218c22c2f23ae760a268c54ec788b45a3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0370x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0370x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0371x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0371x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a0d45dd9b481da9dd08c65912c119140a724b813 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0371x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0371x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0372x2_1016x568_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0372x2_1016x568_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..72fd28cba9f6f5b2aac95ef10f3a3067f66a4eee --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0372x2_1016x568_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0372x2_1016x568_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 568 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0373x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0373x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..30a61b91369f164c4d5647a2e55c2d6bafcf17eb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0373x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0373x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0374x2_816x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0374x2_816x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cd8e3b5a295aa4b0eb1c67d5cadf7e939ab61a98 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0374x2_816x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0374x2_816x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 816 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0375x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0375x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1210dfb4041515f5bb25aabccb622cbd03517f8c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0375x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0375x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0376x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0376x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fc3ee4b6647defa32497555ccb4c556c5468f352 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0376x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0376x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0377x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0377x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b7fbc27da2a07aa4c936f02af37c2fbc35277e91 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0377x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0377x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0378x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0378x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..13dd53568e0bfbcffb1c8d5cd2c54a2810a935d9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0378x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0378x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0379x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0379x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2065839b3d83bd824e83bfd4401f75c84f806fa3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0379x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0379x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0380x2_1016x632_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0380x2_1016x632_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..25df86238a0b87901c2f02fd37ba372913be028a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0380x2_1016x632_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0380x2_1016x632_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 632 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0381x2_1016x720_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0381x2_1016x720_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..be0beab90bf068a04b69a07924582fa6b803bfbb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0381x2_1016x720_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0381x2_1016x720_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 720 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0382x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0382x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2775516255fa38006c1b974a4dc7a9757839e45b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0382x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0382x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0383x2_1016x752_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0383x2_1016x752_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a6938db53601375d1759c51461e7b99dcd7920ba --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0383x2_1016x752_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0383x2_1016x752_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 752 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0384x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0384x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3c862ca800bc8938bb131a6d64ea4eaa4f0df9fa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0384x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0384x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0385x2_720x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0385x2_720x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e771c6caecdec499f807759f549ed05d04d7695a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0385x2_720x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0385x2_720x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 720 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0386x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0386x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e64aeb3d5bdc36c4ee54e19152082b7e7a3b71f1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0386x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0386x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0387x2_1016x480_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0387x2_1016x480_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0361c30b3c18289dcd8dfc79e8d040f698c1b80a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0387x2_1016x480_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0387x2_1016x480_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 480 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0388x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0388x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ee55754597b0f193af0db691abe48f30f32f40af --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0388x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0388x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0389x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0389x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a49441ad3d6870ba3d6f0403c9895710e85e5d93 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0389x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0389x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0390x2_1016x648_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0390x2_1016x648_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fa0f17826de12cb7b090d3cf168c04133d021cb0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0390x2_1016x648_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0390x2_1016x648_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 648 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0391x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0391x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4f51660ecafffd3889acf6d8bdb20e28d52d3cca --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0391x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0391x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0392x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0392x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..11e7521dc26abd2388175c99e0b235a4f1bceb40 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0392x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0392x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0393x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0393x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..469d5d509e78db61f01a48632d3384b543382c4e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0393x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0393x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0394x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0394x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..77c03884dfa35622e47d7b0f7f6d865aa92edc4d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0394x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0394x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0395x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0395x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d27925c125b61be57e3a1a56d89ef7c8005fb71f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0395x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0395x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0396x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0396x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..80d5f4a4911f06ddf775d7f49e8d20492aa36e4a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0396x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0396x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0397x2_1016x624_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0397x2_1016x624_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fa18e067278e50a072bded0bb8d98bc541172151 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0397x2_1016x624_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0397x2_1016x624_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 624 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0398x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0398x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5e136a4ca9eb59fef48bf2cf2560da69c293cf18 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0398x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0398x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0399x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0399x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d77fc20a64d1f02f04a67bc39e33d5b473383bf3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0399x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0399x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0400x2_1016x640_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0400x2_1016x640_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dbd33fbed3e62e6b84efaeb89f6bdeb1e2393b17 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0400x2_1016x640_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0400x2_1016x640_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 640 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0401x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0401x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8f8e194913296e7611a976d97d1653296a5c8660 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0401x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0401x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0402x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0402x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..65c2d3472ea58fe01c38461e4bd3858d5e9dd3fa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0402x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0402x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0403x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0403x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b17a75958877f77533d8d09f749e040add3bde5f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0403x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0403x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0404x2_1016x816_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0404x2_1016x816_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bd7a98978eb066b1c5e12a3e197cbb4cb30f484d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0404x2_1016x816_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0404x2_1016x816_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 816 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0405x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0405x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6680a97d7d02efe8ee6268832deec8e016dca7a9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0405x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0405x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0406x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0406x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9b30c05d1a1fe9fd9843c60ee9655ced8555fda4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0406x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0406x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0407x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0407x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..74445bb8675b48bfd045f7012f373879a443c21c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0407x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0407x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0408x2_1016x728_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0408x2_1016x728_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b3419ec1baa35faa8a987580f1e7d7cad07e9069 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0408x2_1016x728_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0408x2_1016x728_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 728 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0409x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0409x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cdd4940e0928277bbd2a754c576aad14b3f2d42d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0409x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0409x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0410x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0410x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0ca0073c0841efc8818cf0707fa9339682aeb8ce --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0410x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0410x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0411x2_1016x624_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0411x2_1016x624_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f18ea4bcba9ecdcf1db3784422dcc59ced7d17de --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0411x2_1016x624_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0411x2_1016x624_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 624 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0412x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0412x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..df71fb9f03cd8b5d02329528fe74a9b2836c1e5c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0412x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0412x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0413x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0413x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ff32a92cae4ce30009ae528aeb00ab5851fb07c9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0413x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0413x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0414x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0414x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cc7df46034ce0e22eed37b9091f8065c4c78d575 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0414x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0414x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0415x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0415x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9bcfce78238696106f7ca9e5cf367bef1a61418e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0415x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0415x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0416x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0416x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..483422d3efd3c083af956ac42408991c7eb5d2e6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0416x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0416x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0417x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0417x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0714ed82b436b3389a099c395bafba2e10197f08 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0417x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0417x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0418x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0418x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cc48688be52856dcb3e9cb2cbba3f209844c3faf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0418x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0418x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0419x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0419x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4eb86b260d19ee6205933402c0413af2c7ff718e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0419x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0419x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0420x2_768x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0420x2_768x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e09325a84af372be769de3440c45ddfadb42bd8a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0420x2_768x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0420x2_768x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 768 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0421x2_760x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0421x2_760x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bafd29b70b28ec2b8e79a2e2dc21323b011c3463 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0421x2_760x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0421x2_760x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 760 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0422x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0422x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3f30f9c458ac4d9a9fdf0693e1594577329c8a2a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0422x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0422x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0423x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0423x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..495770a9e757b5a1974022010d8152d82b88cb16 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0423x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0423x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0424x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0424x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..df32877b9c2fb073d4a59d669e55dc1eab630156 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0424x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0424x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0425x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0425x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6864eb394c94119286ed0aa851556e76566232ff --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0425x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0425x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0426x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0426x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..11b2059bd1ec86c63ad32fcb5b98ff300f972418 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0426x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0426x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0427x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0427x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ddaf6556037b33117ecfc12bf238fc27e323b6b0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0427x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0427x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0428x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0428x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..de965ac567b326be768053cd2cdb6f39cd9a3f86 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0428x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0428x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0429x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0429x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4af5199a580aab56b0aee487381eb7189c33d19f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0429x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0429x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0430x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0430x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..698137f9ded2a58ed91cfbe7c2e46252a49556df --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0430x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0430x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0431x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0431x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4f85537f6c284437e2b5eda3467f06ff88c7558e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0431x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0431x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0432x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0432x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fe0c182669a636a16a9d0d83e715d2fc0293f8bd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0432x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0432x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0433x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0433x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1fca2da94b280bd98c9985cd83f3841638438f09 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0433x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0433x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0434x2_1016x608_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0434x2_1016x608_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c2c9f20b1b668c284251d4342384a0c7b7a80716 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0434x2_1016x608_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0434x2_1016x608_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 608 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0435x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0435x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d7f004c1684eb1143fb304fca7264227a6dc28cb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0435x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0435x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0436x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0436x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..51515f1c4f57e49445e9a54f33705eb6541d1395 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0436x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0436x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0437x2_1016x320_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0437x2_1016x320_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d0b92bab4c3a87c5b5e999759dfc56bf48a3ada0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0437x2_1016x320_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0437x2_1016x320_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 320 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0438x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0438x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a0b5262a7d866a1003dd57ea47261fab261fa36a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0438x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0438x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0439x2_1016x696_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0439x2_1016x696_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..20142334c5fb9503ee54982e08fea9b187d08b53 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0439x2_1016x696_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0439x2_1016x696_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 696 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0440x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0440x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fa0aaf6d0e0b629b44c778534ff3dd81973fa291 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0440x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0440x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0441x2_1016x592_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0441x2_1016x592_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e56df7df5be75be897e1e00efaa9db944d459b3b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0441x2_1016x592_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0441x2_1016x592_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 592 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0442x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0442x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b8763b633102289fa81d8ff71d1c0c7ef661c8ec --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0442x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0442x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0443x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0443x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d4610d83f7367c57d45dd508672e62d3f8dce478 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0443x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0443x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0444x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0444x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a7de5dec77a8a840f23ab3b5b4e28d9d31138d79 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0444x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0444x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0445x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0445x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dca6dd151fee637b099e8a69eb426a2ac8ac1c76 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0445x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0445x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0446x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0446x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..deef2daba9a6a1d2cc61efdcdf6598bf1ed7e832 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0446x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0446x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0447x2_1016x840_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0447x2_1016x840_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1bdcb8db25f3ae9127c6445594932d934d96ea89 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0447x2_1016x840_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0447x2_1016x840_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 840 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0448x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0448x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d450bb5a79db18a5a8fcf00680c0c943dfc121c9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0448x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0448x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0449x2_680x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0449x2_680x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e3152099e19af1a40297a0ce5e06073a8738e3f2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0449x2_680x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0449x2_680x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 680 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0450x2_1016x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0450x2_1016x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..00adf8a5e89caf92251db3c6e13d29c13c947b95 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0450x2_1016x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0450x2_1016x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0451x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0451x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ec53f4322f46acf21d0b81d9285da70f42fe8722 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0451x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0451x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0452x2_1016x712_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0452x2_1016x712_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a94853ee8238059c401ed61c747276db06ced429 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0452x2_1016x712_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0452x2_1016x712_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 712 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0453x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0453x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a23080929a50bdd6ca30a0576cd9e026e8da940f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0453x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0453x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0454x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0454x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..77533c62c7c7c0a590fa5a1948b8325d40de5df6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0454x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0454x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0455x2_1016x560_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0455x2_1016x560_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0e171f32c0cbeb4e8a020dd915ee969805ecd85e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0455x2_1016x560_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0455x2_1016x560_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 560 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0456x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0456x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..21a960917dca48c6eb802093f7f84ecf15c84e56 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0456x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0456x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0457x2_576x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0457x2_576x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b9d789746835010328a73c1093b065fbfd443258 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0457x2_576x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0457x2_576x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 576 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0458x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0458x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..129b756615476f421bfb34ece5bcbd9a1d1c7827 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0458x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0458x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0459x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0459x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5551d6ae287fe8f9efab598eeb5e5d18581121db --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0459x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0459x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0460x2_968x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0460x2_968x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..15912c44cdd2461e3b4b9294b3857b4e61b4321d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0460x2_968x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0460x2_968x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 968 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0461x2_720x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0461x2_720x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..16b740b6b1a7879952bd0eb1f264584dc5c520f6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0461x2_720x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0461x2_720x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 720 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0462x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0462x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5707d7f014875ad01913c8e70358dbebbb8b1b68 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0462x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0462x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0463x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0463x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..662f24de1fe8ff9bac1fffdbe63f2e14d56b1ba4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0463x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0463x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0464x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0464x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..856a0cac0fd8e714cd1b12a1733187875f425558 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0464x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0464x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0465x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0465x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..004c3d2443e5f872903629cab54ab2f8b1dfb09d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0465x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0465x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0466x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0466x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0f23adf4a7a36913a4493ddf6e428f64be702121 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0466x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0466x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0467x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0467x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a468c97cf1cb893a3f09c166733158c106aad84c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0467x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0467x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0468x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0468x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2423a38b23bead1efb7c9e7707f2b144f719804e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0468x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0468x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0469x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0469x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e223efe4bba94c5dcd15a99378c739a1912a3caf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0469x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0469x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0470x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0470x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b4e94fefddb4a2b91c2547e65a94a1c141a1642d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0470x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0470x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0471x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0471x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..860d93c2516f2cbb9473bb8046942d8b931418d7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0471x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0471x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0472x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0472x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3c8df76bf9fb92895b32f16cc948ca81ca60beb4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0472x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0472x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0473x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0473x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e3e7bb943191999405ce5d79ccff7b654829e37f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0473x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0473x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0474x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0474x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2139262fb672c8279ebb5a897904a1756224d126 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0474x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0474x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0475x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0475x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..63f37532902a0fad084f18aa6689962d12c638c9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0475x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0475x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0476x2_1016x720_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0476x2_1016x720_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d945cb5d7235d4e9dc1cfcdeae4734c67298ec74 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0476x2_1016x720_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0476x2_1016x720_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 720 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0477x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0477x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5603b3adb23495489f713273d7351c5d1597869b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0477x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0477x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0478x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0478x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5a8ad3f7acab83be17c560ffba04e55f66e4e3fa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0478x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0478x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0479x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0479x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6f43c8d8779b88a8a241bf18c365cc2c760a886c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0479x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0479x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0480x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0480x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1bd42b2bdf7b10c7acab2a70dda6a025246d28be --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0480x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0480x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0481x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0481x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..219c9c534ebc4fe81c15e7bd89814aecedfbbd6e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0481x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0481x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0482x2_1016x744_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0482x2_1016x744_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5cccb48881af9e7bd8db43b372beb37f2016f09d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0482x2_1016x744_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0482x2_1016x744_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 744 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0483x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0483x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6a6dc5d8e2967ad5ad4d9194a0448d05eff21884 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0483x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0483x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0484x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0484x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4043246a013ee18555a4fd8ea93d0097d1ea6cb8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0484x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0484x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0485x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0485x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cb231633ad5ff1ff3ebcd20e95497f7a34a0ec35 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0485x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0485x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0486x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0486x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c8f2ed09ba8fce8cfc3f3d13a8a4116c083177c3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0486x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0486x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0487x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0487x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..58a802c2055ad35c37600bf7fc8e66df4eb09d0d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0487x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0487x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0488x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0488x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..67b3ff54107197c70d917cd48668d732966cb7c3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0488x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0488x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0489x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0489x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..445e58dae1db70b7bc1ede8893f7ca2f176bf3aa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0489x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0489x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0490x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0490x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5e9bd8b789d428672c0a5649e7ba620fff2b8b9d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0490x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0490x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0491x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0491x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..92e6e043757271205a3b3cebb5c35cefdcd6ba3e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0491x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0491x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0492x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0492x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bab9742d4836f1d3e9263c78f5bedbac74af029b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0492x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0492x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0493x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0493x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4b90952167b100e7013260f5e0d0eb084f64f994 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0493x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0493x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0494x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0494x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8f036741af2c89b75c306d02d8ad1aced94a7d27 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0494x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0494x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0495x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0495x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6055f363d1784a6095d78c43e6c9ae147309094b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0495x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0495x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0496x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0496x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..daade4c6cd6c30f31cfa849587c4fac2d1226fa1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0496x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0496x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0497x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0497x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b5a7cf9df775051207b317f7547d93505eb04a9d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0497x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0497x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0498x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0498x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..debc2c38181c48aa99cf740148ae80cd71cbe6ed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0498x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0498x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0499x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0499x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..57e124754c46d22b1db8fd77151ff39919c98608 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0499x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0499x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0500x2_1016x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0500x2_1016x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b049479982cee91c794a31d1656410f8713f39d2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0500x2_1016x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0500x2_1016x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0501x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0501x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..de8d72f62c61ceba4fc6007b7d0bf03dd5fe2b0d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0501x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0501x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0502x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0502x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c1f0d55effa63c49b3d47d73ce582336efeea4c9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0502x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0502x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0503x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0503x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b41ced964db74f646dfb8286423e79d1c56f750e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0503x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0503x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0504x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0504x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5b067b1b9488eef159e6e9f6e717fbf60bd1fcb1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0504x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0504x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0505x2_1016x568_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0505x2_1016x568_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ae68994c54f910548a5d1b2fb0b39ea31eca2172 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0505x2_1016x568_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0505x2_1016x568_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 568 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0506x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0506x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2b9c2f49a19e95b77361aa5d7b31409987b34c9f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0506x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0506x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0507x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0507x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f82923e25c32a0ac8223b8c3f09b97e03dac2d86 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0507x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0507x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0508x2_680x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0508x2_680x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d6180a77cbc55244a2b2fa326ae2560e8d54f845 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0508x2_680x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0508x2_680x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 680 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0509x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0509x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ddce5d4a9204da3e66da3813e8e2c8ded284d421 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0509x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0509x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0510x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0510x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c03085d000a3c7566ea701092b93bd398aeaf0d7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0510x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0510x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0511x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0511x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1e7f00c621589902ce03c07b7bede0ab895bcc2f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0511x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0511x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0512x2_1016x720_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0512x2_1016x720_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7efacafc8e5b23f0869068de717d13d95e2f7b39 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0512x2_1016x720_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0512x2_1016x720_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 720 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0513x2_1016x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0513x2_1016x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..20d32772c7d62202903225f4adea44a23c5f90c2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0513x2_1016x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0513x2_1016x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0514x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0514x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0da80d52f41186f8e53579883f1e3fb59003f14e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0514x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0514x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0515x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0515x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5c15a13af2612c65d39c99556234d50a1c755733 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0515x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0515x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0516x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0516x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..60a900d6cb0b0e541564ea1d578e5d0af78efe7f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0516x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0516x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0517x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0517x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..41c95cb690f77172a4432dce98cf3e5af6a6300b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0517x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0517x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0518x2_1016x480_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0518x2_1016x480_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..88b633aa30370251ac1dd764304c5c3283a3ddc3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0518x2_1016x480_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0518x2_1016x480_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 480 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0519x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0519x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8498ba961c022405f077c05e250188971416b827 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0519x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0519x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0520x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0520x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..de27416b1c404f8c632cbc0ee30c08ee760445d0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0520x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0520x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0521x2_680x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0521x2_680x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9d7c205c091e90bdf5d0ea4c8113f98c652b987c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0521x2_680x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0521x2_680x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 680 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0522x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0522x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..539610fc5a633b0be048bda99e9c1c9e0ae482a6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0522x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0522x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0523x2_1016x440_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0523x2_1016x440_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c01ade280d4c749beb5a5692fe56ea284b7660cd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0523x2_1016x440_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0523x2_1016x440_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 440 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0524x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0524x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3abc446bf2f368b0ea45ada957670f5633f17d70 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0524x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0524x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0525x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0525x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3c12ed3f869b6b9814604c88aa3e036f8798c1b2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0525x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0525x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0526x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0526x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a1b9331a6926ed7416a05f0942a208b9901dd3a9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0526x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0526x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0527x2_1016x520_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0527x2_1016x520_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..eec4f6bd1f7be7b1e0c4de759fcc9b9428dcf91c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0527x2_1016x520_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0527x2_1016x520_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 520 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0528x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0528x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2978e0ec253cedb7f18249456d2b7697f7cd9fdb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0528x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0528x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0529x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0529x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fa69da6cb7bf4b46a423efc60523e321a370f190 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0529x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0529x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0530x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0530x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b56a8915c9e63022e301055fa04c0e2d87cda4c4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0530x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0530x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0531x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0531x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1934d56c7493f07a972b39a01ab9b286703e97af --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0531x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0531x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0532x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0532x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7c1f04356998e28051429ff3c564aad8c02d64ad --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0532x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0532x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0533x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0533x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d347d67ef253821a3014304c3aba1b58ab80d760 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0533x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0533x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0534x2_1016x608_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0534x2_1016x608_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..dab693c5496ca7a93fb9c2ee294858a676f621ed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0534x2_1016x608_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0534x2_1016x608_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 608 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0535x2_1016x640_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0535x2_1016x640_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ab173914887e6488abdf1aa686eb433af103ae0b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0535x2_1016x640_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0535x2_1016x640_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 640 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0536x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0536x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6e5f934bb878620ab5faa537a2198dc77e43ba19 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0536x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0536x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0537x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0537x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b849970c9a8fec254d517a5960b41ae4849225f6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0537x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0537x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0538x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0538x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ea1e20d4622de894eaa4d725ae05f27f5cdc41ea --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0538x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0538x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0539x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0539x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fa9cbdfd24490ea484083a0cbada9364cdb158fa --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0539x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0539x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0540x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0540x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f6769f64c9eec9726fed11788f2c61849c8f27dd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0540x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0540x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0541x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0541x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cad2608c4c956c6f50d5410ebc29c459e43d107e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0541x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0541x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0542x2_1016x568_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0542x2_1016x568_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f056f66507eb2fd6f86942a67c8c5c153644a1e8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0542x2_1016x568_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0542x2_1016x568_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 568 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0543x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0543x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8bff8e61f5a196a9df0373cba5e657d41c729f32 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0543x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0543x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0544x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0544x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..524178f5f9a86e965bde56e525ebec8610fad32d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0544x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0544x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0545x2_992x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0545x2_992x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..98d20d226402e12be9ac516961c02ec91a9922c2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0545x2_992x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0545x2_992x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 992 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0546x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0546x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..edc1b7d5a1ffb9fe01959f4e620463437b1b2a5c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0546x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0546x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0547x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0547x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1ea9b4c590b81fed2b06788651e6e70e511e6fb9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0547x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0547x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0548x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0548x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..53a37cfde78e9fa15416b1cd226052e172203d0b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0548x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0548x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0549x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0549x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e8cb96d9ed55d30cd99b2c9940b8c02f206f99ed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0549x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0549x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0550x2_1016x608_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0550x2_1016x608_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ff88b3618b8fc3298c5b339da5bc6651f49acfad --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0550x2_1016x608_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0550x2_1016x608_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 608 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0551x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0551x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ec9a387906b80bb67a6357cff785ae781fc78ba1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0551x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0551x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0552x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0552x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..78fe6200afd6d38ad3177aa5c0c9eb3fa09b319e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0552x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0552x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0553x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0553x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d9ae3d2d8ee38fcdde346ff606061d32c2e0ad26 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0553x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0553x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0554x2_1016x664_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0554x2_1016x664_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..abf074344e8d845692c8d5e40b574ccc5c4f10e2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0554x2_1016x664_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0554x2_1016x664_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 664 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0555x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0555x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..703cb4617623d1d09194e416e5f38dad7d06bbf2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0555x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0555x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0556x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0556x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b077cae8be04567badaa37bf61e8f480f6663397 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0556x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0556x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0557x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0557x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cbf4041dc4f7434f19a87e2d5519229ca81fa611 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0557x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0557x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0558x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0558x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..95eeb11ebd96f07f8a3d67737f8e1fe5a8ea5d2b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0558x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0558x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0559x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0559x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bb08486d356e34c8c873b02fc4235c7cb0f4346a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0559x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0559x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0560x2_1016x544_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0560x2_1016x544_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..739e96010c11ed38ed2260af23ee531ae9d275a7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0560x2_1016x544_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0560x2_1016x544_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 544 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0561x2_1016x584_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0561x2_1016x584_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9cfb991f0e7e2aab948780656668d2386eceba26 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0561x2_1016x584_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0561x2_1016x584_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 584 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0562x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0562x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2fd546c3ee73909d8ea38fcb03074f5dbcb0649b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0562x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0562x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0563x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0563x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a51997aa32d42178962c084df2d05da24c2d1190 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0563x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0563x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0564x2_1016x800_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0564x2_1016x800_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e80b2a3eb3ed6c97c14e7f59b28a8e5fe0cbb580 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0564x2_1016x800_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0564x2_1016x800_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 800 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0565x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0565x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7ea3551d81c438f02b4de767f06a5dce8c3e518f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0565x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0565x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0566x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0566x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0a80317fac4a7cb08e4ff4eb1a1ee0e7bf730bb4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0566x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0566x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0567x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0567x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c3e58c66287b70f0dfa3cf23ae1ebf14e9727912 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0567x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0567x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0568x2_912x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0568x2_912x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2c5ead3317382960fdebb4faeed2619a4fbd99b6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0568x2_912x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0568x2_912x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 912 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0569x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0569x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..00498fdda9e558588007e99b4a38dfb753675d03 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0569x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0569x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0570x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0570x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..af76ccd062774da035b184e0d9dfd3ccc01f1625 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0570x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0570x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0571x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0571x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cd678b18ce7e5828543741eef8b7c310622b7db2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0571x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0571x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0572x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0572x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..66638d40c6b7221749aecdd3f7914192024cbd74 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0572x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0572x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0573x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0573x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ad3a1625587065f428a54938941fc6a147eba6b7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0573x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0573x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0574x2_1016x664_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0574x2_1016x664_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..48f5a9c6b9a7f48257baacb3518eb6d4161a0dc1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0574x2_1016x664_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0574x2_1016x664_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 664 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0575x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0575x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7c3ba9d8b0fa795516c569060048d2411f80b7b3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0575x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0575x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0576x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0576x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e9833b02e8bd65eb9d6775489bcf1f94262ddc68 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0576x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0576x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0577x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0577x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f273d083ee1312d11120048584bfdecb0fd747fd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0577x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0577x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0578x2_1016x624_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0578x2_1016x624_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d5c755e2319bcb6fad401a918f3a1a5c0f32ba01 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0578x2_1016x624_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0578x2_1016x624_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 624 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0579x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0579x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..67e30f4903c4516ceff28114d45d1d18b39087b3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0579x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0579x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0580x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0580x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8197e87d0e8bf66ed81f8284ba167f656e38cffd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0580x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0580x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0581x2_1016x528_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0581x2_1016x528_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ae8eb00669aa1dcc3bc889b77d0f9dc5a182891c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0581x2_1016x528_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0581x2_1016x528_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 528 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0582x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0582x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2f67edbb608d8c690180c2854a4a67831c064bfb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0582x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0582x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0583x2_1016x592_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0583x2_1016x592_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9cc2ea32fcb51e0ca37c37b025096baabbdf7165 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0583x2_1016x592_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0583x2_1016x592_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 592 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0584x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0584x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..73dcafedc33985f8935badbe04ad9c22d462b9c2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0584x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0584x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0585x2_1016x624_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0585x2_1016x624_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a36a215734027259a7d3f87f92054d04de82b184 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0585x2_1016x624_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0585x2_1016x624_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 624 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0586x2_712x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0586x2_712x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f142b233429d4d920f01633d4a3f913419173ab6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0586x2_712x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0586x2_712x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 712 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0587x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0587x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a3158ed0b0fd14ace88fe6e650236c69dbf7b77a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0587x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0587x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0588x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0588x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9322773f1eba942af68de94c0cec5ed5aa31ff8d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0588x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0588x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0589x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0589x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ce140734bc774d929f30be694befa3a1bf9a3e64 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0589x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0589x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0590x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0590x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9f9150bb932643b36dd258be84b637ae03f2fff1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0590x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0590x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0591x2_1016x600_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0591x2_1016x600_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..367e173ea5c8cba544930f9a6b518a6bac97ebcd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0591x2_1016x600_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0591x2_1016x600_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 600 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0592x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0592x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..970ac2ba1cc5c72d1399f3b7d30af9aba94dba4d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0592x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0592x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0593x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0593x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b316aaee8882c33d1bbcc12a8bae6fef03ac8bdb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0593x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0593x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0594x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0594x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3cc60b569efa728a8504e4d09bc90501cc6da9dc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0594x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0594x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0595x2_1016x712_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0595x2_1016x712_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..081bfc368b0d59372fe4477d81334306f8b27497 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0595x2_1016x712_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0595x2_1016x712_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 712 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0596x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0596x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..55af7769188232c95e1446a492995325c4e88901 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0596x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0596x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0597x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0597x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b63090f4c7bb0d50f05736fd0e0f9610992bdfdc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0597x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0597x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0598x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0598x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6cfc31fd547554def073a2d8af3929ec758f5ea7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0598x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0598x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0599x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0599x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..436b528e8bfdeb9be5785334023a5ffe0a2d240d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0599x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0599x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0600x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0600x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1ed839bd9510bb66130569229fd221504101eb00 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0600x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0600x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0601x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0601x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..715b89118e25ce96683e5fa7eb2d9528edd7cb3a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0601x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0601x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0602x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0602x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..768a75cc38e4ccfa2655a70d4561e32253ba0522 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0602x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0602x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0603x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0603x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0eb01fa68ce669e256bbea93550714edce79840e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0603x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0603x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0604x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0604x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5072f1389e7fda1f15dcf239be6f13bb14e0e886 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0604x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0604x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0605x2_1016x712_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0605x2_1016x712_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..69c3802f4f0f419a0956154d6c6804e22667d609 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0605x2_1016x712_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0605x2_1016x712_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 712 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0606x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0606x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4c33cd7cd0f74638c6c7756c224e74ef9f7fd763 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0606x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0606x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0607x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0607x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..40cdc16080a55b73a20ef5a1ba15e21a1aa0a5cf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0607x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0607x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0608x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0608x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7c50b2c862390ac571b0b33982bb4e023262ba03 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0608x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0608x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0609x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0609x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5def6d55de75672ae3fb41749d78158b2d594775 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0609x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0609x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0610x2_1016x720_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0610x2_1016x720_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..244b737da450debe9f22fd4e26534ec21cc8799c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0610x2_1016x720_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0610x2_1016x720_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 720 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0611x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0611x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..17f1b4282a652162f12afba879d91396543f6882 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0611x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0611x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0612x2_1016x592_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0612x2_1016x592_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..86a8dcbf771971f7807670786022697f009e8d9c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0612x2_1016x592_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0612x2_1016x592_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 592 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0613x2_1016x792_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0613x2_1016x792_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..238c531de2b53046e731f3df66c663e6b7bec99f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0613x2_1016x792_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0613x2_1016x792_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 792 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0614x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0614x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ba9485d4e360e55a0bef2746edcad6271ea0ef93 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0614x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0614x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0615x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0615x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c7484b902439464efa89958cfd5f870235200351 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0615x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0615x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0616x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0616x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..560bb0562fe1627938cb43f14abf9204b85633ed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0616x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0616x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0617x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0617x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..07b8eb839dd053ef08172be0075340db12e6235e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0617x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0617x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0618x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0618x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f999841e079e36935f3b5243cced0237cee9a209 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0618x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0618x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0619x2_1016x760_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0619x2_1016x760_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..014987f5878ed7456ec17228a662eb50f960b3d4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0619x2_1016x760_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0619x2_1016x760_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 760 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0620x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0620x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1a6494e4757a67c0a71570edb6b5bba2117d1d55 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0620x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0620x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0621x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0621x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6f77b4ecd562a75b6f69916cabe237ccb5916624 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0621x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0621x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0622x2_1016x720_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0622x2_1016x720_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a38f46cad97dbe144f2c26b05700124e6f1d2021 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0622x2_1016x720_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0622x2_1016x720_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 720 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0623x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0623x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ef22ae254928d1f1c48c6a5b720b24dfc0fc9dde --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0623x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0623x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0624x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0624x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bc9cacf4d58ff89df08b74484babb5d6a694591d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0624x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0624x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0625x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0625x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8f6152d807c13c34ae38f56b5fa721bc96e8e909 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0625x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0625x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0626x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0626x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ab08f061565d2e37f580e81f8ef8e2704d635314 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0626x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0626x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0627x2_1016x432_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0627x2_1016x432_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b1e62d53898b98a46bce3db9216cf487dbb4ddc1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0627x2_1016x432_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0627x2_1016x432_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 432 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0628x2_816x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0628x2_816x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0afeb739d482f9bab219b7b4f8511bdb6c1e942f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0628x2_816x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0628x2_816x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 816 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0629x2_1016x728_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0629x2_1016x728_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c06b2de65502d27295b9fd9ba5286462392a2475 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0629x2_1016x728_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0629x2_1016x728_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 728 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0630x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0630x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..92c34afd133746d7a87dfb65b69773d198f446fe --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0630x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0630x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0631x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0631x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f7bfa3ae47046568050a1f1b82169df682ce4b2f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0631x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0631x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0632x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0632x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..64e0bcf4f697cd890e4c42ca8bd1864521ddd462 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0632x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0632x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0633x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0633x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8c070ac094bd6896e9c6cd73e4a298043ef09b3a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0633x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0633x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0634x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0634x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fb89a092643595777c19f47f30f6c8c151ce5c41 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0634x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0634x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0635x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0635x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..581ed26a4a7d1e34a300348844a5f644cd8ea4b6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0635x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0635x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0636x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0636x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..38f355b09edf6be97762681f2167e593aeed69af --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0636x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0636x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0637x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0637x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..698bfbc4be0b97901c98cd5b805a69a401d1582e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0637x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0637x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0638x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0638x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..420517c14efcefacc67cc5136c676517131cc717 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0638x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0638x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0639x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0639x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c0ad26dee3da9a3bff303b56595ca69c46a690c1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0639x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0639x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0640x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0640x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..405cfbf5724f2ed3f038d8b4e7dc0f21b3937a0a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0640x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0640x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0641x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0641x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8e1e1bdb36a5dbf0847ad999e97059444cf03b2d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0641x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0641x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0642x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0642x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d9e4d7206e80859b9c73637729bb736c0b555681 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0642x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0642x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0643x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0643x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fa85a7de95207d840497baa8caa36df420fc381b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0643x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0643x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0644x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0644x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cabfb67ca3a0d7c35c14fe8eb3e30510af3858f6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0644x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0644x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0645x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0645x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5134e07a96dcb52468d4b2e431ca9f89bea65562 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0645x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0645x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0646x2_1016x736_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0646x2_1016x736_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5a9cd54e6661e30a3a0b95c182e7a32d5df56f77 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0646x2_1016x736_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0646x2_1016x736_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 736 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0647x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0647x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a65b94fabe7073ff1ccdde9e1dbbb63842684bbf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0647x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0647x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0648x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0648x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..af228ea4811fed26ce0a0f549cc7c6bf2196f558 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0648x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0648x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0649x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0649x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..947e08d50dd0645af8e0d473b0b24731c1137c5d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0649x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0649x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0650x2_1016x720_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0650x2_1016x720_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fc487203dfa99c932a65a612101e721143c7bb62 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0650x2_1016x720_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0650x2_1016x720_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 720 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0651x2_1016x608_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0651x2_1016x608_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bb0fc06011bb3409a9841e9147a35d183bdb5b97 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0651x2_1016x608_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0651x2_1016x608_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 608 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0652x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0652x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..24f9d084eed61f236dc3b7c186e8fa9da1802a33 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0652x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0652x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0653x2_1016x792_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0653x2_1016x792_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f75e3e8a77c3cb7f42232481c97647c3d543d847 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0653x2_1016x792_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0653x2_1016x792_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 792 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0654x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0654x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9a8377459d4f50dd622b0f180dfa94c2cbe18b08 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0654x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0654x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0655x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0655x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..30162c4d715472bb6ed9a108653dc9e3eb214326 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0655x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0655x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0656x2_1016x656_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0656x2_1016x656_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..53448bd1e70d2c12fc442658a3dcdd9644a4922c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0656x2_1016x656_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0656x2_1016x656_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 656 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0657x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0657x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..763d38d115ab9ec5d63f0be24c1b596d9422fb81 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0657x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0657x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0658x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0658x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9f9112eefcac4f328e12149e3a1d2358dd8688c8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0658x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0658x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0659x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0659x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..142ce5846624d3967fe416c975f9a65a2444f3d7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0659x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0659x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0660x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0660x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3ce558a8e37cf64b213d4c456c0120927c0a3153 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0660x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0660x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0661x2_1016x648_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0661x2_1016x648_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9f32bbfd475c23cad47ccb193d82258c78a48198 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0661x2_1016x648_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0661x2_1016x648_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 648 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0662x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0662x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f7b8d862ae3cc41697603e280836e1c71f4dbaf8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0662x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0662x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0663x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0663x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ad31f28ca78ed96fa5bae32811dc513ad32b1531 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0663x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0663x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0664x2_1016x816_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0664x2_1016x816_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a2bb789ca1ca46342c2b87c4a4b891aaa84fb2dd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0664x2_1016x816_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0664x2_1016x816_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 816 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0665x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0665x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..cedd2282d8016707eb4c9434e878d5c02a273e3d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0665x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0665x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0666x2_736x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0666x2_736x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..12060b6af1d0168e99889416c7003c503ee89131 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0666x2_736x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0666x2_736x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 736 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0667x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0667x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..805088c382d62da8111a21a0f4e4db570092072e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0667x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0667x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0668x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0668x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..190277d4d3009ffe1f563bf6c559d10ed67c410c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0668x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0668x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0669x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0669x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4a2f2be74819e3bc626908744a89933c0aff12ae --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0669x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0669x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0670x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0670x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a78be98e26a2897cc3b3dbc0f949ed43438a8ee9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0670x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0670x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0671x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0671x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bfed8ba9b38ba3a1937088e45a29be0bdb3a1cbb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0671x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0671x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0672x2_1016x648_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0672x2_1016x648_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7cc142ffbcc3ffc8b169feddc94b1312dc454de6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0672x2_1016x648_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0672x2_1016x648_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 648 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0673x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0673x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8c203e7b1a446f4c765a215ea1da5562f61d9ae9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0673x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0673x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0674x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0674x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f430a285fdecac2b9934b64c1f4da5da7146bd80 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0674x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0674x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0675x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0675x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6febc68f49d7b7e25da486ed2b35ffba6f70e376 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0675x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0675x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0676x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0676x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ca96b0292b213a07d95232281fda0d6573f9b0b6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0676x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0676x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0677x2_1016x688_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0677x2_1016x688_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bc4cbdc956828e3c39b073de2b7737505c990aa0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0677x2_1016x688_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0677x2_1016x688_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 688 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0678x2_1016x720_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0678x2_1016x720_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f1b58868b4bdedca70cb3e49663cbcc15b37ec59 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0678x2_1016x720_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0678x2_1016x720_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 720 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0679x2_1016x728_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0679x2_1016x728_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..820027a5c132372c682c9b1575bd5869ed0e87ee --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0679x2_1016x728_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0679x2_1016x728_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 728 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0680x2_1016x600_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0680x2_1016x600_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1ac3f501ddfeb5f748bc29092990ce0b58db83c7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0680x2_1016x600_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0680x2_1016x600_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 600 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0681x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0681x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..931433363083bcdad19548e095f551b7389c4c0a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0681x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0681x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0682x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0682x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..e31f6d721062936b4fa1eb342a2feaf8246a3b84 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0682x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0682x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0683x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0683x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..365881b50764e185cbe96878f004fd7fcb2406fb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0683x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0683x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0684x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0684x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..78dfd5c8f258cca0e5ae108c1ae3cd9ace136fcb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0684x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0684x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0685x2_1016x536_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0685x2_1016x536_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1bf63a752e71b694d580408e1cf13b68f85a8f30 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0685x2_1016x536_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0685x2_1016x536_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 536 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0686x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0686x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..89926e7bcfcde12163efb93b8a08950b67f3729f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0686x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0686x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0687x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0687x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ffbcc076f9bd30703c66fc4b318d08487dc4db54 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0687x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0687x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0688x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0688x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0973b6331a839e200365eb17078256c5f7caf661 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0688x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0688x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0689x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0689x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1006f0ed5311819d0484d2f88b651332f939b893 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0689x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0689x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0690x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0690x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4b744e18c81a18b316339049fc7f4eac5da4c1a5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0690x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0690x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0691x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0691x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..030b8d41bc43bc01c760859634e808fcae828ec2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0691x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0691x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0692x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0692x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6a228d519644a3e2819b6f8d6e0b62aadfa40ea9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0692x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0692x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0693x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0693x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3b5b45d70325092fbb44e16afe1f87ccba33fb1d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0693x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0693x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0694x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0694x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f12ce8b62cb02aa7370051c1a90ebc38b9fae6f8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0694x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0694x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0695x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0695x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c0fa51bf6c40db40ef6754247e86b0a71b7d30c6 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0695x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0695x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0696x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0696x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c2298454e7f15ad3e796280a03520349b555277c --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0696x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0696x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0697x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0697x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a866d3454ebd4aa14d847f7682388caa83b8c7f3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0697x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0697x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0698x2_984x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0698x2_984x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..db66fa970ce14448cdeddab0133550b06ce79a0e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0698x2_984x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0698x2_984x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 984 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0699x2_784x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0699x2_784x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a18e37801eccace8a6b20fb9e26dad6541b821ef --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0699x2_784x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0699x2_784x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 784 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0700x2_1016x864_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0700x2_1016x864_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..75a228558bb7a77ce8d17a90acfd6bad554c1c58 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0700x2_1016x864_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0700x2_1016x864_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 864 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0701x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0701x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6ba1fb51b950a38d40463c5265cbb4a400011249 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0701x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0701x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0702x2_1016x656_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0702x2_1016x656_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5c78929faf98c35307ddcb035f017f2371d371fe --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0702x2_1016x656_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0702x2_1016x656_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 656 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0703x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0703x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..96eeb35626d3aee27db16f640fd7629475861222 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0703x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0703x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0704x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0704x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c4df7c59c61349829d63cddad01c5ad7762257b9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0704x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0704x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0705x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0705x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f3b922e219757ece4a3692152e86332d47f41d4d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0705x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0705x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0706x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0706x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..557fd4b1e6fc99169054e24f3457f69b9dc506c9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0706x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0706x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0707x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0707x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..813834323b2e1aa655f80ba2e1f90fc3459bde7b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0707x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0707x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0708x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0708x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7d72f3b1a8e806f94f107c23cd7103e78f176e5a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0708x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0708x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0709x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0709x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f5cadb1761973c32b4db7db79877f471021eadba --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0709x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0709x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0710x2_1016x464_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0710x2_1016x464_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..85bc1ed59824ee983b305b91da71fd66e4d64304 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0710x2_1016x464_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0710x2_1016x464_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 464 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0711x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0711x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6204c94f0dfbe0b721d9932f6ddb7017805c67db --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0711x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0711x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0712x2_1016x888_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0712x2_1016x888_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..808a73c01acb4a4361c903e9bd8be68f05b915ef --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0712x2_1016x888_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0712x2_1016x888_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 888 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0713x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0713x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bc33dd3a54615fdb1ba7306ec1a89e9a582e1b7e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0713x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0713x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0714x2_1016x760_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0714x2_1016x760_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0485cb28ca8d873f0dd1e4a1249588a831358335 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0714x2_1016x760_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0714x2_1016x760_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 760 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0715x2_1016x664_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0715x2_1016x664_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..174c1ad16db92f12fff9f86308a4ef40e804c37d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0715x2_1016x664_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0715x2_1016x664_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 664 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0716x2_1016x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0716x2_1016x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ad3009826fbecbca047611615aa4c84b507a6a25 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0716x2_1016x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0716x2_1016x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0717x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0717x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f831889ea23be98de40c5431eadca96217abda55 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0717x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0717x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0718x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0718x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..293a7f75c70852754cf7bff7d5b9a229b669c643 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0718x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0718x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0719x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0719x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4c161d36dbf94823cf421bececea9ceaa49a40e0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0719x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0719x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0720x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0720x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d892d4e90833a2a27397a759d500c1b474dd8274 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0720x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0720x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0721x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0721x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..04e192a429778118e9c13ff48741de2bfe1e9175 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0721x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0721x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0722x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0722x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c0e3cbcf992ab6724a8db4ee6b518d0e12513c5f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0722x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0722x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0723x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0723x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8d33fddf3d0da5d6fb539180e8011dee6d3de584 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0723x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0723x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0724x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0724x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..04690f1846ea88476615464aa81d269cafb56b9e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0724x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0724x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0725x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0725x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2422b4b3da80cafe41e58fb5359f0991d33f88d7 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0725x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0725x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0726x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0726x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..30f524f2d2a4ec27ac21fd2cbdcff2b52d9bfb55 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0726x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0726x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0727x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0727x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3fe4c0b7137edbc9fac7d3630220ddb196c6d9bc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0727x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0727x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0728x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0728x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..74ac87aae4a7790cab034ef729a55720c7e3db0e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0728x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0728x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0729x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0729x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2952efacfced9b58d535bb735cc457769e7228d3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0729x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0729x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0730x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0730x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5254a20e9d850db735c3ba8b4860766778e2bcf9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0730x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0730x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0731x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0731x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b0d210a0d4ce6b62e05fe7b043b423fad0c73284 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0731x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0731x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0732x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0732x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..12a9591dad2a990cd8e7c7445489632744bd2476 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0732x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0732x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0733x2_1016x648_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0733x2_1016x648_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a3aba0cffd006c9c7bc6f2fe2afe3dc00f8a9bdc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0733x2_1016x648_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0733x2_1016x648_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 648 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0734x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0734x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8103b4beac92a95216566d34cd6ee5fce4690909 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0734x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0734x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0735x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0735x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c25e15f2f493ce930bd0596a571340b8af541c3a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0735x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0735x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0736x2_1016x720_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0736x2_1016x720_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5673c5f106cb46fad5fe4eef9f0915e05c6ede71 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0736x2_1016x720_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0736x2_1016x720_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 720 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0737x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0737x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c4525820609e888ef816772850cb7fde8537d3bf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0737x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0737x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0738x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0738x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..bce075b9a2a5b35bec43c708f1eb2e8ed892fd22 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0738x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0738x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0739x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0739x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..eb60046456c582ff3caca8f8aca5ad9a1e177aba --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0739x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0739x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0740x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0740x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..90bf3968369cb5de71b34def09b323af9eb10618 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0740x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0740x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0741x2_656x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0741x2_656x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3472deafe938105a1ff643ee4ca979cb049d8feb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0741x2_656x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0741x2_656x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 656 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0742x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0742x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d3bdbfdbbb952a1fd12154b20779499d8414fc0a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0742x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0742x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0743x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0743x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a1d86493e9eeb006af971ed0e8c9c6979d04795b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0743x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0743x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0744x2_1016x792_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0744x2_1016x792_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..caf8d79dce0f86f8de0f88ed45c82819c51bed2b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0744x2_1016x792_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0744x2_1016x792_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 792 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0745x2_1016x568_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0745x2_1016x568_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..426c3555fca67c5c37d65a58ee08e1055cbca2e9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0745x2_1016x568_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0745x2_1016x568_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 568 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0746x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0746x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..41d19cdd41b2ae60e4b303672351161d59c04927 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0746x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0746x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0747x2_1016x728_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0747x2_1016x728_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3eadd6c933c3c80471ea80c3a3646a8cadf30986 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0747x2_1016x728_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0747x2_1016x728_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 728 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0748x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0748x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d51077221f90cf5d41873e5dd191dfca6ff0c773 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0748x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0748x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0749x2_1016x664_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0749x2_1016x664_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..391c6ddb662168138c86f510a0f1a861deb3368d --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0749x2_1016x664_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0749x2_1016x664_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 664 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0750x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0750x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..137cf2c6783d9e8d3cfd9b522243f84182a3edae --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0750x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0750x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0751x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0751x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0367d2825b4892f4f5d295cbe48e41c8c5901186 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0751x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0751x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0752x2_584x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0752x2_584x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5cefb608c00d04ea43122473ac8e2c6814171cc3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0752x2_584x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0752x2_584x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 584 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0753x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0753x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..09a292834dd3b8cec46631e8083b46535634b9cb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0753x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0753x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0754x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0754x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..807720bf975cac87429d780ebaf86809d081a767 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0754x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0754x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0755x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0755x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4cced7557cb57ef44f765625a94ae9ef3f792939 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0755x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0755x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0756x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0756x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5de8a8e5c7168b3c88a7ad2799b4e05496d71318 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0756x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0756x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0757x2_712x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0757x2_712x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..66081c8c4e4fa0ed6e6659af85f7d6505f06f292 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0757x2_712x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0757x2_712x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 712 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0758x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0758x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a1fbb6d0f432a95f77dc2a03e6cc8a7d9f5758de --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0758x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0758x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0759x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0759x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1867aef9afb9ec84a98865e526fb36fdcd968820 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0759x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0759x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0760x2_672x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0760x2_672x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..10d295d3f7f278f2f6393955d312fe3e7f08b29b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0760x2_672x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0760x2_672x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 672 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0761x2_1016x720_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0761x2_1016x720_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..1bfa603772f3083e25f131fe7f219d4c3b3ec6cb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0761x2_1016x720_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0761x2_1016x720_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 720 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0762x2_1016x648_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0762x2_1016x648_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..611a836b7e98386ce36c7012c65bce7fbc4c6d59 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0762x2_1016x648_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0762x2_1016x648_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 648 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0763x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0763x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..06ecb1c5e94bedeb647be83a099036dd4c48dbfb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0763x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0763x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0764x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0764x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..c7f837922322af04942eaf59ca63cb359bf2938f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0764x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0764x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0765x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0765x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..58da3d04109bf94739ad58c7bf326dfbcc95120f --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0765x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0765x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0766x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0766x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..39f93b2d587b891ef6250c1543482000090c1e69 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0766x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0766x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0767x2_1016x784_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0767x2_1016x784_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..41b31d549485ec3eccf86179a1e76c5d3775532a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0767x2_1016x784_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0767x2_1016x784_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 784 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0768x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0768x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..09244445c8daa161684f08b89ce61777d21f49d3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0768x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0768x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0769x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0769x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..281dfbdc18f29fcc43c8924fdd7c7eaa634e34bf --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0769x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0769x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0770x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0770x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ab448204f186cd610aba4b8c21f83b8eb7ed80d2 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0770x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0770x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0771x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0771x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..60df2b9bc9b545a3143f075e1685bd89c6c78bc9 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0771x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0771x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0772x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0772x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..54c3009f0b301fe66a8db429a9feee28ca5d09cb --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0772x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0772x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0773x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0773x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..490bd25463cae27d7dad88b272fb66e9b5128a8a --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0773x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0773x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0774x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0774x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..3b7a9104815cb3980a10d7d27ff6112f0c4041e5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0774x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0774x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0775x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0775x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b32c1687619c14d4ecc952fd3b77023bf61ebbd5 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0775x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0775x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0776x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0776x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..290e57c401e9f075d4e0e3d7915bf1a49e7228f1 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0776x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0776x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0777x2_1016x768_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0777x2_1016x768_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..82d2cb379622390ab24976acdb00d37f0deacac3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0777x2_1016x768_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0777x2_1016x768_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 768 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0778x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0778x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..0b0e2b5b69c75b21dd9e6434d1ed3ff8c658be83 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0778x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0778x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0779x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0779x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2f24867523cba3358082c8ace6ec2f9e3eefff25 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0779x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0779x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0780x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0780x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..d28bcb80ab9fd587496ca870c80d4094ad106bdc --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0780x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0780x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0781x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0781x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..21ee0168724165b7442062b914a1612f6b21f345 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0781x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0781x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0782x2_816x1016_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0782x2_816x1016_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..beeb0386f51dbb2ed8655645fe8aa2fb7f069651 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0782x2_816x1016_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0782x2_816x1016_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 816 # Input frame width +SourceHeight : 1016 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0783x2_1016x680_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0783x2_1016x680_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9fcddafa981028fa9ed52309cf7cc81044ce8a19 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0783x2_1016x680_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0783x2_1016x680_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 680 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0784x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0784x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..ebefe96211aba5ab6c1df654c032323f7647eed0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0784x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0784x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0785x2_1016x608_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0785x2_1016x608_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..610f6f1d4b534d88dbbfd2158f6193b545e30f16 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0785x2_1016x608_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0785x2_1016x608_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 608 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0786x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0786x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..f646d2b7e5bfb041453a264675089ce5ee4b5de8 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0786x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0786x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0787x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0787x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..8a51fe40143659d73ddcb2b9374da1daaec7fc20 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0787x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0787x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0788x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0788x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..b6c96be25c775c80d9efb49a7bda1757530ce808 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0788x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0788x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0789x2_1016x624_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0789x2_1016x624_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..120eb3c0fd2ff7846c430849c9a6a0ce07139aed --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0789x2_1016x624_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0789x2_1016x624_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 624 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0790x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0790x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2a908a061bf8caff58ef2a1a049fd29aae2ded96 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0790x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0790x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0791x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0791x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..075356830c031e5c5cba50cb0fbc14d0b1966bbd --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0791x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0791x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0792x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0792x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..a2d084db3611d28cf5ad6887b2f6f427cfc63684 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0792x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0792x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0793x2_1016x744_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0793x2_1016x744_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..6fb554a64c506860658e168fbbfcca630a1af97e --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0793x2_1016x744_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0793x2_1016x744_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 744 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0794x2_1016x632_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0794x2_1016x632_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..607c610c9967b5e4653f0be8a34c52f0ce8506ec --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0794x2_1016x632_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0794x2_1016x632_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 632 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0795x2_1016x576_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0795x2_1016x576_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..2f00e299d789de51dc1de006bd1325c1e968a5da --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0795x2_1016x576_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0795x2_1016x576_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 576 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0796x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0796x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..4bf27e6605066eabf80ec96419903c4aa1680d77 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0796x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0796x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0797x2_1016x704_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0797x2_1016x704_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..fc835869078c2219a9940bd3d955535fbe06c2a0 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0797x2_1016x704_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0797x2_1016x704_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 704 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0798x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0798x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..5517a3a84bb9111629d87a2fbaf8559f453551a4 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0798x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0798x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0799x2_1016x672_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0799x2_1016x672_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..7535d492dcd6d2957399a0c58d7657a3839b4153 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0799x2_1016x672_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0799x2_1016x672_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 672 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0800x2_1016x664_25fps_8bit_420.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0800x2_1016x664_25fps_8bit_420.cfg new file mode 100755 index 0000000000000000000000000000000000000000..9f53c411d335eeae4b577528acbbfb300dfc05db --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/cfgDIV2K_X2_IntraLuma/0800x2_1016x664_25fps_8bit_420.cfg @@ -0,0 +1,12 @@ +#======== File I/O =============== +InputFile : 0800x2_1016x664_25fps_8bit_420.yuv + +InputBitDepth : 8 # Input bitdepth +InputChromaFormat : 420 # Ratio of luminance to chrominance samples +FrameRate : 25 # Frame Rate per second +FrameSkip : 0 # Number of frames to be skipped in input +SourceWidth : 1016 # Input frame width +SourceHeight : 664 # Input frame height +FramesToBeEncoded : 1 # Number of frames to be coded + +Level : 3.1 diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/encoder_intra_vtm_all.cfg b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/encoder_intra_vtm_all.cfg new file mode 100644 index 0000000000000000000000000000000000000000..fb2e2d14887bc06e2423d52090b48da578269fe3 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/encoder_intra_vtm_all.cfg @@ -0,0 +1,119 @@ +#======== File I/O ===================== +BitstreamFile : str.bin +ReconFile : rec.yuv + +#======== Profile ================ +Profile : auto + +#======== Unit definition ================ +MaxCUWidth : 64 # Maximum coding unit width in pixel +MaxCUHeight : 64 # Maximum coding unit height in pixel + +#======== Coding Structure ============= +IntraPeriod : 1 # Period of I-Frame ( -1 = only first) +DecodingRefreshType : 1 # Random Accesss 0:none, 1:CRA, 2:IDR, 3:Recovery Point SEI +GOPSize : 1 # GOP Size (number of B slice = GOPSize-1) +# Type POC QPoffset QPfactor tcOffsetDiv2 betaOffsetDiv2 temporal_id #ref_pics_active #ref_pics reference pictures + +#=========== Motion Search ============= +FastSearch : 1 # 0:Full search 1:TZ search +SearchRange : 64 # (0: Search range is a Full frame) +HadamardME : 1 # Use of hadamard measure for fractional ME +FEN : 1 # Fast encoder decision +FDM : 1 # Fast Decision for Merge RD cost + +#======== Quantization ============= +QP : 32 # Quantization parameter(0-51) +MaxDeltaQP : 0 # CU-based multi-QP optimization +MaxCuDQPSubdiv : 0 # Maximum subdiv for CU luma Qp adjustment +DeltaQpRD : 0 # Slice-based multi-QP optimization +RDOQ : 1 # RDOQ +RDOQTS : 1 # RDOQ for transform skip + +#=========== Deblock Filter ============ +LoopFilterOffsetInPPS : 1 # Dbl params: 0=varying params in SliceHeader, param = base_param + GOP_offset_param; 1 (default) =constant params in PPS, param = base_param) +LoopFilterDisable : 0 # Disable deblocking filter (0=Filter, 1=No Filter) +LoopFilterBetaOffset_div2 : 0 # base_param: -12 ~ 12 +LoopFilterTcOffset_div2 : 0 # base_param: -12 ~ 12 +LoopFilterCbBetaOffset_div2 : 0 # base_param: -12 ~ 12 +LoopFilterCbTcOffset_div2 : 0 # base_param: -12 ~ 12 +LoopFilterCrBetaOffset_div2 : 0 # base_param: -12 ~ 12 +LoopFilterCrTcOffset_div2 : 0 # base_param: -12 ~ 12 +DeblockingFilterMetric : 0 # blockiness metric (automatically configures deblocking parameters in bitstream). Applies slice-level loop filter offsets (LoopFilterOffsetInPPS and LoopFilterDisable must be 0) + +#=========== Misc. ============ +InternalBitDepth : 10 # codec operating bit-depth + +#=========== Coding Tools ================= +SAO : 1 # Sample adaptive offset (0: OFF, 1: ON) +TransformSkip : 1 # Transform skipping (0: OFF, 1: ON) +TransformSkipFast : 1 # Fast Transform skipping (0: OFF, 1: ON) +TransformSkipLog2MaxSize : 5 +SAOLcuBoundary : 0 # SAOLcuBoundary using non-deblocked pixels (0: OFF, 1: ON) + +#============ VTM settings ====================== +SEIDecodedPictureHash : 1 +CbQpOffset : 0 +CrQpOffset : 0 +SameCQPTablesForAllChroma : 1 +QpInValCb : 17 27 32 44 +QpOutValCb : 17 29 34 41 +TemporalSubsampleRatio : 1 + +ReWriteParamSets : 1 +#============ NEXT ==================== + +# General +CTUSize : 128 +LCTUFast : 1 + +DualITree : 1 # separate partitioning of luma and chroma channels for I-slices +MinQTLumaISlice : 8 +MinQTChromaISliceInChromaSamples: 4 # minimum QT size in chroma samples for chroma separate tree +MinQTNonISlice : 8 +MaxMTTHierarchyDepth : 3 +MaxMTTHierarchyDepthISliceL : 3 +MaxMTTHierarchyDepthISliceC : 3 + +MTS : 1 +MTSIntraMaxCand : 4 +MTSInterMaxCand : 4 +SBT : 1 +LFNST : 1 +ISP : 1 +Affine : 1 +SbTMVP : 1 +MaxNumMergeCand : 6 +LMChroma : 1 # use CCLM only +DepQuant : 1 +IMV : 1 +ALF : 1 +IBC : 0 # turned off in CTC +AllowDisFracMMVD : 1 +AffineAmvr : 0 +LMCSEnable : 1 # LMCS: 0: disable, 1:enable +LMCSSignalType : 0 # Input signal type: 0:SDR, 1:HDR-PQ, 2:HDR-HLG +LMCSUpdateCtrl : 1 # LMCS model update control: 0:RA, 1:AI, 2:LDB/LDP +LMCSOffset : 2 # chroma residual scaling offset +MRL : 1 +MIP : 1 +JointCbCr : 1 # joint coding of chroma residuals (if available): 0: disable, 1: enable +ChromaTS : 1 + +# Fast tools +PBIntraFast : 1 +ISPFast : 1 +FastMrg : 1 +AMaxBT : 1 +FastMIP : 1 +FastLFNST : 1 + +# Encoder optimization tools +AffineAmvrEncOpt : 0 +ALFStrength : 1.0 +ALFAllowPredefinedFilters : 1 +CCALFStrength : 1.0 +### DO NOT ADD ANYTHING BELOW THIS LINE ### +### DO NOT DELETE THE EMPTY LINE BELOW ### + + diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/mp42yuv_BVI-DVC.py b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/mp42yuv_BVI-DVC.py new file mode 100644 index 0000000000000000000000000000000000000000..b42e7d05d466da90d24412d00f590bdcbe6a6f7b --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/mp42yuv_BVI-DVC.py @@ -0,0 +1,44 @@ + +import csv +import sys +import os +import time +from sys import platform +import subprocess +from subprocess import Popen, PIPE + + +srcdir = '/proj/video_data4/videosim/ejacstr/extract/BVI-DVC_mp4/Videos/' +destdir = '/proj/video_no_backup/videosim/ejacstr/jvet_training_extraction/links_to_AB0053_data/BVI_DVC_train_yuv/' +mycurrentdir = '/proj/video_data3/videosim/ejacstr/JVET/replication/loopNN/our_data_generation/jvet-v0115-training/tools/toshare/' +executablefile = "/proj/video_data3/videosim/ejacstr/JVET/replication/loopNN/our_data_generation/jvet-v0115-training/tools/toshare/ffmpeg_bin/ffmpeg-5.0.1-amd64-static/ffmpeg" + +csvdir = mycurrentdir + '/csv/' +filecsv = csvdir + 'training-data.csv' +seqnum = 0 +cnt = 0 +cntfound = 0 + +with open(filecsv, newline='') as csvfile1: + reader = csv.DictReader(csvfile1) + + for row in reader: + videoname = row['Sequence'][0:-4] + if videoname[0:len(sys.argv[1])] == sys.argv[1] and row['Sequence'][-3:] == 'mp4': + cnt += 1 + for image_path in os.listdir(srcdir): + input_path = srcdir + image_path + dest_path = destdir + videoname + '.yuv' + if videoname == image_path[0:-4]: + cntfound +=1 + if os.path.exists(dest_path)==False: + print(dest_path) + p1 = Popen([executablefile, "-i", input_path, "-pix_fmt","yuv420p10le", dest_path], stdout=PIPE, stderr=PIPE) + # Avoid having all decodings start at the same time (to not overload system). + print('Waiting 20 seconds before starting next. (Remove this if your system can handle it.)') + time.sleep(20) + break + +print('Complete checking {} seqs.'.format(cnt)) +print('We found {} seqs.'.format(cntfound)) +print('{} sequences not found.'.format(cnt - cntfound)) diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/png2yuv_fullres.py b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/png2yuv_fullres.py new file mode 100644 index 0000000000000000000000000000000000000000..297ec184e8d49728a9516f50ba18564fe2588275 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/png2yuv_fullres.py @@ -0,0 +1,54 @@ + +import csv +import sys +import os +from sys import platform +import subprocess +from subprocess import Popen, PIPE +import PIL +from PIL import Image + +### Please insert paths here: (End all paths with /) +if 1: + srcdir = '/proj/video_no_backup/videosim/ejacstr/extract/DIV2K_test_yuv/DIV2K_train_HR/' + destdir = '/proj/video_no_backup/videosim/ejacstr/extract/DIV2K_test_yuv/DIV2K_train_HR_yuv/' + cropimgdir = '/proj/video_no_backup/videosim/ejacstr/extract/DIV2K_test_yuv/DIV2K_train_HR_crop/' + #executablefile = "/proj/video_data3/videosim/eliudux/myCurrentWork/training_data/script/ffmpeg" + + ffmpeg_path = '/proj/video_data3/videosim/ejacstr/JVET/replication/loopNN/our_data_generation/jvet-v0115-training/tools/toshare/ffmpeg_bin/ffmpeg-5.0.1-amd64-static' + executablefile = ffmpeg_path+'/ffmpeg' + + +seqnum = 0 +cnt = 0 +cntnotfound = 0 + +for image_path in os.listdir(srcdir): + if image_path[-3:] == 'png': + cnt += 1 + input_path = srcdir + image_path + videoname = image_path[0:-4] + img = Image.open(input_path) + wid, hgt = img.size + wid = wid // 8 * 8 + hgt = hgt // 8 * 8 + img_crop = img.crop((0,0,wid,hgt)) + img_crop_path = cropimgdir + image_path + print('saving:', img_crop_path) + img_crop.save(img_crop_path,format='png') + dest_path = destdir + videoname +'_'+str(wid)+'x'+str(hgt)+'_'+'25fps_8bit_420.yuv' + #print(wid,hgt) + #print(img_crop_path) + print(dest_path) + #p1 = Popen([executablefile, "-i", img_crop_path, "-pix_fmt","yuv420p10le", dest_path], stdout=PIPE, stderr=PIPE) + cmdffmpeg = [executablefile, "-i", img_crop_path, "-pix_fmt","yuv420p", dest_path] + cmdffmpeg = " ".join(cmdffmpeg) + print(cmdffmpeg) + subprocess.call(cmdffmpeg, shell=True) + #output, err = p1.communicate() + #print(output,err) + #break + + + +print('Complete converting {} PNG to YUV.'.format(cnt)) diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/png2yuv_subsampled.py b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/png2yuv_subsampled.py new file mode 100644 index 0000000000000000000000000000000000000000..c22cc281f0f285c0335816a9dc0e2fb5585de274 --- /dev/null +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/data_extraction_scripts/png2yuv_subsampled.py @@ -0,0 +1,55 @@ + +import csv +import sys +import os +from sys import platform +import subprocess +from subprocess import Popen, PIPE +import PIL +from PIL import Image + +### Please insert paths here: (End all paths with /) +if 1: + #srcdir = '/proj/video_data3/videosim/data/DIV2K/NTIRE_2017_Low_Res_Images/DIV2K_train_LR_bicubic/X2/' + srcdir = '/proj/video_no_backup/videosim/ejacstr/extract/DIV2K_test_yuv/DIV2K_train_LR_bicubic/X2/' + destdir = '/proj/video_no_backup/videosim/ejacstr/extract/DIV2K_test_yuv/X2_yuv/' + cropimgdir = '/proj/video_no_backup/videosim/ejacstr/extract/DIV2K_test_yuv/X2_crop/' + #executablefile = "/proj/video_data3/videosim/eliudux/myCurrentWork/training_data/script/ffmpeg" + + ffmpeg_path = '/proj/video_data3/videosim/ejacstr/JVET/replication/loopNN/our_data_generation/jvet-v0115-training/tools/toshare/ffmpeg_bin/ffmpeg-5.0.1-amd64-static' + executablefile = ffmpeg_path+'/ffmpeg' + + +seqnum = 0 +cnt = 0 +cntnotfound = 0 + +for image_path in os.listdir(srcdir): + if image_path[-3:] == 'png': + cnt += 1 + input_path = srcdir + image_path + videoname = image_path[0:-4] + img = Image.open(input_path) + wid, hgt = img.size + wid = wid // 8 * 8 + hgt = hgt // 8 * 8 + img_crop = img.crop((0,0,wid,hgt)) + img_crop_path = cropimgdir + image_path + print('saving:', img_crop_path) + img_crop.save(img_crop_path,format='png') + dest_path = destdir + videoname +'_'+str(wid)+'x'+str(hgt)+'_'+'25fps_8bit_420.yuv' + #print(wid,hgt) + #print(img_crop_path) + print(dest_path) + #p1 = Popen([executablefile, "-i", img_crop_path, "-pix_fmt","yuv420p10le", dest_path], stdout=PIPE, stderr=PIPE) + cmdffmpeg = [executablefile, "-i", img_crop_path, "-pix_fmt","yuv420p", dest_path] + cmdffmpeg = " ".join(cmdffmpeg) + print(cmdffmpeg) + subprocess.call(cmdffmpeg, shell=True) + #output, err = p1.communicate() + #print(output,err) + #break + + + +print('Complete converting {} PNG to YUV.'.format(cnt)) diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/dataset.py b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/dataset.py deleted file mode 100644 index dc40730a600489f008b0e1b6db3a4e6c254a7ab9..0000000000000000000000000000000000000000 --- a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/dataset.py +++ /dev/null @@ -1,129 +0,0 @@ -""" -/* The copyright in this software is being made available under the BSD -* License, included below. This software may be subject to other third party -* and contributor rights, including patent rights, and no such rights are -* granted under this license. -* -* Copyright (c) 2010-2022, ITU/ISO/IEC -* All rights reserved. -* -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions are met: -* -* * Redistributions of source code must retain the above copyright notice, -* this list of conditions and the following disclaimer. -* * Redistributions in binary form must reproduce the above copyright notice, -* this list of conditions and the following disclaimer in the documentation -* and/or other materials provided with the distribution. -* * Neither the name of the ITU/ISO/IEC nor the names of its contributors may -* be used to endorse or promote products derived from this software without -* specific prior written permission. -* -* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -* THE POSSIBILITY OF SUCH DAMAGE. -""" - -from __future__ import print_function, division -import torch -import numpy as np -from torch.utils.data import Dataset, DataLoader -from torchvision import transforms, utils -import json -import matplotlib.pyplot as plt - - -class CnnlfDataset(Dataset): - """MultiType Tree partition prediction dataset.""" - - def __init__(self, data, transform=None): - """ - Args: - data: dataset bin file. There should be a json description file in the same folder named - data.json - transform (callable, optional): Optional transform to be applied - on a sample. - """ - self.transform = transform - - with open(data+'.json') as file: - description = json.loads(file.read()) - - self.data_file = data - self.patch_size = description['patch_size'] - self.border_size = description['border_size'] - self.components = dict(zip(description['components'], range(len(description['components'])))) - self.nb_comp = len(self.components) - self.len = description['nb_patches'] - self.block_size = self.patch_size + 2 * self.border_size - self.block_volume = self.block_size * self.block_size * self.nb_comp - - def __len__(self): - return self.len - - def __getitem__(self, idx): - if torch.is_tensor(idx): - idx = idx.tolist() - with open(self.data_file) as file: - block = np.fromfile(file, dtype='float32', count=self.block_volume, offset=self.block_volume * idx * 4).\ - reshape((self.block_size, self.block_size, self.nb_comp)) - - org = block[:, :, self.components['org_Y']] - rec = block[:, :, self.components['rec_before_dbf_Y']] - pred = block[:, :, self.components['pred_Y']] - split = block[:, :, self.components['partition_cu_average_Y']] - bs = block[:, :, self.components['bs_Y']] - qp = block[:, :, self.components['qp_base']] - training_sample = {'org': org, 'rec': rec, 'pred': pred, 'split': split, 'bs': bs, 'qp': qp} - - if self.transform: - training_sample = self.transform(training_sample) - - return training_sample - - -class ToTensor(object): - """Convert ndarrays in sample to Tensors.""" - - def __call__(self, sample): - org, rec, pred, split, bs, qp = sample['org'], sample['rec'], sample['pred'], sample['split'], sample['bs'], sample['qp'] - - # swap color axis because - # numpy image: H x W x C - # torch image: C X H X W - org = org[np.newaxis, :, :] - rec = rec[np.newaxis, :, :] - pred = pred[np.newaxis, :, :] - split = split[np.newaxis, :, :] - bs = bs[np.newaxis, :, :] - qp = qp[np.newaxis, :, :] - return {'org': torch.from_numpy(org), - 'rec': torch.from_numpy(rec), - 'pred': torch.from_numpy(pred), - 'split': torch.from_numpy(split), - 'bs': torch.from_numpy(bs), - 'qp': torch.from_numpy(qp)} - - -def display_batch(batch): - fig, ax = plt.subplots(nrows=8, ncols=8) - i = 0 - for row in ax: - for col in row: - col.imshow(batch[i, 0, :, :], cmap='gray', vmin=0., vmax=1.) - i += 1 - plt.show() - - -def get_loader(data, batch_size, shuffle, num_workers=4): - dataset = CnnlfDataset(data=data, transform=transforms.Compose([ToTensor()])) - data_loader = DataLoader(dataset, batch_size=batch_size, shuffle=shuffle, num_workers=num_workers) - return data_loader diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/main.py b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/main.py index 3450d35037ffc952e1e8d1d3b47d86c1a727b145..f6fa2fe6f72bb30237560fcd6c5f1603efba5a3a 100755 --- a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/main.py +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/main.py @@ -1,175 +1,546 @@ -""" -/* The copyright in this software is being made available under the BSD -* License, included below. This software may be subject to other third party -* and contributor rights, including patent rights, and no such rights are -* granted under this license. -* -* Copyright (c) 2010-2022, ITU/ISO/IEC -* All rights reserved. -* -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions are met: -* -* * Redistributions of source code must retain the above copyright notice, -* this list of conditions and the following disclaimer. -* * Redistributions in binary form must reproduce the above copyright notice, -* this list of conditions and the following disclaimer in the documentation -* and/or other materials provided with the distribution. -* * Neither the name of the ITU/ISO/IEC nor the names of its contributors may -* be used to endorse or promote products derived from this software without -* specific prior written permission. -* -* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -* THE POSSIBILITY OF SUCH DAMAGE. -""" - -import argparse import torch import torch.nn as nn -from net import ConditionalNet -from dataset import get_loader, display_batch -from math import log10 +from torch.utils.data import Dataset +from torch.utils.data import DataLoader +import os +import pandas as pd +from torchvision.io import read_image +import numpy as np +import glob +import argparse +import sys +from datetime import datetime +from time import time +from functools import partial + +from net import ConditionalNet1 + +default_base_train_dir = '/proj/video_no_backup/videosim/ejacstr/jvet_training_extraction/links_to_AB0053_data/train_dump/' + +default_trainingset_arg = '\ +A*/*_qp20_bs.yuv,\ +A*/*_qp25_bs.yuv,\ +A*/*_qp30_bs.yuv,\ +A*/*_qp35_bs.yuv,\ +A*/*_qp40_bs.yuv,\ +A*/*_qp20_bs.yuv,\ +A*/*_qp25_bs.yuv,\ +A*/*_qp30_bs.yuv,\ +A*/*_qp35_bs.yuv,\ +A*/*_qp40_bs.yuv,\ +A*/*_qp20_bs.yuv,\ +A*/*_qp25_bs.yuv,\ +A*/*_qp30_bs.yuv,\ +A*/*_qp35_bs.yuv,\ +A*/*_qp40_bs.yuv,\ +A*/*_qp20_bs.yuv,\ +A*/*_qp25_bs.yuv,\ +A*/*_qp30_bs.yuv,\ +A*/*_qp35_bs.yuv,\ +A*/*_qp40_bs.yuv,\ +A*/*_qp20_bs.yuv,\ +A*/*_qp25_bs.yuv,\ +A*/*_qp30_bs.yuv,\ +A*/*_qp35_bs.yuv,\ +A*/*_qp40_bs.yuv,\ +A*/*_qp20_bs.yuv,\ +A*/*_qp25_bs.yuv,\ +A*/*_qp30_bs.yuv,\ +A*/*_qp35_bs.yuv,\ +A*/*_qp40_bs.yuv,\ +B*/*_qp20_bs.yuv,\ +B*/*_qp25_bs.yuv,\ +B*/*_qp30_bs.yuv,\ +B*/*_qp35_bs.yuv,\ +B*/*_qp40_bs.yuv,\ +C*/*_qp20_bs.yuv,\ +C*/*_qp25_bs.yuv,\ +C*/*_qp30_bs.yuv,\ +C*/*_qp35_bs.yuv,\ +C*/*_qp40_bs.yuv,\ +D*/*_qp20_bs.yuv,\ +D*/*_qp25_bs.yuv,\ +D*/*_qp30_bs.yuv,\ +D*/*_qp35_bs.yuv,\ +D*/*_qp40_bs.yuv,\ +0*/*_qp20_bs.yuv,\ +0*/*_qp25_bs.yuv,\ +0*/*_qp30_bs.yuv,\ +0*/*_qp35_bs.yuv,\ +0*/*_qp40_bs.yuv,\ +' + + +class CustomImageDataset(Dataset): + def __init__(self, annotations_file, img_dir, transform=None, target_transform=None): + self.img_names_pd = pd.read_csv(annotations_file) + self.img_dir = img_dir + self.transform = transform + self.target_transform = target_transform + + def __len__(self): + return len(self.img_names_pd) + + def get_128x128_luma_patch_from_10bit_yuv_data(self, fdata, width, height, startfrm, ystart, xstart): + fp = open(fdata, 'rb') + Bd = 2 + bytes2num = partial(int.from_bytes, byteorder='little', signed=False) + framesize = height * width * 3 // 2 # 8bit image Number of pixels included + fp.seek(Bd*(framesize * startfrm + ystart*width + xstart), 0) # + + Yt = np.zeros(shape=(128,128), dtype=np.int16, order='C') + + for m in range(128): + for n in range(128): + pel=bytes2num(fp.read(2)) + Yt[m,n] = pel + fp.seek(Bd*(width-128), 1) # Skip one width minus 128 from current file position to get to the next 128-wide line of the patch + + fp.close() + return Yt + + def get_128x128_luma_patch_from_8bit_yuv_data(self, fdata, width, height, startfrm, ystart, xstart): + fp = open(fdata, 'rb') + Bd = 1 + scale = 1023/255 #from 8 bit to 10 bit + bytes2num = partial(int.from_bytes, byteorder='little', signed=False) + framesize = height * width * 3 // 2 # 8bit image Number of pixels included + fp.seek(Bd*(framesize * startfrm + ystart*width + xstart), 0) # + + Yt = np.zeros(shape=(128,128), dtype=np.int16, order='C') + + for m in range(128): + for n in range(128): + pel=bytes2num(fp.read(1)) + Yt[m,n] = np.int16( pel * scale +0.5) + fp.seek(Bd*(width-128), 1) # Skip one width minus 128 from current file position to get to the next 128-wide line of the patch + + fp.close() + return Yt + + def yuv_file_sample(self, load_path, load_name_start, yrand, xrand, frame_number_int, qp_number_int, w, h): + + load_name = load_path + load_name_start + '_rec_before_dbf.yuv' + patchY = self.get_128x128_luma_patch_from_10bit_yuv_data(load_name, w, h, frame_number_int, yrand, xrand) + recY_crop2 = np.float32(patchY) + + load_name = load_path + load_name_start + '_pred.yuv' + patchY = self.get_128x128_luma_patch_from_10bit_yuv_data(load_name, w, h, frame_number_int, yrand, xrand) + predY_crop2 = np.float32(patchY) + + load_name = load_path + load_name_start + '_partition_cu_average.yuv' + patchY = self.get_128x128_luma_patch_from_10bit_yuv_data(load_name, w, h, frame_number_int, yrand, xrand) + partY_crop2 = np.float32(patchY) + + load_name = load_path + load_name_start + '_bs.yuv' + patchY = self.get_128x128_luma_patch_from_10bit_yuv_data(load_name, w, h, frame_number_int, yrand, xrand) + bsY_crop2 = np.float32(patchY) + + # remove qp at the end + load_name_without_qp = load_name_start.split('_qp')[-2] + + path_to_original_DIV2K_yuvs = '/proj/video_no_backup/videosim/ejacstr/jvet_training_extraction/links_to_AB0053_data/DIV2K_train_HR_yuv/' + path_to_original_DIV2K_X2_yuvs = '/proj/video_no_backup/videosim/ejacstr/jvet_training_extraction/links_to_AB0053_data/DIV2K_train_X2_yuv/' + path_to_original_BVI_DVC_yuvs = '/proj/video_no_backup/videosim/ejacstr/jvet_training_extraction/links_to_AB0053_data/BVI_DVC_train_yuv/' + + if load_name_without_qp[0] == '0': # If the name starts with '0' it is either a DIV2K or DIV2K_X2 file. + # If it is DIV2K_X2 the name should start with 0???_x2 + if load_name_without_qp[4:7] == 'x2_': # we have a DIV2K_X2 frame + load_name = path_to_original_DIV2K_X2_yuvs+'/'+load_name_without_qp+'.yuv' + else: # we have a DIV2K frame + load_name = path_to_original_DIV2K_yuvs+'/'+load_name_without_qp+'.yuv' + else: # we have a BIV-DVC frame + load_name = path_to_original_BVI_DVC_yuvs+'/'+load_name_without_qp+'.yuv' + + if load_name_without_qp[0] == '0': + # We have DIV2K or DIV2K_X2 and should load 8bit data + patchY = self.get_128x128_luma_patch_from_8bit_yuv_data(load_name, w, h, frame_number_int, yrand, xrand) + origY_crop2 = np.float32(patchY) + else: + # We have BVI-DVC and should load 10bit data + if load_name_without_qp[0] == 'A': + # BVI-DVC class A samples are temporally subsampled a factor of 8 + patchY = self.get_128x128_luma_patch_from_10bit_yuv_data(load_name, w, h, frame_number_int*8, yrand, xrand) + origY_crop2 = np.float32(patchY) + else: + # all other are not temporally subsampled + patchY = self.get_128x128_luma_patch_from_10bit_yuv_data(load_name, w, h, frame_number_int, yrand, xrand) + origY_crop2 = np.float32(patchY) + + qp_value2 = (1.0*qp_number_int)*np.float32(np.ones(1)) + + return recY_crop2, predY_crop2, partY_crop2, bsY_crop2, origY_crop2, qp_value2 + + def __getitem__(self, idx): + # img_path = '/tmp/CTraditionalIndonesianKecakVidevo_960x544_25fps_10bit_420_qp25/CTraditionalIndonesianKecakVidevo_960x544_25fps_10bit_420_qp25_frm36_data_bs.yuv' + img_path = os.path.join(self.img_dir, self.img_names_pd.iloc[idx, 0]) + # Get only basename. + # Example: + # only_filename = 'CTraditionalIndonesianKecakVidevo_960x544_25fps_10bit_420_qp25_frm36_data_bs.yuv' + only_filename = os.path.basename(img_path) + # Example: + # left_of_last_x = 'CTraditionalIndonesianKecakVidevo_960' + left_of_last_x = only_filename.split('x')[-2] + # Example: + # right_of_last_x = '544_25fps_10bit_420_qp25_frm36_data_bs.yuv' + right_of_last_x = only_filename.split('x')[-1] + # Example: + # height_str = '544' + height_str = right_of_last_x.split('_')[0] + h = int(height_str) + # Example: + # width_str = '960' + width_str = left_of_last_x.split('_')[-1] + w = int(width_str) + + yrand = int(np.random.rand(1)*(h-127)) + xrand = int(np.random.rand(1)*(w-127)) + # The top left block of every all-intra image is special: Since it cannot predict from + # anything else, the prediction is gray. We are avoiding this since it may interfere + # with the training. Since the block cannot be larger than 64x64 samples, we avoid + # the entire 64x64 samples. Sample until not both are smaller than 64. + while ((yrand<64) and (xrand<64)): + yrand = int(np.random.rand(1)*(h-127)) + xrand = int(np.random.rand(1)*(w-127)) + + # Constrain xrand and yrand to always be divisible by 4. + # This ensures that the cropped part lines up with deblocking boundaries. + + yrand = yrand // 4 + xrand = xrand // 4 + yrand = yrand * 4 + xrand = xrand * 4 + + # Create path to yuv images. Example: + # self.img_dir = /proj/video_data3/videosim/data/loopNN/pred-part-qp-bs/train/ai/ + # self.img_names_pd.iloc[idx, 0] = train_dump/BCyclistS1BVIHFR_1920x1088_120fps_10bit_420/BCyclistS1BVIHFR_1920x1088_120fps_10bit_420_qp40_frm24_data_bs.yuv + base_dir = os.path.dirname(os.path.dirname(self.img_names_pd.iloc[idx, 0])) # train_dump in the example + seq_dir = os.path.basename(os.path.dirname(self.img_names_pd.iloc[idx, 0])) # BCyclistS1BVIHFR_1920x1088_120fps_10bit_420 in the example + image_name = os.path.basename(self.img_names_pd.iloc[idx, 0]) # BCyclistS1BVIHFR_1920x1088_120fps_10bit_420_qp40_frm24_data_bs.yuv in the example + left_of_last_underscore = image_name.split('_bs.yuv')[-2] # BCyclistS1BVIHFR_1920x1088_120fps_10bit_420_qp40_frm24_data in the example + load_name_start = left_of_last_underscore + load_path = self.img_dir # /proj/video_data3/videosim/data/loopNN/pred-part-qp-bs/train/ai/ai_train_yuvs_BVIDVC + load_path = os.path.join(load_path, seq_dir) # above plus /BMCLV_1920x1088_25fps_10bit_420_qp20 + load_yuv_path = load_path + + # Assume we start with load_name_start.split = 'ATunnelFlagS1Harmonics_3840x2176_60fps_10bit_420_qp40_frm0_data' + load_yuv_name_start = load_name_start.split('_data')[-2] # Gives 'ATunnelFlagS1Harmonics_3840x2176_60fps_10bit_420_qp40_frm0' + frame_number_int = int(load_yuv_name_start.split('_frm')[-1]) # Gives an integer 0 + load_yuv_name_start = load_yuv_name_start.split('_frm')[-2] # Gives 'ATunnelFlagS1Harmonics_3840x2176_60fps_10bit_420_qp40' + qp_number_int = int(load_yuv_name_start.split('_qp')[-1]) # Gives an integer 40 + + # Load data + recY_crop, predY_crop, partY_crop, bsY_crop, origY_crop, qp_value = self.yuv_file_sample(load_yuv_path+'/', load_yuv_name_start, yrand, xrand, frame_number_int, qp_number_int, w, h) + + # Move to tensor + recY_tensor = torch.tensor(recY_crop) + predY_tensor = torch.tensor(predY_crop) + partY_tensor = torch.tensor(partY_crop) + bsY_tensor = torch.tensor(bsY_crop) + qp_tensor = torch.tensor(qp_value)/64.0 + origY_tensor = torch.tensor(origY_crop) + # Transpose image randomly. + if np.random.rand(1) < 0.5 : + recY_tensor = torch.transpose(recY_tensor, 0, 1) + predY_tensor = torch.transpose(predY_tensor,0, 1) + partY_tensor = torch.transpose(partY_tensor,0, 1) + bsY_tensor = torch.transpose(bsY_tensor, 0, 1) + origY_tensor = torch.transpose(origY_tensor, 0, 1) -# learning policy -def adjust_learning_rate(optimizer, decay_rate): - """Sets the learning rate to the initial LR decayed by 10 every 30 epochs""" - print('update learing rate') - for param_group in optimizer.param_groups: - param_group['lr'] *= decay_rate + # Unsqueeze to move from (128, 128) to (1, 128, 128) and divide by 1024. + recY_tensor = torch.unsqueeze(recY_tensor/1024.0, 0) + predY_tensor = torch.unsqueeze(predY_tensor/1024.0, 0) + partY_tensor = torch.unsqueeze(partY_tensor/1024.0, 0) + bsY_tensor = torch.unsqueeze(bsY_tensor/1024.0, 0) + # desired output + origY_tensor = torch.unsqueeze(origY_tensor/1024.0, 0) + if self.transform: + recY_tensor = self.transform(recY_tensor) + predY_tensor = self.transform(predY_tensor) + partY_tensor = self.transform(partY_tensor) + bsY_tensor = self.transform(bsY_tensor) + if self.target_transform: + origY_tensor = self.target_transform(origY_tensor) + return qp_tensor, recY_tensor, predY_tensor, partY_tensor, bsY_tensor, origY_tensor + -def train(opt): - # Device configuration - if torch.cuda.is_available(): - device = torch.device('cuda') +def train_loop(dataloader, model, loss_fn, optimizer, epoch, checkpoint_path): + model.train() + size = len(dataloader.dataset) + stop_time = datetime.now() + loss_sum = 0 + for batch, (QP, recY, predY, partY, bsY, origY) in enumerate(dataloader): + my_device = torch.device('cuda:0' if torch.cuda.is_available() else 'cpu') + QP = QP.to(my_device) + recY = recY.to(my_device) + predY = predY.to(my_device) + bsY = bsY.to(my_device) + origY = origY.to(my_device) + + # Compute prediction and loss + filteredY = model(qp=QP, rec=recY, input=predY, input1=bsY) + + r_bar = origY-recY + r_hat = filteredY-recY + loss = loss_fn(r_hat, r_bar) + + loss_sum += loss.item() + + # Backpropagation + optimizer.zero_grad() + loss.backward() + optimizer.step() + + if batch % 200 == 0: + start_time = stop_time + stop_time = datetime.now() + duration = stop_time - start_time + loss, current = loss.item(), batch * len(recY) + ave_loss = loss_sum / (1.0 * (batch+1)) + print(f"ave loss: {ave_loss:>9e}, last loss: {loss:>7f} [{current:>5d}/{size:>5d}]", " ", duration.seconds, "seconds since last print out.") + + if (batch % 1000 == 0) and (not (batch==0)): + if epoch <= 1: + filename = 'epoch_%04d_' % (epoch) + 'batch%07d.pt' %(batch) + final_checkpoint_path = os.path.join(checkpoint_path, filename) + torch.save({ + 'epoch': epoch, + 'model_state_dict': model.state_dict(), + }, final_checkpoint_path) + + +def parse_args(argv): + """Parses command line arguments.""" + parser = argparse.ArgumentParser(description='Training script') + + parser.add_argument( + "--verbose", "-V", action="store_true", + help="Report progress and metrics when training or compressing.") + + parser.add_argument( + "--learning_rate", type=float, default=1e-4, + help="learning for training.") + parser.add_argument( + "--training_glob", type=str, + default=default_trainingset_arg, + help="Glob pattern identifying custom training data.") + + parser.add_argument( + "--base_train_dir", type=str, + default = default_base_train_dir, + help="The base directory for all training data") + parser.add_argument( + "--training_csv", type=str, + default = './csv/training', + help="Where to put the training csv file during training") + + parser.add_argument( + "--loss_function", type=str, + default = 'MSE', + help="The loss function, 'L1', 'MSE' or 'proj'.") + parser.add_argument( + "--validation_csv", type=str, + default = './csv/validation', + help="Where to put the validation csv file during training") + + parser.add_argument( + "--batchsize", type=int, default=64, + help="Batch size for training and validation.") + parser.add_argument( + "--num_workers", type=int, default=8, + help="Number of workers for training data.") + parser.add_argument( + "--weightY", type=int, default=2, + help="Weight for Y, i.e., k in loss function k*errY^2 + errU^2 + errV^2.") + parser.add_argument( + "--epochs", type=int, default=1000, + help="Train up to this number of epochs. (One epoch is here defined as " + "the number of steps given by --steps_per_epoch, not iterations " + "over the full training dataset.)") + parser.add_argument( + "--initial_epoch", type=int, default=0, + help="Train up to this number of epochs. (One epoch is here defined as " + "the number of steps given by --steps_per_epoch, not iterations " + "over the full training dataset.)") + parser.add_argument( + "--yuv", type=str, default='luma_chroma', + help="Specify which color component to train. Needs to be consistent with the chosen model.") + parser.add_argument( + "--modeldir", default="../BytedanceQualcomm_JVET-X0066/models/JVET_W_EE_1.6_LumaCNNFilter_IntraSlice.pt", + help="Path where to load the trained model.") + parser.add_argument( + "--save_model_path", default="C:/Users/eliudux/Downloads/temp/yuvsample/models_simp/model2/", + help="Path where to save model.") + parser.add_argument( + "--save_ckp_path", default="./pt_checkpoints/", + help="Path where to log training metrics for TensorBoard and back up " + "intermediate model checkpoints.") + parser.add_argument( + "--save_best_ckp_path", default="C:/Users/eliudux/Downloads/temp/yuvsample/checkpoints/best/ckp", + help="Path where to log training metrics for TensorBoard and back up " + "intermediate model checkpoints.") + parser.add_argument( + "--save_log", default="C:/Users/eliudux/Downloads/temp/yuvsample/log/", + help="Path where to save log.") + parser.add_argument( + "--load_ckp_path", default="", + help="Path where to log training metrics for TensorBoard and back up " + "intermediate model checkpoints.") + parser.add_argument( + "--tag", default="_mytest", + help="Tag for the current training.") + parser.add_argument( + "--initialize", type=int, default=1, + help="Initialize the model.") + parser.add_argument( + "--preprocess_threads", type=int, default=16, #16 + help="Number of CPU threads to use for parallel decoding of training " + "images.") + parser.add_argument( + "--log_step", type=int, default=2000, + help="Number of steps to save ckp.") + + # Parse arguments. + args = parser.parse_args(argv) + return args + + +def main(argv): + args = parse_args(argv) + stop_time = datetime.now() + + training_dir = args.base_train_dir + training_csv = args.training_csv+'_'+args.tag+'.csv' + + if 1: + training_glob_array = args.training_glob.split(',') + file_list = [] + for file_regex in training_glob_array: + if not file_regex == '': + file_regex = os.path.join(args.base_train_dir, file_regex) + print('Processing training regex =', file_regex) + addition = glob.glob(file_regex) + if len(addition) == 0: + raise RuntimeError("Error: expression", file_regex, "yielded no files.") + if len(addition) == 1: + print("*****************************************************************************") + print("WARNING: expression", file_regex, "yielded only one file.") + print("*****************************************************************************") + file_list = file_list + addition + if not file_list: + raise RuntimeError("No training images found with glob ", args.training_glob) + + num = 0 + with open(training_csv, 'w') as f: + f.write('end path\n') + for element in file_list: + if 1: + last = os.path.split(element)[1] + middle = os.path.split(os.path.split(element)[0])[1] + first = os.path.split(os.path.split(os.path.split(element)[0])[0])[1] + if last[0] == 'A': + num_frames_total = 8 + elif last[0] == 'B' or last[0] == 'C' or last[0] == 'D': + num_frames_total = 64 + else: + num_frames_total = 1 + left_of_last_underscore = last.split('_bs.yuv')[-2] + for frame_number in range(0,num_frames_total): + new_last = left_of_last_underscore + '_frm' + str(frame_number) + '_data_bs.yuv' + if new_last == 'AAdvertisingMassagesBangkokVidevo_3840x2176_25fps_10bit_420_qp25_frm7_data_bs.yuv': + print('Faulty frame detected. Avoiding sending it to the csv file.') + else: + f.write(os.path.join(first, os.path.join(middle, new_last))) + f.write('\n') + num += 1 + + # Start by finding out if we have cuda: + device = torch.device('cuda:0' if torch.cuda.is_available() else 'cpu') + + # Load model + #model_loaded = torch.jit.load(args.modeldir) + model_loaded = ConditionalNet1() + model_loaded = torch.jit.script(model_loaded).to(device) + print('Use self-defined model') + + # For some reason one has to do this, as explained in + # https://discuss.pytorch.org/t/model-train-and-model-eval-vs-model-and-model-eval/5744 + # My (Jacob's) best understanding is that the model may be saved for evaluation, in which + # case things like dropout and batch normalization are turned off, but these are needed + # during training. + # + model_loaded = model_loaded.train() + + if not args.load_ckp_path == "": + # load checkpoint + checkpoint = torch.load(args.load_ckp_path, map_location=torch.device('cpu')) + # torch load checkpoint + model_loaded.load_state_dict(checkpoint['model_state_dict']) + read_epoch = checkpoint['epoch'] + # We should start at the read_epoch + 1. + start_epoch = read_epoch+1 + print('The loaded epoch number was', start_epoch-1, 'so we will start training at epoch number', start_epoch) + my_loss = checkpoint['loss'] + # Not sure we need to do this again but better be safe than sorry + model_loaded = model_loaded.train() else: - device = torch.device('cpu') - - # load training and validation data - train_loader = get_loader(data=opt.train_data, batch_size=opt.train_batch_size, shuffle=True, - num_workers=opt.num_workers) - if opt.validation_data: - validation_loader = get_loader(data=opt.validation_data, batch_size=opt.validation_batch_size, shuffle=False, - num_workers=opt.num_workers) - # Construct network - CnnlfNet = ConditionalNet(opt.feature_maps, opt.rbn) - - if torch.cuda.device_count() > 1: - print("Let's use", torch.cuda.device_count(), "GPUs!") - # dim = 0 [30, xxx] -> [10, ...], [10, ...], [10, ...] on 3 GPUs - CnnlfNet = nn.DataParallel(CnnlfNet) - CnnlfNet.to(device) - - if opt.pretrained_model: - CnnlfNet.load_state_dict(torch.load(opt.pretrained_model, map_location=device)) - - optimizer = torch.optim.Adam(CnnlfNet.parameters(), lr=opt.lr, weight_decay=opt.weight_decay) - - # Loss and optimizer - criterion = nn.MSELoss() - if opt.MSE == 1: - print('Loss function: MSE') - criterionB = nn.MSELoss() + # reset weights + # According to https://discuss.pytorch.org/t/layer-weight-vs-weight-data/24271 + # changing weights may mess upp the gradient, so we use torch.no_grad() + with torch.no_grad(): + for name, param in model_loaded.named_parameters(): + param.data = 0.025*(torch.rand(param.shape)-0.5) + start_epoch = 1 + + print('Moving model to cuda.') + model_loaded = model_loaded.to(device) + print('Model moved to cuda.') + + training_dataset = CustomImageDataset(training_csv, training_dir) + #DataLoader(dataset, batch_size=1, shuffle=False, sampler=None, batch_sampler=None, num_workers=0, collate_fn=None, pin_memory=False, drop_last=False, timeout=0, worker_init_fn=None, *, prefetch_factor=2, persistent_workers=False) + batch_size = args.batchsize + train_dataloader = DataLoader(training_dataset, batch_size=args.batchsize, shuffle=True, num_workers=args.num_workers, pin_memory=True) + + learning_rate = args.learning_rate + print('Using learning rate', learning_rate, 'and beta2 = 0.999') + epochs = args.epochs + + #torch.nn.functional.mse_loss(input, target, size_average=None, reduce=None, reduction='mean') + if args.loss_function == 'L1': + loss_fn = nn.L1Loss() + print('Using L1 loss function.') + elif args.loss_function == 'MSE': + loss_fn = nn.MSELoss() + print('Using MSE loss function.') else: - print('Loss function: SAD') - criterionB = nn.L1Loss() - - # Train the model - step_per_epoch = len(train_loader) - for epoch in range(0, opt.epoches): - print('Epoch {}'.format(epoch)) - for i, sample_t in enumerate(train_loader): - global_step = epoch * step_per_epoch + i + 1 - if global_step == opt.decay_epoch1 * step_per_epoch or global_step == opt.decay_epoch2 * step_per_epoch: - adjust_learning_rate(optimizer, opt.decay_rate) - if global_step == (opt.mse_epoch * step_per_epoch): - criterionB = nn.MSELoss() - adjust_learning_rate(optimizer, opt.decay_rate) - org, rec, pred = sample_t['org'].to(device), sample_t['rec'].to(device), sample_t['pred'].to(device) - split, bs, qp = sample_t['split'].to(device), sample_t['bs'].to(device), sample_t['qp'].to(device) - # Forward pass - outputs = CnnlfNet(rec, pred, split, bs, qp) - lossB = criterionB(outputs, org) - loss = criterion(outputs, org) - - # Backward and optimize - optimizer.zero_grad() - lossB.backward() - optimizer.step() - if global_step % opt.loss_interval == 0: - print('Global Step {}, Loss: {:.4f}'.format(global_step, loss.item())) - print('PSNR of the model on a batch: {}'.format(10 * log10(1 / loss.item()))) - if opt.validation_data and global_step % opt.validation_interval == 0: - # validate the model - with torch.no_grad(): - avg_psnr_ref = 0 - avg_psnr_val = 0 - _len = 0 - for sample_v in validation_loader: - org, rec = sample_v['org'].to(device), sample_v['rec'].to(device) - pred, split = sample_v['pred'].to(device), sample_v['split'].to(device) - bs, qp = sample_v['bs'].to(device), sample_v['qp'].to(device) - outputs = CnnlfNet(rec, pred, split, bs, qp) - loss_ref = criterion(rec, org) - loss_val = criterion(outputs, org) - if loss_ref.item() == 0: - continue - _len += 1 - avg_psnr_ref += 10 * log10(1 / loss_ref.item()) - avg_psnr_val += 10 * log10(1 / loss_val.item()) - print('PSNR of the anchor on validation: {}'.format(avg_psnr_ref / _len)) - print('PSNR of the model on validation: {}'.format(avg_psnr_val / _len)) - if (epoch + 1) % opt.checkpoint_interval == 0: - # Save the model checkpoint - torch.save(CnnlfNet.state_dict(), str(epoch+1) + '.ckpt') + print("Loss function is not one of 'L1', or 'MSE' exiting.") + exit(1) + + optimizer = torch.optim.Adam(model_loaded.parameters(), lr=learning_rate, betas=(0.9, 0.999)) + + checkpoint_path = args.save_ckp_path + checkpoint_path = os.path.join(checkpoint_path, args.tag) + os.makedirs(checkpoint_path, exist_ok=True) + print('before training:') + for epoch in range(start_epoch, args.epochs+1): + print('epoch', epoch) + train_loop(train_dataloader, model_loaded, loss_fn, optimizer, epoch, checkpoint_path) + # Real validation is VTM evaluation so no need to run test_loop + my_loss = 1.0 # Dummy value to store instead of validation result. + filename = 'epoch_%04d.pt' % (epoch) + final_checkpoint_path = os.path.join(checkpoint_path, filename) + torch.save({ + 'epoch': epoch, + 'model_state_dict': model_loaded.state_dict(), + 'optimizer_state_dict': optimizer.state_dict(), + 'loss': my_loss, + }, final_checkpoint_path) + if __name__ == '__main__': - # parse arguments - parser = argparse.ArgumentParser() - - # training/validation data - parser.add_argument('--num_workers', type=int, default=4, help='number of workers') - parser.add_argument('--train_batch_size', type=int, default=64, help='train batch size') - parser.add_argument('--validation_batch_size', type=int, default=64, help='validation batch size') - parser.add_argument('--train_data', type=str, default='luma_data.bin', help='training data') - parser.add_argument('--validation_data', type=str, default='', help='validation data') - - # network - parser.add_argument('--feature_maps', type=int, default=96, help='number of feature maps') - parser.add_argument('--rbn', type=int, default=8, help='number of residual blocks') - - # loss - parser.add_argument('--weight_decay', type=float, default=1e-8, help='weight decay') - parser.add_argument('--MSE', type=int, default=0, help='loss function, default=SAD') - - # optimizer configurations - parser.add_argument('--lr', type=float, default=1e-4, help='learning rate, default=0.0001') - parser.add_argument('--decay_epoch1', type=int, default=20, help='first milestone to decay lr') - parser.add_argument('--decay_epoch2', type=int, default=30, help='second milestone to decay lr') - parser.add_argument('--mse_epoch', type=int, default=40, help='switch to the mse loss and decrease learning rate at mse_epoch') - parser.add_argument('--decay_rate', type=float, default=0.1, help='the multiplier to decay lr') - parser.add_argument('--epoches', type=int, default=50, help='number of epoches to train for') - - # dump configurations - parser.add_argument('--loss_interval', type=int, default=1000, help='number of iteration to print loss') - parser.add_argument('--validation_interval', type=int, default=10000, help='number of iteration to validate') - parser.add_argument('--checkpoint_interval', type=int, default=10, help='number of epochs to save checkpoint') - - # finetune - parser.add_argument('--pretrained_model', type=str, default="", help='pretrained model') - - options = parser.parse_args() - print(options) - - train(options) + main(sys.argv[1:]) + + diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/net.py b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/net.py index 3382db2b26486424dc8f2e2875df9b8172279ecd..332f0e521f6589acc784d51cacc6d9de27e2b358 100644 --- a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/net.py +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/net.py @@ -1,175 +1,88 @@ -""" -/* The copyright in this software is being made available under the BSD -* License, included below. This software may be subject to other third party -* and contributor rights, including patent rights, and no such rights are -* granted under this license. -* -* Copyright (c) 2010-2022, ITU/ISO/IEC -* All rights reserved. -* -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions are met: -* -* * Redistributions of source code must retain the above copyright notice, -* this list of conditions and the following disclaimer. -* * Redistributions in binary form must reproduce the above copyright notice, -* this list of conditions and the following disclaimer in the documentation -* and/or other materials provided with the distribution. -* * Neither the name of the ITU/ISO/IEC nor the names of its contributors may -* be used to endorse or promote products derived from this software without -* specific prior written permission. -* -* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -* THE POSSIBILITY OF SUCH DAMAGE. -""" - import torch import torch.nn as nn - -def conv3x3(in_channels, out_channels, stride=1, padding=1): - return nn.Conv2d(in_channels, out_channels, kernel_size=3, - stride=stride, padding=padding) - - -def conv1x1(in_channels, out_channels, stride=1, padding=0): - return nn.Conv2d(in_channels, out_channels, kernel_size=1, - stride=stride, padding=padding) - - -# Conv3x3 + PReLU class conv3x3_f(nn.Module): - def __init__(self, in_channels, out_channels, stride=1): - super(conv3x3_f, self).__init__() - self.conv = conv3x3(in_channels, out_channels, stride) + def __init__(self, in_channels, out_channels, kernel_size = 3,stride = 1): + super().__init__() + self.conv = nn.Conv2d(in_channels, out_channels, kernel_size, stride, padding=1 ) self.relu = nn.PReLU() + def forward(self,rec): + y = self.relu(self.conv(rec)) + return y - def forward(self, x): - x = self.conv(x) - x = self.relu(x) - return x - - -# Conv1x1 + PReLU class conv1x1_f(nn.Module): - def __init__(self, in_channels, out_channels, stride=1): - super(conv1x1_f, self).__init__() - self.conv = conv1x1(in_channels, out_channels, stride) + def __init__(self, in_channels, out_channels, kernel_size = 1): + super().__init__() + self.conv = nn.Conv2d(in_channels, out_channels, kernel_size, padding=0) self.relu = nn.PReLU() - - def forward(self, x): - x = self.conv(x) - x = self.relu(x) - return x - - -# Residual Block -class ResidualBlock(nn.Module): - def __init__(self, in_channels, out_channels): - super(ResidualBlock, self).__init__() - self.conv1 = conv3x3(in_channels, out_channels) + def forward(self,input): + y = self.relu(self.conv(input)) + return y + +class ResidualBlock2(nn.Module): + def __init__(self, in_channels, out_channels, no_features, kernel_size = 3): + super().__init__() + self.conv1 = nn.Conv2d(in_channels, no_features, kernel_size, padding=1) self.relu = nn.PReLU() - self.conv2 = conv3x3(out_channels, out_channels) - - def forward(self, x): - out = self.conv1(x) - out = self.relu(out) - out = self.conv2(out) - return out - - -class Flatten(nn.Module): - def forward(self, x): - return x.view(x.size(0), -1) - - -# Channel Gate -class ChannelGate(nn.Module): - def __init__(self, channels): - super(ChannelGate, self).__init__() - self.mlp = nn.Sequential( - Flatten(), - nn.Linear(1, channels), - nn.PReLU(), - nn.Linear(channels, channels) - ) - - def forward(self, x): - out = self.mlp(x) - return out - + self.conv2 = nn.Conv2d(no_features, out_channels, kernel_size, padding=1) + def forward(self,x): + res = self.conv2(self.relu(self.conv1(x))) + return res class SpatialGate(nn.Module): - def __init__(self, in_channels, num_features): - super(SpatialGate, self).__init__() - self.conv1 = conv3x3(in_channels, num_features, stride=2) + def __init__(self, in_channels, out_channels, no_features, stride = 1, kernel_size = 3): + super().__init__() + self.conv1 = nn.Conv2d(in_channels, no_features, kernel_size, stride, padding=1) self.relu = nn.PReLU() - self.conv2 = conv3x3(num_features, 1) - - def forward(self, x): - out = self.conv1(x) - out = self.relu(out) - out = self.conv2(out) - return out - - -class ConditionalNet(nn.Module): - def __init__(self, f, rbn): - super(ConditionalNet, self).__init__() - self.rbn = rbn - self.convRec = conv3x3_f(1, f) - self.convPred = conv3x3_f(1, f) - self.convSplit = conv3x3_f(1, f) - self.convBs = conv3x3_f(1, f) - self.convQp = conv3x3_f(1, f) - self.fuse = conv1x1_f(5 * f, f) - self.transitionH = conv3x3_f(f, f, 2) - self.backbone = nn.ModuleList([ResidualBlock(f, f)]) - for _ in range(self.rbn - 1): - self.backbone.append(ResidualBlock(f, f)) - self.mask = nn.ModuleList([SpatialGate(5, 32)]) - for _ in range(self.rbn - 1): - self.mask.append(SpatialGate(5, 32)) - self.last_layer = nn.Sequential( - nn.Conv2d( - in_channels=f, - out_channels=f, - kernel_size=3, - stride=1, - padding=1), - nn.PReLU(), - nn.Conv2d( - in_channels=f, - out_channels=4, - kernel_size=3, - stride=1, - padding=1), - nn.PixelShuffle(2) - ) - - def forward(self, rec, pred, split, bs, qp): - rec_f = self.convRec(rec) - pred_f = self.convPred(pred) - split_f = self.convSplit(split) - bs_f = self.convBs(bs) - qp_f = self.convQp(qp) - xh = torch.cat((rec_f, pred_f, split_f, bs_f, qp_f), 1) - xh = self.fuse(xh) - x = self.transitionH(xh) - for i in range(self.rbn): - x_resi = self.backbone[i](x) - attention = self.mask[i](torch.cat((rec, pred, split, bs, qp), 1)) - x = attention.expand_as(x_resi) * x_resi + x_resi + x - # output - x = self.last_layer(x) - x = x + rec - return x + self.conv2 = nn.Conv2d(no_features, out_channels, kernel_size, stride=1, padding=1) + def forward(self,x): + y = self.conv2(self.relu(self.conv1(x))) + return y + +class ConditionalNet1(nn.Module): + def __init__(self, in_channels=1, out_channels=4, no_features=96, kernel_size = 3): + super().__init__() + self.convRec = conv3x3_f(1,no_features,kernel_size,stride=1) + self.convPred = conv3x3_f(1,no_features,kernel_size,stride=1) + #self.convSplit = conv3x3_f(1,no_features,kernel_size,stride=1) + self.convBs = conv3x3_f(1,no_features,kernel_size,stride=1) + self.convQp = conv3x3_f(1,no_features,kernel_size,stride=1) + #self.fuse = conv1x1_f(5*no_features, no_features) + self.fuse = conv1x1_f(4*no_features, no_features) + self.transitionH = conv3x3_f(no_features, no_features,stride=2) + self.backbone = nn.ModuleList([ResidualBlock2(no_features,no_features,no_features) for i in range(8)]) + #self.mask = SpatialGate(5, 1, 32, stride=2) #size [32, 5, 3, 3] + self.last_layer = nn.Sequential(nn.Conv2d(no_features,no_features,kernel_size,padding=1), + nn.PReLU(), + nn.Conv2d(no_features,out_channels,kernel_size,padding=1), + nn.PixelShuffle(2), + ) + #def forward(self,qp,rec,input,input0,input1): + def forward(self,rec,input,input1,qp): + qp = torch.unsqueeze(torch.unsqueeze(qp, 2), 3) + input2 = qp.expand_as(rec) + #input3 = torch.cat([self.convRec(rec), self.convPred(input), self.convSplit(input0), + # self.convBs(input1), self.convQp(input2)], 1) #_25 + input3 = torch.cat([self.convRec(rec), self.convPred(input), + self.convBs(input1), self.convQp(input2)], 1) #_25 + + inputbackbone = self.transitionH(self.fuse(input3 ) ) #26 + + #inputspatial = torch.cat([rec, input, input0, input1, input2], 1) #_28, repeated 8 times + inputspatial = torch.cat([rec, input, input1, input2], 1) #_28, repeated 8 times + #ct=0 + #mask=self.mask + for backbone in self.backbone: + #ct+=1 + outputbackbone = backbone(inputbackbone) #27 + #if ct==8: + # #print(ct, "Spatial attention") + # spatialattention = mask(inputspatial) + # spatialattention = spatialattention.expand_as(outputbackbone) #29 + # y=outputbackbone * spatialattention + outputbackbone #30,34 + #else: + y = outputbackbone + #print(ct, "No spatial attention") + inputbackbone = inputbackbone + y # input5.. input19 + x = self.last_layer(inputbackbone) + rec + return x diff --git a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/train.sh b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/train.sh index 13ef29738e3c7c3e4dfdb4aa345b7c1b29fe1581..4686d3e7e3f86965e1986ceb94c5f4d3e3830d66 100755 --- a/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/train.sh +++ b/training/training_scripts/Nn_Filtering_Set_1/Scripts/LumaIntra/train.sh @@ -1,3 +1,3 @@ #!/bin/bash -python3 main.py +python3 main.py --learning_rate 1e-4 --loss_function 'L1' --num_workers 32 --epochs 371 --tag simple_model diff --git a/training/training_scripts/Nn_Filtering_Set_1/readme.pdf b/training/training_scripts/Nn_Filtering_Set_1/readme.pdf index d9da02c7a078a1551fb1fd15b6b9742dff64fe31..b380b13e3bbcbc192e6e8de1b046b1b9c87d29fd 100644 Binary files a/training/training_scripts/Nn_Filtering_Set_1/readme.pdf and b/training/training_scripts/Nn_Filtering_Set_1/readme.pdf differ