Feeds
已回答
Image Background Removal
function [outIm] = makeMask2(bg, im, tol) outIm = ((im > bg + tol) | (im < bg - tol)); end This function does the job...
Image Background Removal
function [outIm] = makeMask2(bg, im, tol) outIm = ((im > bg + tol) | (im < bg - tol)); end This function does the job...
14 years 前 | 0
提问
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...
14 years 前 | 2 个回答 | 0