predict_seuil_expe_maxwell.py 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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. tmp_filename = '/tmp/__model__img_to_predict.png'
  18. current_dirpath = os.getcwd()
  19. def main():
  20. # by default..
  21. p_custom = False
  22. if len(sys.argv) <= 1:
  23. print('Run with default parameters...')
  24. print('python predict_seuil_expe_maxwell.py --interval "0,20" --model path/to/xxxx.joblib --mode svdn --metric lab --limit_detection xx --custom min_max_filename')
  25. sys.exit(2)
  26. try:
  27. opts, args = getopt.getopt(sys.argv[1:], "ht:m:o:l:c", ["help=", "interval=", "model=", "mode=", "metric=", "limit_detection=", "custom="])
  28. except getopt.GetoptError:
  29. # print help information and exit:
  30. print('python predict_seuil_expe_maxwell.py --interval "xx,xx" --model path/to/xxxx.joblib --mode svdn --metric lab --limit_detection xx --custom min_max_filename')
  31. sys.exit(2)
  32. for o, a in opts:
  33. if o == "-h":
  34. print('python predict_seuil_expe_maxwell.py --interval "xx,xx" --model path/to/xxxx.joblib --mode svdn --metric lab --limit_detection xx --custom min_max_filename')
  35. sys.exit()
  36. elif o in ("-t", "--interval"):
  37. p_interval = a
  38. elif o in ("-m", "--model"):
  39. p_model_file = a
  40. elif o in ("-o", "--mode"):
  41. p_mode = a
  42. if p_mode != 'svdn' and p_mode != 'svdne' and p_mode != 'svd':
  43. assert False, "Mode not recognized"
  44. elif o in ("-m", "--metric"):
  45. p_metric = a
  46. elif o in ("-l", "--limit_detection"):
  47. p_limit = int(a)
  48. elif o in ("-c", "--custom"):
  49. p_custom = a
  50. else:
  51. assert False, "unhandled option"
  52. scenes = os.listdir(scenes_path)
  53. scenes = [s for s in scenes if s in maxwell_scenes]
  54. # go ahead each scenes
  55. for id_scene, folder_scene in enumerate(scenes):
  56. # only take in consideration maxwell scenes
  57. if folder_scene in maxwell_scenes:
  58. print(folder_scene)
  59. scene_path = os.path.join(scenes_path, folder_scene)
  60. config_path = os.path.join(scene_path, config_filename)
  61. with open(config_path, "r") as config_file:
  62. last_image_name = config_file.readline().strip()
  63. prefix_image_name = config_file.readline().strip()
  64. start_index_image = config_file.readline().strip()
  65. end_index_image = config_file.readline().strip()
  66. step_counter = int(config_file.readline().strip())
  67. threshold_expes = []
  68. threshold_expes_detected = []
  69. threshold_expes_counter = []
  70. threshold_expes_found = []
  71. # get zones list info
  72. for index in zones:
  73. index_str = str(index)
  74. if len(index_str) < 2:
  75. index_str = "0" + index_str
  76. zone_folder = "zone"+index_str
  77. threshold_path_file = os.path.join(os.path.join(scene_path, zone_folder), threshold_expe_filename)
  78. with open(threshold_path_file) as f:
  79. threshold = int(f.readline())
  80. threshold_expes.append(threshold)
  81. # Initialize default data to get detected model threshold found
  82. threshold_expes_detected.append(False)
  83. threshold_expes_counter.append(0)
  84. threshold_expes_found.append(int(end_index_image)) # by default use max
  85. current_counter_index = int(start_index_image)
  86. end_counter_index = int(end_index_image)
  87. print(current_counter_index)
  88. check_all_done = False
  89. while(current_counter_index <= end_counter_index and not check_all_done):
  90. current_counter_index_str = str(current_counter_index)
  91. while len(start_index_image) > len(current_counter_index_str):
  92. current_counter_index_str = "0" + current_counter_index_str
  93. img_path = os.path.join(scene_path, prefix_image_name + current_counter_index_str + ".png")
  94. current_img = Image.open(img_path)
  95. img_blocks = processing.divide_in_blocks(current_img, (200, 200))
  96. check_all_done = all(d == True for d in threshold_expes_detected)
  97. for id_block, block in enumerate(img_blocks):
  98. # check only if necessary for this scene (not already detected)
  99. if not threshold_expes_detected[id_block]:
  100. tmp_file_path = tmp_filename.replace('__model__', p_model_file.split('/')[-1].replace('.joblib', '_'))
  101. block.save(tmp_file_path)
  102. python_cmd = "python predict_noisy_image_svd.py --image " + tmp_file_path + \
  103. " --interval '" + p_interval + \
  104. "' --model " + p_model_file + \
  105. " --mode " + p_mode + \
  106. " --metric " + p_metric
  107. # specify use of custom file for min max normalization
  108. if p_custom:
  109. python_cmd = python_cmd + ' --custom ' + p_custom
  110. ## call command ##
  111. p = subprocess.Popen(python_cmd, stdout=subprocess.PIPE, shell=True)
  112. (output, err) = p.communicate()
  113. ## Wait for result ##
  114. p_status = p.wait()
  115. prediction = int(output)
  116. if prediction == 0:
  117. threshold_expes_counter[id_block] = threshold_expes_counter[id_block] + 1
  118. else:
  119. threshold_expes_counter[id_block] = 0
  120. if threshold_expes_counter[id_block] == p_limit:
  121. threshold_expes_detected[id_block] = True
  122. threshold_expes_found[id_block] = current_counter_index
  123. print(str(id_block) + " : " + str(current_counter_index) + "/" + str(threshold_expes[id_block]) + " => " + str(prediction))
  124. current_counter_index += step_counter
  125. print("------------------------")
  126. print("Scene " + str(id_scene + 1) + "/" + str(len(maxwell_scenes)))
  127. print("------------------------")
  128. # end of scene => display of results
  129. # construct path using model name for saving threshold map folder
  130. model_treshold_path = os.path.join(threshold_map_folder, p_model_file.split('/')[-1].replace('.joblib', ''))
  131. # create threshold model path if necessary
  132. if not os.path.exists(model_treshold_path):
  133. os.makedirs(model_treshold_path)
  134. abs_dist = []
  135. map_filename = os.path.join(model_treshold_path, threshold_map_file_prefix + folder_scene)
  136. f_map = open(map_filename, 'w')
  137. line_information = ""
  138. # default header
  139. f_map.write('| | | | |\n')
  140. f_map.write('---|----|----|---\n')
  141. for id, threshold in enumerate(threshold_expes_found):
  142. line_information += str(threshold) + " / " + str(threshold_expes[id]) + " | "
  143. abs_dist.append(abs(threshold - threshold_expes[id]))
  144. if (id + 1) % 4 == 0:
  145. f_map.write(line_information + '\n')
  146. line_information = ""
  147. f_map.write(line_information + '\n')
  148. min_abs_dist = min(abs_dist)
  149. max_abs_dist = max(abs_dist)
  150. avg_abs_dist = sum(abs_dist) / len(abs_dist)
  151. f_map.write('\nScene information : ')
  152. f_map.write('\n- BEGIN : ' + str(start_index_image))
  153. f_map.write('\n- END : ' + str(end_index_image))
  154. f_map.write('\n\nDistances information : ')
  155. f_map.write('\n- MIN : ' + str(min_abs_dist))
  156. f_map.write('\n- MAX : ' + str(max_abs_dist))
  157. f_map.write('\n- AVG : ' + str(avg_abs_dist))
  158. f_map.write('\n\nOther information : ')
  159. f_map.write('\n- Detection limit : ' + str(p_limit))
  160. # by default print last line
  161. f_map.close()
  162. print("Scene " + str(id_scene + 1) + "/" + str(len(scenes)) + " Done..")
  163. print("------------------------")
  164. time.sleep(10)
  165. if __name__== "__main__":
  166. main()