Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by elpuerco63 · Dec 12, 2014 at 09:00 PM · c#androidcamera

Detect Android Rear Camera

Is there a way to detect that an Android device has a rear camera? I'm struggling to find out how this is possible in C#

My app needs to know if there is a rear camera and act accordingly. The presence of a front camera is irrelevant but I do need to know if a rear camera is available

Thanks

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

2 Replies

· Add your reply
  • Sort: 
avatar image
3
Best Answer

Answer by ahmedbenlakhdhar · Dec 12, 2014 at 09:10 PM

Try this:

 WebCamDevice[] devices = WebCamTexture.devices;
 WebCamDevice rearCamera;
 foreach (WebCamDevice cam in devices){
     if(!cam.isFrontFacing){
         rearCamera = cam;
         break;
     }
 }
 bool hasARearCamera = (rearCamera != null);
Comment
Add comment · Show 2 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image elpuerco63 · Dec 12, 2014 at 10:36 PM 0
Share

This looks better thanks, I'm just trying to get Android Studio to load the app on my device and Ill post back the results thnaks

avatar image elpuerco63 · Dec 13, 2014 at 10:00 AM 0
Share

works like a charm thanks for your help ;-)

avatar image
0

Answer by elpuerco63 · Dec 12, 2014 at 09:17 PM

Hi, thanks for such a speedy response!

I'm a bit confused with this code as I understand it to be seeing if there is a front camera and if there is one sets a variable to access it?

Is that correct? This is not actually what I am trying to achieve.

I need to know if the device has a rear camera not the front. My app needs a rear camera to be present and cannot make use of the front camera

Thanks

Comment
Add comment · Show 3 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image elpuerco63 · Dec 12, 2014 at 09:34 PM 0
Share

but maybe a modification of your code like so...might do it...

 WebCamDevice[] devices = WebCamTexture.devices;
 
                         bool hasRearCamera = false;
 
                                 foreach (WebCamDevice cam in devices){
 
                                     if(!cam.isFrontFacing){
                                     
                                         hasRearCamera = true;
 
                                         break;
                                     }
                                 }
                             
avatar image ahmedbenlakhdhar · Dec 12, 2014 at 09:54 PM 0
Share

Sorry, I edited the answer. I hope it is correct now.

avatar image screenname_taken · Dec 12, 2014 at 10:30 PM 0
Share

no it says !cam.isFrontFacing. That "!" means not. So it says if the camera is not the front, then it's the back and saves it.

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

26 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

OpenCV and Android with Unity3D 1 Answer

WebCamTexture.width and height returning [16,16] unless reinitialized 0 Answers

Casting shadow on to transparant quad (AR Foundation),Casting a Shadow on a transparant plane/quad in AR (AR Foundation) 0 Answers

Lighting differencies between desktop and android. 1 Answer

Rotating camera problem C# Android 2 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges