predict_seuil_expe_maxwell_curve.py 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. # main imports
  2. import sys, os, argparse
  3. import subprocess
  4. import time
  5. import numpy as np
  6. # image processing imports
  7. from ipfml.processing import segmentation
  8. from PIL import Image
  9. # models imports
  10. from sklearn.externals import joblib
  11. # modules imports
  12. sys.path.insert(0, '') # trick to enable import of main folder module
  13. import custom_config as cfg
  14. from modules.utils import data as dt
  15. # variables and parameters
  16. scenes_path = cfg.dataset_path
  17. min_max_filename = cfg.min_max_filename_extension
  18. threshold_expe_filename = cfg.seuil_expe_filename
  19. threshold_map_folder = cfg.threshold_map_folder
  20. threshold_map_file_prefix = cfg.threshold_map_folder + "_"
  21. zones = cfg.zones_indices
  22. maxwell_scenes = cfg.maxwell_scenes_names
  23. normalization_choices = cfg.normalization_choices
  24. features_choices = cfg.features_choices_labels
  25. simulation_curves_zones = "simulation_curves_zones_"
  26. tmp_filename = '/tmp/__model__img_to_predict.png'
  27. current_dirpath = os.getcwd()
  28. def main():
  29. p_custom = False
  30. parser = argparse.ArgumentParser(description="Script which predicts threshold using specific model")
  31. parser.add_argument('--interval', type=str, help='Interval value to keep from svd', default='"0, 200"')
  32. parser.add_argument('--model', type=str, help='.joblib or .json file (sklearn or keras model)')
  33. parser.add_argument('--mode', type=str, help='Kind of normalization level wished', choices=normalization_choices)
  34. parser.add_argument('--feature', type=str, help='feature data choice', choices=features_choices)
  35. #parser.add_argument('--limit_detection', type=int, help='Specify number of same prediction to stop threshold prediction', default=2)
  36. parser.add_argument('--custom', type=str, help='Name of custom min max file if use of renormalization of data', default=False)
  37. args = parser.parse_args()
  38. # keep p_interval as it is
  39. p_interval = args.interval
  40. p_model_file = args.model
  41. p_mode = args.mode
  42. p_feature = args.feature
  43. #p_limit = args.limit
  44. p_custom = args.custom
  45. scenes = os.listdir(scenes_path)
  46. scenes = [s for s in scenes if s in maxwell_scenes]
  47. print(scenes)
  48. # go ahead each scenes
  49. for id_scene, folder_scene in enumerate(scenes):
  50. # only take in consideration maxwell scenes
  51. if folder_scene in maxwell_scenes:
  52. print(folder_scene)
  53. scene_path = os.path.join(scenes_path, folder_scene)
  54. threshold_expes = []
  55. threshold_expes_found = []
  56. block_predictions_str = []
  57. # get all images of folder
  58. scene_images = sorted([os.path.join(scene_path, img) for img in os.listdir(scene_path) if cfg.scene_image_extension in img])
  59. start_quality_image = dt.get_scene_image_quality(scene_images[0])
  60. end_quality_image = dt.get_scene_image_quality(scene_images[-1])
  61. # using first two images find the step of quality used
  62. quality_step_image = dt.get_scene_image_quality(scene_images[1]) - start_quality_image
  63. # get zones list info
  64. for index in zones:
  65. index_str = str(index)
  66. if len(index_str) < 2:
  67. index_str = "0" + index_str
  68. zone_folder = "zone"+index_str
  69. threshold_path_file = os.path.join(os.path.join(scene_path, zone_folder), threshold_expe_filename)
  70. with open(threshold_path_file) as f:
  71. threshold = int(f.readline())
  72. threshold_expes.append(threshold)
  73. # Initialize default data to get detected model threshold found
  74. threshold_expes_found.append(end_quality_image) # by default use max
  75. block_predictions_str.append(index_str + ";" + p_model_file + ";" + str(threshold) + ";" + str(start_quality_image) + ";" + str(quality_step_image))
  76. # for each images
  77. for img_path in scene_images:
  78. current_img = Image.open(img_path)
  79. current_quality_image = dt.get_scene_image_quality(img_path)
  80. img_blocks = segmentation.divide_in_blocks(current_img, (200, 200))
  81. for id_block, block in enumerate(img_blocks):
  82. # check only if necessary for this scene (not already detected)
  83. #if not threshold_expes_detected[id_block]:
  84. tmp_file_path = tmp_filename.replace('__model__', p_model_file.split('/')[-1].replace('.joblib', '_'))
  85. block.save(tmp_file_path)
  86. python_cmd_line = "python prediction/predict_noisy_image_svd.py --image {0} --interval '{1}' --model {2} --mode {3} --feature {4}"
  87. python_cmd = python_cmd_line.format(tmp_file_path, p_interval, p_model_file, p_mode, p_feature)
  88. # specify use of custom file for min max normalization
  89. if p_custom:
  90. python_cmd = python_cmd + ' --custom ' + p_custom
  91. ## call command ##
  92. p = subprocess.Popen(python_cmd, stdout=subprocess.PIPE, shell=True)
  93. (output, err) = p.communicate()
  94. ## Wait for result ##
  95. p_status = p.wait()
  96. prediction = int(output)
  97. # save here in specific file of block all the predictions done
  98. block_predictions_str[id_block] = block_predictions_str[id_block] + ";" + str(prediction)
  99. print(str(id_block) + " : " + str(current_quality_image) + "/" + str(threshold_expes[id_block]) + " => " + str(prediction))
  100. print("------------------------")
  101. print("Scene " + str(id_scene + 1) + "/" + str(len(scenes)))
  102. print("------------------------")
  103. # end of scene => display of results
  104. # construct path using model name for saving threshold map folder
  105. model_threshold_path = os.path.join(threshold_map_folder, p_model_file.split('/')[-1].replace('.joblib', ''))
  106. # create threshold model path if necessary
  107. if not os.path.exists(model_threshold_path):
  108. os.makedirs(model_threshold_path)
  109. map_filename = os.path.join(model_threshold_path, simulation_curves_zones + folder_scene)
  110. f_map = open(map_filename, 'w')
  111. for line in block_predictions_str:
  112. f_map.write(line + '\n')
  113. f_map.close()
  114. print("Scene " + str(id_scene + 1) + "/" + str(len(maxwell_scenes)) + " Done..")
  115. print("------------------------")
  116. print("Model predictions are saved into %s" % map_filename)
  117. if __name__== "__main__":
  118. main()