KeyiDing / EZnote

4 stars 0 forks source link

Human removal algorithm working issue #1

Open coder-vc1 opened 1 year ago

coder-vc1 commented 1 year ago

We got the Human detection concepts and other concepts but Can you explain pointwise that how your human/ teacher removal algorithm works?

nicklutuxun commented 1 year ago

We got the Human detection concepts and other concepts but Can you explain pointwise that how your human/ teacher removal algorithm works?

Sorry for the slow response, we were preparing for the finals these recent weeks.

Basically in the image we have 3 parts: background, board, and human. All three parts can overlap each other. What we did is when the human box overlaps the board box, stop updating the pixel within the overlapping area, and when the overlapping area is not overlapped any more, update their pixels. In otherwords, only update the pixels within board box when we can see it.

Hope this is helpful!