Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

How to rotate camera ? #46

Open
obiwan45 opened this issue Nov 28, 2018 · 2 comments
Open

How to rotate camera ? #46

obiwan45 opened this issue Nov 28, 2018 · 2 comments

Comments

@obiwan45
Copy link

How to rotate camera ? please help :(

@HardikHitu
Copy link

i am also facing same issue. can anyone resolved this?

@neomeric
Copy link

neomeric commented Jan 6, 2020

add this in onCameraFrame
Mat resizeImage = new Mat();
Size sz = new Size(800, 600); // Scale up to 800x600
Imgproc.resize(imgRgba, resizeImage, sz);
Core.rotate(resizeImage,resizeImage,Core.ROTATE_90_COUNTERCLOCKWISE);

    Mat afterResize = new Mat();
    Size szAfter = new Size(640,480 );
    Imgproc.resize(resizeImage, afterResize, szAfter);

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants