parser.add_argument('--input1','-i1',type=str,help='Path to the input image1.')
parser.add_argument('--input2','-i2',type=str,help='Path to the input image2.')
parser.add_argument('--face_detection_model','-fd',type=str,help='Path to the face detection model. Download the model at https://github.com/ShiqiYu/libfacedetection.train/tree/master/tasks/task1/onnx.')
parser.add_argument('--face_recognition_model','-fr',type=str,help='Path to the face recognition model. Download the model at https://drive.google.com/file/d/1ClK9WiB492c5OZFKveF3XiHCejoOxINW/view.')
print('They have {}. Cosine Similarity: {}, threshold: {} (higher value means higher similarity, max 1.0).'.format(msg,cosine_score,cosine_similarity_threshold))