편집 기록

편집 기록
  • 프로필 nowp님의 편집
    날짜2021.03.30

    vscode, python으로 특정 코드 작성 시 출력창? 콘솔창? 결과값이 나오지 않습니다.


    import dlib
    import matplotlib.pyplot as plt
    import matplotlib.patches as patches
    import tensorflow as tf
    import numpy as np
    
    detector = dlib.get_frontal_face_detector()
    sp = dlib.shape_predictor('models/shape_predictor_5_face_landmarks.dat')
    
    img = dlib.load_rgb_image('imgs/01.jpg')
    
    plt.figure(figsize=(16, 10))
    plt.imshow(img)
    

    이미지를 불러오는 코드를 작성 시 결과창이 순식간에 깜빡하고 닫히네요. 구글링 해도 visual studio 2019 해결법만 있지 visual studio code 에 대한것은 없어 여기에 질문드립니다.

  • 프로필 알 수 없는 사용자님의 편집
    날짜2021.03.29

    vscode, python으로 특정 코드 작성 시 출력창? 콘솔창? 결과값이 나오지 않습니다.


    import dlib import matplotlib.pyplot as plt import matplotlib.patches as patches import tensorflow as tf import numpy as np

    detector = dlib.get_frontal_face_detector() sp = dlib.shape_predictor('models/shape_predictor_5_face_landmarks.dat')

    img = dlib.load_rgb_image('imgs/01.jpg')

    plt.figure(figsize=(16, 10)) plt.imshow(img)

    이미지를 불러오는 코드를 작성 시 결과창이 순식간에 깜빡하고 닫히네요 구글링 해도 visual studio 2019 해결법만 있지 visual studio code 에 대한것은 없어 여기에 질문드립니다.