does anyone here know how to stich two or more images in OpenCvSharp with masking areas for keypoints searching? I found this prototype function in OpenCV:
stitch (InputArrayOfArrays images, InputArrayOfArrays masks, OutputArray pano)
It has no implementation in OpenCvSharp, but there is Stitcher method which looks similar:
public Status Stitch(InputArray images, Rect[][] rois, OutputArray pano)
Is this method the right one? Can anyone provide working example?
Thank you