In gapi, is there a way to create submatrix header?

asked 2019-05-26 00:53:01 -0600

aaalllll gravatar image

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?

edit retag flag offensive close merge delete

Comments

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 use concat operations to create new image; b) use two separate graphs

mshabunin gravatar imagemshabunin ( 2019-05-27 06:13:48 -0600 )edit

@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?

aaalllll gravatar imageaaalllll ( 2019-05-28 02:08:29 -0600 )edit