Cannot connect to X server GOOGLE COLAB

后端 未结 3 1663
清歌不尽
清歌不尽 2021-01-02 04:24

I am trying to make a prediction using Tensorflow Object Detection API on Google COLAB. Already I successfully completed the train

3条回答
  •  自闭症患者
    2021-01-02 04:36

    I had the same problem in Colab for a simple OpenCV program to track a tennis ball in a tennis match video and had to comment out these lines, as mentioned by @anand:

    #cv2.namedWindow("motion")
    #cv2.imshow("motion", img)# モーション画像を表示 
    
    #cv2.destroyAllWindows()
    

    Note: the above lines were not clustered but spread apart.

提交回复
热议问题