You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run Video_Lane_detecct.py, I meet this problem. But I have imported pipeline.py. I do not know what i should input here. video_output1 = 'test1.MOV' video_input1 = VideoFileClip('project_video.mp4')#.subclip(20,25) processed_video = video_input1.fl_image(CallPipeline) print("1") processed_video.write_videofile(video_output1, audio=False) print("done") video_input1.reader.close() video_input1.audio.reader.close_proc()
And the problem shows that: F:\Anaconda\ana\envs\tf\python.exe G:/车道线识别传统/SEU_LaneDetect-master/SEU_LaneDetect-master/src/video_lane_detecct.py laneImage (700, 1100, 3) new_img (700, 1100, 3) Traceback (most recent call last): File "G:/车道线识别传统/SEU_LaneDetect-master/SEU_LaneDetect-master/src/video_lane_detecct.py", line 21, in <module> processed_video = video_input1.fl_image(CallPipeline) NameError: name 'CallPipeline' is not defined
The text was updated successfully, but these errors were encountered:
When I run Video_Lane_detecct.py, I meet this problem. But I have imported pipeline.py. I do not know what i should input here.
video_output1 = 'test1.MOV'
video_input1 = VideoFileClip('project_video.mp4')#.subclip(20,25)
processed_video = video_input1.fl_image(CallPipeline)
print("1")
processed_video.write_videofile(video_output1, audio=False)
print("done")
video_input1.reader.close()
video_input1.audio.reader.close_proc()
And the problem shows that:
F:\Anaconda\ana\envs\tf\python.exe G:/车道线识别传统/SEU_LaneDetect-master/SEU_LaneDetect-master/src/video_lane_detecct.py
laneImage (700, 1100, 3)
new_img (700, 1100, 3)
Traceback (most recent call last):
File "G:/车道线识别传统/SEU_LaneDetect-master/SEU_LaneDetect-master/src/video_lane_detecct.py", line 21, in <module>
processed_video = video_input1.fl_image(CallPipeline)
NameError: name 'CallPipeline' is not defined
The text was updated successfully, but these errors were encountered: