DriveWorks SDK Reference

| 0.6.67 Release

/builds/driveav/dw/sdk/samples/isp/README.md
Go to the documentation of this file.
1 # Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved.
2 
3 @page dwx_isp_sample Software ISP Sample
4 
5 The software Image Signal Processor (ISP) sample demonstrates how to use the GPU image processing available in
6 NVIDIA<sup>&reg;</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.
8 
9 ![Software ISP Sample](sample_raw_pipeline.png)
10 
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.
13 
14  ./sample_isp
15 
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:
20 
21  ./sample_isp --interpolationDemosaic=1
22 
23 It is possible to demosaic only a certain region of interest via the
24 `--enableCrop=0` and `--cropLeft`, `--cropTop`, `--cropWidth`, `--cropHeight`
25 options:
26 
27  ./sample_isp --enableCrop=1
28 
29 For the full list of options, run the sample with the `--help` argument.