We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfaf524 commit 7e312cbCopy full SHA for 7e312cb
Models/visualizations/DomainSeg/video_visualization.py
@@ -75,11 +75,11 @@ def main():
75
76
# Create a VideoCapture object and read from input file
77
# If the input is taken from the camera, pass 0 instead of the video file name.
78
- video_filepath = args.video_filepath
+ video_filepath = args.input_video_filepath
79
cap = cv2.VideoCapture(video_filepath)
80
81
# Output filepath
82
- output_filepath_obj = args.output_file + ".avi"
+ output_filepath_obj = args.output_video_filepath + ".avi"
83
fps = cap.get(cv2.CAP_PROP_FPS)
84
# Video writer object
85
writer_obj = cv2.VideoWriter(
0 commit comments