Study of synthesis images noise detection using 26 attributes
Jérôme BUISINE 9126bd5f79 Merge branch 'release/v0.0.7' | 5 anni fa | |
---|---|---|
analysis | 5 anni fa | |
data_processing | 5 anni fa | |
display | 5 anni fa | |
generate | 5 anni fa | |
modules @ d5de038bdc | 5 anni fa | |
others | 5 anni fa | |
prediction | 5 anni fa | |
run | 5 anni fa | |
simulation | 5 anni fa | |
.gitignore | 5 anni fa | |
.gitmodules | 5 anni fa | |
LICENSE | 5 anni fa | |
README.md | 5 anni fa | |
custom_config.py | 5 anni fa | |
data_attributes.py | 5 anni fa | |
models.py | 5 anni fa | |
requirements.txt | 5 anni fa | |
train_model.py | 5 anni fa |
Noise detection on synthesis images with 26 attributes obtained using few filters.
Filters list:
pip install -r requirements.txt
Generate all needed data for each features (which requires the the whole dataset. In order to get it, you need to contact us).
python generate/generate_all_data.py --feature all
Remark: Note here that all python script have --help command.
python generate_data_model.py --help
python generate_data_model.py --output xxxx --interval 0,20 --kind svdne --scenes "A, B, D" --zones "0, 1, 2" --percent 0.7 --sep: --rowindex 1 --custom custom_min_max_filename
Parameters explained:
This is an example of how to train a model
python train_model.py --data 'data/xxxx' --output 'model_file_to_save' --choice 'model_choice'
Expected values for the choice parameter are ['svm_model', 'ensemble_model', 'ensemble_model_v2'].
Now we have a model trained, we can use it with an image as input:
python prediction/predict_noisy_image_svd.py --image path/to/image.png --interval "x,x" --model saved_models/xxxxxx.joblib --feature 'lab' --mode 'svdn' --custom 'min_max_filename'
The model will return only 0 or 1:
All SVD features developed need:
Now we have a model trained, we can use it with an image as input:
python prediction_scene.py --data path/to/xxxx.csv --model saved_model/xxxx.joblib --output xxxxx --scene xxxx
Remark: scene parameter expected need to be the correct name of the Scene.
All scripts with names display/display_*.py are used to display data information or results.
Just use --help option to get more information.
All scripts named prediction/predict_seuil_expe*.py are used to simulate model prediction during rendering process. Do not forget the custom parameter filename if necessary.
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.
All others bash scripts are used to combine and run multiple model combinations...