To begin with, confirm that the user has given the permission:
if (ContextCompat.checkSelfPermission(context, Manifest.permission.CAMERA)
== PackageManager.PERMISSION_DENIED)
Then, you might employ this to ask the user to:
ActivityCompat.requestPermissions(activity, new String[] {Manifest.permission.CAMERA}, requestCode);
Additionally, it will pop up in a dialogue in Marshmallow.