Vincci
Vincci

Reputation: 43

error: incompatible types: org.opencv.core.Point cannot be converted to android.graphics.Point

I am new to OpenCV.

I was wondering how could I convert org.opencv.core.Point to android.graphics.Point.

This is my code :

Point size = new Point();     
display.getSize(size);

double mobile_width = size.x;
double mobile_height = size.y;

I received an error message.

error: incompatible types: org.opencv.core.Point cannot be converted to android.graphics.Point
display.getSize(size);

Upvotes: 1

Views: 381

Answers (1)

Anish B.
Anish B.

Reputation: 16469

Just do this :

android.graphics.Point size = new android.graphics.Point();     
display.getSize(size);

double mobile_width = size.x;
double mobile_height = size.y;

Read this : https://developer.android.com/reference/android/graphics/Point

Upvotes: 1

Related Questions