7a92698dfc
(Doubles processing time, can be switched off)
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
#!//usr/bin/python3
|
|
import file_utility as file
|
|
import numpyHDR as hdr
|
|
|
|
'''CLI application for HDR experiments'''
|
|
|
|
stack = []
|
|
select = input("Select Image Source: 1 - Raspicam, 2 - From File, 3 - Image sequence, 4 debug: ")
|
|
|
|
if int(select) == 1:
|
|
import picamburst as pcb
|
|
#Get sequence from raspicam
|
|
stack = pcb.get_exposure_stack()
|
|
|
|
if int(select) == 2:
|
|
path_list = []
|
|
i= 0
|
|
nr = input("How many images? :")
|
|
for image in range(int(nr)):
|
|
i += 1
|
|
image = input(f"Enter filename {i}: ")
|
|
path_list.append(image)
|
|
stack = file.openImageList(path_list, True)
|
|
|
|
if int(select) == 3:
|
|
path_list = []
|
|
i = 0
|
|
nr = input("How many images? :")
|
|
image = input(f"Enter first filename without seq Nr and .jpg {i}: ")
|
|
for i in range(int(nr)):
|
|
filename = f"{image}{i}.jpg"
|
|
path_list.append(filename)
|
|
stack = file.openImageList(path_list, True)
|
|
|
|
if int(select) == 4:
|
|
path_list = ['webcam25_3_2023_ev0.jpg','webcam25_3_2023_ev1.jpg','webcam25_3_2023_ev2.jpg']
|
|
stack = file.openImageList(path_list, True)
|
|
|
|
print(path_list)
|
|
|
|
#Process HDR with mertens fusion and post effects, blur
|
|
#Set last value to false for double the speed but lesser blancaed hdr effect.
|
|
result = hdr.process(stack, 1, 1, 1, True, True)
|
|
|
|
#Save Result to File
|
|
file = file.saveResultToFile(result, 'hdr/result2', 75)
|
|
|
|
|
|
|
|
|