-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
이미지 지우기 AI 탐색 #1
Comments
Inpainting 논문 |
Image Inpainting Model Lama |
LaMa?
|
Lama
|
참고할 만한 논문 |
LaMa Docker로 활용하기
|
simple LaMahttps://github.com/enesmsahin/simple-lama-inpainting from simple_lama_inpainting import SimpleLama
from PIL import Image
simple_lama = SimpleLama()
img_path = "image.png"
mask_path = "mask.png"
image = Image.open(img_path)
mask = Image.open(mask_path).convert('L')
result = simple_lama(image, mask)
result.save("inpainted.png") 다음과 같이 쉽게 활용이 가능합니다. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1차 발견
image inpainting
를 획득했습니다.Confidence Feedback and Guided Upsampling
The text was updated successfully, but these errors were encountered: