In gapi, is there a way to create submatrix header?
I am building a new app and tyring the new gapi . I want to modify a subrange of a matrix, is it possible to do this in gapi ? Or is there a way to make a submatrix header in gapi?
G-API does not have interfaces do it directly, because it has different conception than traditional approach. Though you can try two workarounds: a) use
crop
method do cut image into several parts, then process one part, then useconcat
operations to create new image; b) use two separate graphs@mshabunin thank you very much. What I actually want to do is to overlay a smaller image on a larger one, is there a way to do so?