U2-NET이라는 Object Detection Deep Learning model을 이용해 배경 이미지를 날리고 테두리 Alpha 부분을 다듬어서 깔끔하게 배경을 날려주는 네트워크.
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/', methods=['GET', 'POST'])
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True, port=5001)
The algorithm calculates foreground edges and segments it out.