HomeSort by relevance Sort by last modified time
    Searched refs:dstArea (Results 1 - 18 of 18) sorted by null

  /external/dng_sdk/source/
dng_filter_task.h 75 /// \param dstArea Area to for which pixels will be computed.
80 virtual dng_rect SrcArea (const dng_rect &dstArea)
82 return dstArea;
dng_image.cpp 270 const dng_rect &dstArea) const
280 dstArea);
296 dstArea);
298 // Find new source area at top-left of dstArea.
300 dng_rect newArea = srcArea + (dstArea.TL () -
313 splitH) & dstArea);
321 dstArea.TL () +
337 newArea.r) & dstArea);
345 dstArea.TL () +
361 splitH) & dstArea);
    [all...]
dng_bad_pixels.h 61 virtual dng_rect SrcArea (const dng_rect &dstArea,
76 const dng_rect &dstArea,
265 virtual dng_rect SrcArea (const dng_rect &dstArea,
280 const dng_rect &dstArea,
dng_opcodes.h 305 /// \param dstArea The destination pixel area to be computed.
306 /// \param imageBounds The overall image area (dstArea will lie within these
308 /// \retval The source pixel area needed to process the specified dstArea.
310 virtual dng_rect SrcArea (const dng_rect &dstArea,
313 return dstArea;
383 /// \param dstArea Destination pixel processing area.
385 /// \param imageBounds Total image area to be processed; dstArea will
392 const dng_rect &dstArea,
486 /// \param dstArea Destination pixel processing area.
488 /// \param imageBounds Total image area to be processed; dstArea wil
    [all...]
dng_misc_opcodes.h 188 const dng_rect &dstArea,
248 const dng_rect &dstArea,
289 const dng_rect &dstArea,
330 const dng_rect &dstArea,
369 const dng_rect &dstArea,
408 const dng_rect &dstArea,
dng_lens_correction.cpp 986 virtual dng_rect SrcArea (const dng_rect &dstArea);
1115 dng_rect dng_filter_warp::SrcArea (const dng_rect &dstArea)
1118 // Walk each pixel of the boundary of dstArea, map it to the uncorrected src
1131 for (int32 c = dstArea.l; c < dstArea.r; c++)
1138 const dng_point_real64 dst (dstArea.t, c);
1152 const dng_point_real64 dst (dstArea.b - 1, c);
1166 for (int32 r = dstArea.t; r < dstArea.b; r++)
1173 const dng_point_real64 dst (r, dstArea.l)
    [all...]
dng_resample.cpp 514 virtual dng_rect SrcArea (const dng_rect &dstArea);
590 dng_rect dng_resample_task::SrcArea (const dng_rect &dstArea)
601 srcArea.t = SafeInt32Add (fRowCoords.Pixel (dstArea.t), offsetV);
602 srcArea.l = SafeInt32Add (fColCoords.Pixel (dstArea.l), offsetH);
605 fRowCoords.Pixel (SafeInt32Sub (dstArea.b, 1)),
609 fColCoords.Pixel (SafeInt32Sub (dstArea.r, 1)),
701 dng_rect dstArea = dstBuffer.fArea;
704 uint32 dstCols = dstArea.W ();
715 const int32 *colCoords = fColCoords.Coords (dstArea.l);
726 for (int32 dstRow = dstArea.t; dstRow < dstArea.b; dstRow++
    [all...]
dng_pixel_buffer.cpp 1244 const dng_rect &dstArea)
1253 if (srcArea.t >= dstArea.t)
1255 phaseV = (repeatV - ((srcArea.t - dstArea.t) % repeatV)) % repeatV;
1259 phaseV = (dstArea.t - srcArea.t) % repeatV;
1262 if (srcArea.l >= dstArea.l)
1264 phaseH = (repeatH - ((srcArea.l - dstArea.l) % repeatH)) % repeatH;
1268 phaseH = (dstArea.l - srcArea.l) % repeatH;
1278 const dng_rect &dstArea)
1284 dstArea);
1290 void *dPtr = DirtyPixel (dstArea.t
    [all...]
dng_image.h 405 const dng_rect &dstArea) const;
422 const dng_rect &dstArea) const;
dng_bad_pixels.cpp 104 dng_rect dng_opcode_FixBadPixelsConstant::SrcArea (const dng_rect &dstArea,
108 dng_rect srcArea = dstArea;
157 const dng_rect &dstArea,
162 dstArea,
168 for (int32 dstRow = dstArea.t; dstRow < dstArea.b; dstRow++)
171 const uint16 *sPtr = srcBuffer.ConstPixel_uint16 (dstRow, dstArea.l, 0);
172 uint16 *dPtr = dstBuffer.DirtyPixel_uint16 (dstRow, dstArea.l, 0);
174 for (int32 dstCol = dstArea.l; dstCol < dstArea.r; dstCol++
    [all...]
dng_gain_map.h 202 const dng_rect &dstArea,
dng_misc_opcodes.cpp 402 const dng_rect &dstArea,
406 dng_rect overlap = fAreaSpec.Overlap (dstArea);
621 const dng_rect &dstArea,
625 dng_rect overlap = fAreaSpec.Overlap (dstArea);
983 const dng_rect &dstArea,
987 dng_rect overlap = fAreaSpec.Overlap (dstArea);
1189 const dng_rect &dstArea,
1193 dng_rect overlap = fAreaSpec.Overlap (dstArea);
1369 const dng_rect &dstArea,
1373 dng_rect overlap = fAreaSpec.Overlap (dstArea);
    [all...]
dng_mosaic_info.cpp 1126 virtual dng_rect SrcArea (const dng_rect &dstArea);
1202 dng_rect dng_fast_interpolator::SrcArea (const dng_rect &dstArea)
1205 return dng_rect (dstArea.t * fDownScale.v,
1206 dstArea.l * fDownScale.h,
1207 dstArea.b * fDownScale.v,
1208 dstArea.r * fDownScale.h);
1220 dng_rect dstArea = dstBuffer.fArea;
1249 for (int32 dstRow = dstArea.t; dstRow < dstArea.b; dstRow++)
1257 dstArea.l
    [all...]
dng_opcodes.cpp 276 virtual dng_rect SrcArea (const dng_rect &dstArea)
279 return fOpcode.SrcArea (dstArea,
dng_pixel_buffer.h 646 /// Phase is based on a 0,0 origin and the notion of repeating srcArea across dstArea.
647 /// It is the number of pixels into srcArea to start repeating from when tiling dstArea.
651 const dng_rect &dstArea);
653 /// Repeat the image data in srcArea across dstArea.
656 /// \param dstArea Area to fill with data from srcArea.
659 const dng_rect &dstArea);
dng_gain_map.cpp 546 const dng_rect &dstArea,
550 dng_rect overlap = fAreaSpec.Overlap (dstArea);
dng_lens_correction.h 626 const dng_rect &dstArea,
dng_render.cpp 749 virtual dng_rect SrcArea (const dng_rect &dstArea);
807 dng_rect dng_render_task::SrcArea (const dng_rect &dstArea)
810 return dstArea + fSrcOffset;
995 dng_rect dstArea = dstBuffer.fArea;
    [all...]

Completed in 310 milliseconds