Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

image-prossesing

  1. C

    Unity Ways for Procedural Asset Generation

    Hello coding community! I am looking into a potential creative outlet to help discover myself and form a positive relationship with my ambitions. A little about myself before the question, I am a novice Python coder that has experience in basic unity. I love blender, and I am a huge user of...
  2. Casm

    Python How to repair the corrupted image below using opencv, python, numpy and necessary libraries

    import cv2 damaged_image = cv2.imread("Corrupted.png") mask = cv2.imread("mask.png", 0) output = cv2.inpaint(damaged_image, mask, 1, cv2.INPAINT_TELEA) cv2.imshow('test', output) cv2.waitKey(0) cv2.destroyAllWindows() I couldn't generate mask with python, i have drawn the mask by using Paint...
Back
Top Bottom