Convert Array Object to Array Pointer

I have two arrays. One of them is an Array Object, and the other is an Array Pointer. My question is, how do I convert an array object to an array pointer? I’ve attached a screenshot for reference.

array

Any help will be highly appreciated! Thanks in advance.

You have two untyped arrays, one containing an Object instance, and the other containing several Point instances.

This OpenCV page describes how to construct a Point instance, and also mentions that both forms are acceptable.

To convert the contents of an array, have a look at Array.map().