Android Camera Get indexOfClosestZoom(Camera.Parameters parameters, double targetZoomRatio)

Here you can find the source of indexOfClosestZoom(Camera.Parameters parameters, double targetZoomRatio)

Description

index Of Closest Zoom

License

Apache License

Declaration

private static Integer indexOfClosestZoom(Camera.Parameters parameters,
            double targetZoomRatio) 

Method Source Code

//package com.java2s;
/*//w w w  .j a v  a  2s.  co m
 * Copyright (C) 2014 ZXing authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import android.hardware.Camera;

import android.util.Log;

import java.util.List;

public class Main {
    private static final String TAG = "CameraConfiguration";

    private static Integer indexOfClosestZoom(Camera.Parameters parameters,
            double targetZoomRatio) {
        List<Integer> ratios = parameters.getZoomRatios();
        Log.i(TAG, "Zoom ratios: " + ratios);
        int maxZoom = parameters.getMaxZoom();
        if (ratios == null || ratios.isEmpty()
                || ratios.size() != maxZoom + 1) {
            Log.w(TAG, "Invalid zoom ratios!");
            return null;
        }
        double target100 = 100.0 * targetZoomRatio;
        double smallestDiff = Double.POSITIVE_INFINITY;
        int closestIndex = 0;
        for (int i = 0; i < ratios.size(); i++) {
            double diff = Math.abs(ratios.get(i) - target100);
            if (diff < smallestDiff) {
                smallestDiff = diff;
                closestIndex = i;
            }
        }
        Log.i(TAG, "Chose zoom ratio of "
                + (ratios.get(closestIndex) / 100.0));
        return closestIndex;
    }
}

Related

  1. getDefaultCameraInstance()
  2. getDefaultFrontFacingCameraInstance()
  3. getNumberOfCameras()
  4. getDefaultBackFacingCameraInstance()
  5. getCameraRotation(final Context context)
  6. getLowestResolution(Camera.Parameters cp)
  7. launchCamera(Activity activity)