Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

if you can make a mask-image of that "special roi", it's all easy. a lot og opencv image ops take binary masks (to reduce the procssed pixels), you can even use them directly: i.e Mat mask_out = gray_image & mask would leave only the pixels from gray, where mask was non-null

if you can make a mask-image of that "special roi", it's all easy. a lot og easy.

many opencv image ops take binary masks (to reduce the procssed pixels), pixels),

you can even use them directly: directly:

i.e Mat mask_out = gray_image & mask would leave only the pixels from gray, where mask was non-null

if you can make a mask-image of that "special roi", it's all easy.

many opencv image ops take binary masks (to reduce the procssed processed pixels),

you can even use them directly:directly, i.e :

i.e

Mat mask_out = gray_image & maskmask
 

would leave only the pixels from gray, gray_image in mask_out, where mask was non-null