Home
last modified time | relevance | path

Searched refs:rgbz (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
H A DDepthOfFieldOptions.java9 public final RGBZ rgbz; field in DepthOfFieldOptions
23 public DepthOfFieldOptions(RGBZ rgbz) { in DepthOfFieldOptions() argument
24 this.focalDepth = (float)rgbz.getFocusDepth(); in DepthOfFieldOptions()
25 this.depthOfField = (float)rgbz.getDepthOfField(); in DepthOfFieldOptions()
26 this.blurInfinity = (float)rgbz.getBlurInfinity(); in DepthOfFieldOptions()
27 this.rgbz = rgbz; in DepthOfFieldOptions()
31 this.focalDepth = rgbz.getDepth((int)(x * rgbz.getWidth()), (int)(y * rgbz.getHeight())); in setFocusPoint()
H A DMainActivity.java73 RGBZ rgbz; in onCreate() local
105 rgbz = new RGBZ(getResourceRef(R.drawable.flower), in onCreate()
108 options = new DepthOfFieldOptions(rgbz); in onCreate()
121 rgbz = RGBZ.createFromPFMDepthmap(getResourceRef(R.drawable.balls), in onCreate()
124 options = new DepthOfFieldOptions(rgbz); in onCreate()
132 rgbz = RGBZ.createFromPFMDepthmap(getResourceRef(R.drawable.sculpture), in onCreate()
135 options = new DepthOfFieldOptions(rgbz); in onCreate()
H A DRenderScriptTask.java122 options.rgbz.getDepthTransform(), options.focalDepth, in prepareRefocusFilter()
125 rgbdImage = options.rgbz.getBitmap(); in prepareRefocusFilter()