Ask Your Question

lea's profile - activity

2016-09-05 01:04:51 -0600 received badge  Enthusiast
2016-08-17 03:53:19 -0600 commented question Mirror Image on Android Front Camera

on my application i need screenOrientation="landscape" so i want that the options bar will be on the bottom also when the device on portrate mode. how can i change it manually?

2016-07-05 05:04:23 -0600 commented answer Hot to convert a Mat object to byte[] data object in "onPreviewFrame" and show it in camera preview

hi berak, I tried to do in mine onCameraFrame() somthing like this:

mRgba = inputFrame.gray();
 Core.transpose(mRgba, mRgbaT);
 Imgproc.resize(mRgbaT, mRgbaF, mRgbaF.size(), 0,0, 0);
 Core.flip(mRgbaF, mRgba, 1 );

return mRgba;

and the preview dosent on gray and show wide (not good resulation)

thenk.

2016-06-07 03:30:02 -0600 received badge  Supporter (source)
2016-04-06 06:45:06 -0600 commented question not able to create a simple Mat object for android

thank you so mutch!

so where do i have to put it if i dont have a camera in the app, i just want to show an image from drawable?

2016-04-06 06:29:27 -0600 commented question not able to create a simple Mat object for android

thank you!

can you tell me where I can put it?

2016-04-06 06:05:37 -0600 commented question not able to create a simple Mat object for android

the log output: Session 'app': Error I call it from : onCreate() thank you

2016-04-06 04:14:04 -0600 asked a question not able to create a simple Mat object for android

i did this: Mat m = new Mat(); and tha app stops running