Community Profile

photo

Mazvydas Tadaravicius


Active since 2011

Statistics

  • Thankful Level 1

View badges

Content Feed

View by

Answered
Image Background Removal
function [outIm] = makeMask2(bg, im, tol) outIm = ((im > bg + tol) | (im < bg - tol)); end This function does the job...

13 years ago | 0

Question


Image Background Removal
For my gesture recognition uni project I have developed simple code that removes background from the image. For it to work there...

13 years ago | 2 answers | 0

2

answers