Can't create AlignExposures in java

asked 2015-05-16 03:48:31 -0600

paddax gravatar image

The current release OpenCV 3.0 rc1 has no method for creating AlignExposures, the object exists in the org.opencv.photo package.

We were expecting to find a method Photo.createAlignExposures(List<mat>, List<mat>)

edit retag flag offensive close merge delete

Comments

1

it's the abstract base class (e.g for AlignMTB). you can't create an instance of it

instead, use Photo.createAlignMTB ) to create an instance of AlignMTB

berak gravatar imageberak ( 2015-05-16 04:19:28 -0600 )edit

Your right AlignExposures is the base class for AlignMTB, I guess we should be using createAlignMTB as this is the only implementation

paddax gravatar imagepaddax ( 2015-05-16 04:29:13 -0600 )edit