Skip to content

Commit

Permalink
docs : 불필요한 부분 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
sycuuui committed May 10, 2024
1 parent 5e45833 commit cc28518
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
10 changes: 0 additions & 10 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,6 @@

app = Flask(__name__)


@app.route('/')
def hello_world(): # put application's code here
return 'Hello World!'


@app.route('/test', methods=['POST'])
def test(): # put application's code here
return 'post test'

@app.route('/target', methods=['POST'])
def process_video():
video_file = request.files['video']
Expand Down
4 changes: 0 additions & 4 deletions createTarget.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ def extract_and_identify_faces_from_video(video_path):
# 얼굴 이미지 추출
face_image = frame[top:bottom, left:right]
face_images.append(face_image)




face_encodings.append(encoding)

# 인식된 얼굴 분류
Expand Down

0 comments on commit cc28518

Please sign in to comment.