-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathground_analysis.py
50 lines (31 loc) · 1.26 KB
/
ground_analysis.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from time import sleep
import git
import os
from image_analysis.image_registration import image_registration
from image_analysis.find_outages import find_difference
REPO_PATH = os.path.abspath(__file__)
FOLDER_PATH = "image_analysis/cubesat_output"
repo = git.Repo("")
origin = repo.remotes.origin
last_commit = repo.head.commit
path_to_output = "image_analysis/cubesat_output"
while True:
sleep(1)
try:
origin.pull("main")
except git.exc.GitCommandError as e:
print(f"Failed to pull from the repository: {e}")
new_commit = repo.head.commit
if (last_commit != new_commit):
print("recieved commit!")
folders = os.listdir(path_to_output)
shake_time = max(folders)
path_to_folder = f"{FOLDER_PATH}/{shake_time}"
no_outages_path = f"{path_to_folder}/no_outages.jpg"
with_outages_path = f"{path_to_folder}/with_outages.jpg"
aligned_image_path = f"{path_to_folder}/aligned_image"
outage_map_path = f"{path_to_folder}/outage_map"
image_registration(no_outages_path, with_outages_path, aligned_image_path)
find_difference(no_outages_path, aligned_image_path + ".png", outage_map_path)
print("analyzed the images!")
last_commit = repo.head.commit