1 # Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved.
3 @page dwx_isp_sample Software ISP Sample
5 The software Image Signal Processor (ISP) sample demonstrates how to use the GPU image processing available in
6 NVIDIA<sup>®</sup> DriveWorks to convert from a RAW camera frame to a common DriveWorks image
7 type, e.g., RCB. It uses the @ref soft_ISP API.
9 
11 The sample reads frames from a RAW camera recording, processes the frames to
12 convert them to RCB format, and displays the result on screen.
16 The RAW pipeline provides options to select the demosaicing method. The default
17 is to use the `DW_DEMOSAIC_DOWNSAMPLE` method. This method is fast but reduces
18 the resolution of the frame. To produce full resolution output, change the
19 demosaicing method to `DW_DEMOSAIC_INTERPOLATION` via:
21 ./sample_isp --interpolationDemosaic=1
23 It is possible to demosaic only a certain region of interest via the
24 `--enableCrop=0` and `--cropLeft`, `--cropTop`, `--cropWidth`, `--cropHeight`
27 ./sample_isp --enableCrop=1
29 For the full list of options, run the sample with the `--help` argument.