Syntesis images noise detection using CNN approach
Jérôme BUISINE d96bbf844c Merge branch 'release/v0.2.0' | 5 anos atrás | |
---|---|---|
display | 5 anos atrás | |
generate | 5 anos atrás | |
modules @ 486200b982 | 5 anos atrás | |
prediction | 5 anos atrás | |
simulation | 5 anos atrás | |
.gitignore | 5 anos atrás | |
.gitmodules | 5 anos atrás | |
LICENSE | 5 anos atrás | |
README.md | 5 anos atrás | |
__init__.py | 5 anos atrás | |
custom_config.py | 5 anos atrás | |
requirements.txt | 5 anos atrás | |
run.sh | 5 anos atrás | |
run_tl_test.sh | 5 anos atrás | |
train_model.py | 5 anos atrás |
git clone --recursive https://github.com/prise-3d/Thesis-NoiseDetection-CNN.git
pip install -r requirements.txt
You have to create a symbolic link to your own database which respects this structure:
Create your symbolic link:
ln -s /path/to/your/data dataset
modules/config/global_config.py
run/runAll_*.sh
script.model_comparisons.csv
file used for store models performance.Generate reconstructed data from specific method of reconstruction (run only once time or clean data folder before):
python generate/generate_reconstructed_data.py -h
Generate custom dataset from one reconstructed method or multiples (implemented later)
python generate/generate_dataset.py -h
List of expected parameter by reconstruction method:
Example:
python generate/generate_dataset.py --output data/output_data_filename --features "svd_reconstruction, ipca_reconstruction, fast_ica_reconstruction" --renderer "maxwell" --scenes "A, D, G, H" --params "100, 200 :: 50, 10 :: 50" --nb_zones 10 --random 1
Then, train model using your custom dataset:
python train_model.py --data data/custom_dataset --output output_model_name
Now we have a model trained, we can use it with an image as input:
python prediction/predict_noisy_image.py --image path/to/image.png --model saved_models/xxxxxx.json --features 'svd_reconstruction' --params '100, 200'
The model will return only 0 or 1:
All scripts named prediction/predict_seuil_expe*.py are used to simulate model prediction during rendering process.
Once you have simulation done. Checkout your threshold_map/%MODEL_NAME%/simulation_curves_zones_*/ folder and use it with help of display_simulation_curves.py script.