-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CameraSourcePreview doesn't fill whole screen height #23
Comments
CameraSourcePreview is included in the example code. This was meant as more of a "Hello World" sample rather than a formal part of the API. It has to account for getting the aspect ratio of the view to match the aspect ratio of the preview images from the camera, as well as accounting for the camera rotation. So it actually overrides the size of the view to end up with something reasonable. See here: Feel free to copy/modify this class and change it to best meet your needs. |
Thats what I thought. The only problem I'm facing right now is that I don't know how to get the width of the screen because my layout uses layout_weight and I don't know how to get 60 % of the width. Otherwise it would be simple I guess, just retrieve the width/height or set them. Any idea or guideline how to do this? |
I'm facing the same issue, some extra padding on landscape and portrait mode. |
Hi,
|
Thank you Abhirav, |
I removed the lines to but still padding on the bottom in landscape mode. Is this some problem with layout weight? |
This is my code, no padding in portrait and fill right in landscape. I use layoutHeight instead of childHeight in for (int i = 0; i < getChildCount(); ++i){...}
|
@abhirav Thanks, this works. I had the same problem, unnecessary white space on the right in portrait mode. Another thing which worked for me was removing BOTH what abhirav suggested and removing these lines:
On the device I tested, this had no effect on how the preview actually looked, but using layoutHeight is the actual device height, whereas childHeight is computed and (in my case) bigger than device's height. But as I said, no effect on how it actually looked. |
Code suggested by mmagician and abhirav works perfectly. But, the camera preview is not in the correct ratio in portrait mode. the height is getting stretched. Could you help me out in this regard ? |
-> Added Icons to Nav Drawer -> Changed camera source Resolution, thanks to googlesamples/android-vision#23 -> added flat icons for navigation -> Added PolyLines for joining point on the map -> Removed some duplicated classes
@Kalen66100 |
Thank you @Kalen66100 , it worked for me too. |
@Kalen66100 Thanks you. It worked for me |
Thank you @Kalen66100 and @abhirav . You save my code! |
The following works, while also preserving the aspect ratio. This will slightly oversize the camera display, requiring cropping along one dimension. Change CameraSourcePreview.onLayout to:
|
Hi all, this is my solution and It worked on SS Note 3, Moto G. I hope it is useful for you
in CameraSourcePreview.java - replace childWidth, childHeight by width, height
|
Hi! I use the solution "nam2210" and when I run on the Nexus 7 (2013) I don't get full screen. How can I get full screen, please? |
Have you tried the solution that I posted above on March 30? |
A preview is displayed in the center? It is not attached to the top left corner? |
@pm0733464 Can you confirm that using @Nam2210 solution will result in less efficient detection when running on a device having a poor display (low density) but a high res camera? |
For the face API, using a higher resolution is usually slower than using a lower resolution... slower but sometimes a little more accurate. It's a speed / accuracy trade-off. Looks like @Nam2210's solution matches the camera preview resolution to the display resolution. Assuming that the display resolution isn't very low (e.g., less than 320x240), it probably isn't less efficient in the low density / high res camera scenario. That is, using the display resolution would probably result in a faster detection than using the higher res camera resolution. But it's a bit of a different story for the barcode API, since the barcode API tends to require higher resolutions for greater accuracy. In that case, you might want to go with a higher resolution than the display resolution if the display resolution is too low. |
@pm0733464 sorry I forgot to specify my comment was for barcode detection indeed :) |
@pm0733464 tell me please
A preview is displayed in the center? It is not attached to the top left corner? |
@UserSty having the preview centered on the display then cropped a little on the borders make more sense than having it "pinned" on the top left corner then loosing a bigger part on the right|bottom borders of the preview. |
@ggirard07 Thanks |
Thank You @abhirav . This really helped me. 👍 |
The solution "@pm0733464" does not work correctly on some devices. The same code snippet is used in the "googly-eyes" example. And there is also a problem. I checked the code work on some devices. On the "HTC One M8 (Android 6)" and "Motorola Moto G (2nd Gen.) (Android 5)" preview centered, and then the image is displayed correctly on the screen using "centerCrop". How do I know when the preview is centered, and when not? Help solve this problem or tell me how to get around it, thank you. |
@UserSty Hi, could you try the modified barcode I above Modified Barcode Scanner Code and tell me how it goes, from there I might be able to help you. |
@wax911 I tried your code "Modified Barcode Scanner Code" He works too, is not quite correct. I checked the code work on some devices. On the device, "the Nexus 7 (Android 6)" preview is not displayed on the full screen, and is attached to the upper left corner. This is bad unfortunately. On the "HTC One M8 (Android 6)" preview is not clear which is tied as the picture is displayed as screen size and still look good. What I've noticed that if I try to put a different size of previews, it is ignored and displayed differently. This solution does not work as expected. Any help please. |
@UserSty damn, that's a shame then, the reason why it's ignoring your preview sizes is because I automatically get the screen resolution and best camera res paired together from the camera source code. Can you try playing around with:
At some point as I was playing around with this I realized you don't always the preview size requested so I had to forcefully return the first item in the list of validPreviewSizes, I you find this function which I explained a few comments back you can debug the solution as run the code and see what preview sizes are available. If you need any help feel free to drop me an email, I would also like to try and fix this issue. Oh and BTW when I tested this on a tablet it would fill up the screen if the display was in a landscape format. |
@UserSty Not sure how you are doing your tests... But I retested @pm0733464 solution currently implemented in my app on an "Asus Nexus 7 2013 (Android 6.0.1)", and everything looks perfectly fine to me! |
@ggirard07 I think this is wrong. |
Please, prior to declare "issues" do your testing properly in order to avoid people to lose their time... Otherwise you will end with not getting anymore help, just like what is happening on your issue here. |
thanks @pm0733464 your code works perfectly on my samsung j3 👍 |
This is how I fixed it. And it works perfectly in portrait and landscape modes, full screen. @OverRide
|
This is how I fixed it .first comment this |
@abhirav Thanks Abhirav it worked for me |
Very nice, work perfectly, Thanks!! |
Hi! Can somebody share a full screen vertical only solution? |
@gehadfatah the best solution for me, thanks!! |
@OverRide
also do not forget to comment this line mCameraSource = new CameraSource.Builder(context, myFaceDetector) Here is the right answer, which is working on portrait mode, I did't check it on landscape mode, but it should work, because I am setting the layout width and height according to the screen sizes. |
Fix issue full screen Problem: googlesamples/android-vision#23 (comment) Solution: googlesamples/android-vision#23 (comment)
hi anybody know that how to capure image in this |
I'm having everything the same as in this sample except my activity layout is this:
My tablet is in landscape and I want that the cameraPreviewSource is always left and fills the whole screen in the height and then right off it I'm having a fragment that fills the rest.
This layout works except my previewsource doesn't fill the whole height (even though it shows correct in the preview). It has a black banner on it. Even my width is actually smaller than I want you can see this on the screenshot:
http://i61.tinypic.com/vctmw0.png
I played with the CameraSourcePreview with the width and height in the onLayout function but it doesn't help.
Anyone an idea how to solve this?
EDIT:
I think there is a problem in the onLayout method off the CameraSourcePreview. That it doesn't calculate it right when you use maybe layout weight or something I don't know.
The text was updated successfully, but these errors were encountered: