predict_seuil_expe_maxwell_curve.py 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. from sklearn.externals import joblib
  2. import numpy as np
  3. from ipfml import processing
  4. from PIL import Image
  5. import sys, os, getopt
  6. import subprocess
  7. import time
  8. from modules.utils import config as cfg
  9. config_filename = cfg.config_filename
  10. scenes_path = cfg.dataset_path
  11. min_max_filename = cfg.min_max_filename_extension
  12. threshold_expe_filename = cfg.seuil_expe_filename
  13. threshold_map_folder = cfg.threshold_map_folder
  14. threshold_map_file_prefix = cfg.threshold_map_folder + "_"
  15. zones = cfg.zones_indices
  16. maxwell_scenes = cfg.maxwell_scenes_names
  17. simulation_curves_zones = "simulation_curves_zones_"
  18. tmp_filename = '/tmp/__model__img_to_predict.png'
  19. current_dirpath = os.getcwd()
  20. def main():
  21. p_custom = False
  22. # TODO : use of argparse
  23. if len(sys.argv) <= 1:
  24. print('Run with default parameters...')
  25. print('python predict_seuil_expe_maxwell_curve.py --interval "0,20" --model path/to/xxxx.joblib --mode svdn --metric lab --limit_detection xx --custom min_max_filename')
  26. sys.exit(2)
  27. try:
  28. opts, args = getopt.getopt(sys.argv[1:], "ht:m:o:l:c", ["help=", "interval=", "model=", "mode=", "metric=", "limit_detection=", "custom="])
  29. except getopt.GetoptError:
  30. # print help information and exit:
  31. print('python predict_seuil_expe_maxwell_curve.py --interval "xx,xx" --model path/to/xxxx.joblib --mode svdn --metric lab --limit_detection xx --custom min_max_filename')
  32. sys.exit(2)
  33. for o, a in opts:
  34. if o == "-h":
  35. print('python predict_seuil_expe_maxwell_curve.py --interval "xx,xx" --model path/to/xxxx.joblib --mode svdn --metric lab --limit_detection xx --custom min_max_filename')
  36. sys.exit()
  37. elif o in ("-t", "--interval"):
  38. p_interval = a
  39. elif o in ("-m", "--model"):
  40. p_model_file = a
  41. elif o in ("-o", "--mode"):
  42. p_mode = a
  43. if p_mode != 'svdn' and p_mode != 'svdne' and p_mode != 'svd':
  44. assert False, "Mode not recognized"
  45. elif o in ("-m", "--metric"):
  46. p_metric = a
  47. elif o in ("-l", "--limit_detection"):
  48. p_limit = int(a)
  49. elif o in ("-c", "--custom"):
  50. p_custom = a
  51. else:
  52. assert False, "unhandled option"
  53. scenes = os.listdir(scenes_path)
  54. scenes = [s for s in scenes if s in maxwell_scenes]
  55. print(scenes)
  56. # go ahead each scenes
  57. for id_scene, folder_scene in enumerate(scenes):
  58. # only take in consideration maxwell scenes
  59. if folder_scene in maxwell_scenes:
  60. print(folder_scene)
  61. scene_path = os.path.join(scenes_path, folder_scene)
  62. config_path = os.path.join(scene_path, config_filename)
  63. with open(config_path, "r") as config_file:
  64. last_image_name = config_file.readline().strip()
  65. prefix_image_name = config_file.readline().strip()
  66. start_index_image = config_file.readline().strip()
  67. end_index_image = config_file.readline().strip()
  68. step_counter = int(config_file.readline().strip())
  69. threshold_expes = []
  70. threshold_expes_found = []
  71. block_predictions_str = []
  72. # get zones list info
  73. for index in zones:
  74. index_str = str(index)
  75. if len(index_str) < 2:
  76. index_str = "0" + index_str
  77. zone_folder = "zone"+index_str
  78. threshold_path_file = os.path.join(os.path.join(scene_path, zone_folder), threshold_expe_filename)
  79. with open(threshold_path_file) as f:
  80. threshold = int(f.readline())
  81. threshold_expes.append(threshold)
  82. # Initialize default data to get detected model threshold found
  83. threshold_expes_found.append(int(end_index_image)) # by default use max
  84. block_predictions_str.append(index_str + ";" + p_model_file + ";" + str(threshold) + ";" + str(start_index_image) + ";" + str(step_counter))
  85. current_counter_index = int(start_index_image)
  86. end_counter_index = int(end_index_image)
  87. print(current_counter_index)
  88. while(current_counter_index <= end_counter_index):
  89. current_counter_index_str = str(current_counter_index)
  90. while len(start_index_image) > len(current_counter_index_str):
  91. current_counter_index_str = "0" + current_counter_index_str
  92. img_path = os.path.join(scene_path, prefix_image_name + current_counter_index_str + ".png")
  93. current_img = Image.open(img_path)
  94. img_blocks = processing.divide_in_blocks(current_img, (200, 200))
  95. for id_block, block in enumerate(img_blocks):
  96. # check only if necessary for this scene (not already detected)
  97. #if not threshold_expes_detected[id_block]:
  98. tmp_file_path = tmp_filename.replace('__model__', p_model_file.split('/')[-1].replace('.joblib', '_'))
  99. block.save(tmp_file_path)
  100. python_cmd = "python predict_noisy_image_svd.py --image " + tmp_file_path + \
  101. " --interval '" + p_interval + \
  102. "' --model " + p_model_file + \
  103. " --mode " + p_mode + \
  104. " --metric " + p_metric
  105. # specify use of custom file for min max normalization
  106. if p_custom:
  107. python_cmd = python_cmd + ' --custom ' + p_custom
  108. ## call command ##
  109. p = subprocess.Popen(python_cmd, stdout=subprocess.PIPE, shell=True)
  110. (output, err) = p.communicate()
  111. ## Wait for result ##
  112. p_status = p.wait()
  113. prediction = int(output)
  114. # save here in specific file of block all the predictions done
  115. block_predictions_str[id_block] = block_predictions_str[id_block] + ";" + str(prediction)
  116. print(str(id_block) + " : " + str(current_counter_index) + "/" + str(threshold_expes[id_block]) + " => " + str(prediction))
  117. current_counter_index += step_counter
  118. print("------------------------")
  119. print("Scene " + str(id_scene + 1) + "/" + str(len(scenes)))
  120. print("------------------------")
  121. # end of scene => display of results
  122. # construct path using model name for saving threshold map folder
  123. model_threshold_path = os.path.join(threshold_map_folder, p_model_file.split('/')[-1].replace('.joblib', ''))
  124. # create threshold model path if necessary
  125. if not os.path.exists(model_threshold_path):
  126. os.makedirs(model_threshold_path)
  127. map_filename = os.path.join(model_threshold_path, simulation_curves_zones + folder_scene)
  128. f_map = open(map_filename, 'w')
  129. for line in block_predictions_str:
  130. f_map.write(line + '\n')
  131. f_map.close()
  132. print("Scene " + str(id_scene + 1) + "/" + str(len(maxwell_scenes)) + " Done..")
  133. print("------------------------")
  134. print("Model predictions are saved into %s" % map_filename)
  135. time.sleep(10)
  136. if __name__== "__main__":
  137. main()