programming tutorial thierry lepley april 4 th 2016
play

PROGRAMMING TUTORIAL Thierry Lepley, April 4 th 2016 TUTORIAL GOAL - PowerPoint PPT Presentation

April 4-7, 2016 | Silicon Valley PROGRAMMING TUTORIAL Thierry Lepley, April 4 th 2016 TUTORIAL GOAL Intermediate Tutorial for Developers Understand philosophy of the API Understand main features of the API Start developing with VisionWorks


  1. April 4-7, 2016 | Silicon Valley PROGRAMMING TUTORIAL Thierry Lepley, April 4 th 2016

  2. TUTORIAL GOAL Intermediate Tutorial for Developers Understand philosophy of the API Understand main features of the API Start developing with VisionWorks Extra Credit Come and ask more questions at the VisionWorks hangout (H6115) 2 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  3. INTRODUCTION 3

  4. VISIONWORKS API What It Gives Access To ? Core data objects: images, arrays, pyramids, etc. color convert Execution Framework : graphs, nodes, delays, etc. Gaussian pyramid Computer Vision primitives pyr -1 pyr 0 pts -1 pts 0 Image filtering functions Image arithmetic and analysis pyrLK optical flow Geometric transformations Feature extraction and tracking Depth and Flow User extensibility : user kernels CUDA Interop 4 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  5. VISIONWORKS SOFTWARE STACK Computer Vision Application Extended OpenVX TM API VisionWorks Framework and Primitive Extensions Low level Cuda Interop NVXCU API OpenVX Framework and Primitives (alpha) User CUDA Acceleration Framework Khronos NVIDIA Tegra K1/X1, Kepler/Maxwell GPU 5 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  6. Overview Open consortium creating royalty-free, open standard Main OpenVX goals 1. Define a subset of relevant primitives and image/data format 2. Enable acceleration on modern heterogeneous architectures 3. Provide portability and target performance portability across systems 6 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  7. Timeline Nov 2015 Jan 2015 First public First conformant implementation implementation October Early 2012 June 2015 2014 OpenVX OpenVX 1.0.1 Working group OpenVX 1.0 released formed released 7 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  8. Programming Basics AGENDA Efficient IO Graph and Delay 8

  9. Programming Basics General Philosophy AGENDA Primitives Data Objects Code Example 9

  10. Programming Basics General Philosophy AGENDA Primitives Data Objects Code Example 10

  11. VISIONWORKS : C API Java Application Can interop with any language C++ application C application Application Implementation of the API C API C implementation No portability issue across compilers C++ Implementation 11 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  12. CONTEXT An OpenVX World Need to be created first vx_context context = vxCreateContext(); Objects are created in a context vx_image img = vxCreateImage(context , 640, 480, VX_DF_IMAGE_RGB); 12 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  13. OBJECTS Reference Counted Application VisionWorks World World (context) vx_image img = vxCreateImage(context, ...); vx_graph graph = vxCreateGraph(context); vxBox3x3Node(graph, img, out); vx_image img (reference) vxReleaseImage(&img); Image object (reference) The Application gets object references vx_graph graph Object not destroyed until ref_count == 0 Graph (reference) Object Safe Memory Management 13 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  14. OBJECT REFERENCES vx_reference One reference type per object type : vx_image , vx_array , etc. vx_array array = vxCreateArray(context, ...); vx_image img = vxCreateImage(array , ...); // Compile time error Some functions work on any object reference : down-cast to vx_reference vx_status status = vxGetStatus((vx_reference)array); vxSetParameterByIndex(node, 0, (vx_reference)input_image); 14 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  15. ERROR MANAGEMENT Status Code Most of API calls : a vx_status code returned if (vxuColorConvert(context, input, output) != VX_SUCCESS) { /* Error */ } Object creation : use vxGetStatus to check the object vx_image img = vxCreateImage (context, 640, 480, VX_DF_IMAGE_RGB); if (vxGetStatus((vx_reference)img) != VX_SUCCESS) { /* Error */ } 15 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  16. ERROR MANAGEMENT Textual Information : Log Callback Registered in a context Called each time an error occurs void logCallback(vx_context c, vx_reference r, vx_status s, const vx_char string[] m) { /* Do something */ } vxRegisterLogCallback(context, logCallback, vx_false_e); 16 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  17. THREAD SAFETY Functions: Same API function can be concurrently called from multiple thread Objects: A context and its objects can be shared across threads ! The application must ensure there is no ‘data race’ (e.g. with synchro) T2 T1 Context Read Read image Image Image Write Write Image Image 17 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  18. ANY QUESTION SO FAR ? 18

  19. Programming Basics General Philosophy AGENDA Primitives Data Objects Code Example 19

  20. COMPUTER VISION PRIMITIVES IMAGE ARITHMETIC Stereo Block Matching Median 3x3 Absolute Difference IME Create Motion Field Scharr 3x3 Sobel 3x3 Accumulate Image IME Refine Motion Field Accumulate Squared IME Partition Motion Field FEATURES Accumulate Weighted GEOMETRIC Add / Subtract/ Multiply + Canny Edge Detector TRANSFORMS Channel Combine Fast Corners + Warp Affine + Channel Extract Fast Track Warp Perspective + Color Convert + Harris Corners + Flip Image CopyImage Harris Track Remap Convert Depth Hough Circles Scale Image + Magnitude Hough Lines Not / Or / And / Xor FILTERS ANALYSIS Phase BoxFilter Histogram Table Lookup Convolution Histogram Equalization Threshold Dilation Filter Integral Image FLOW & DEPTH Erosion Filter Mean Std Deviation Median Flow Gaussian Filter Min Max Locations Optical Flow (LK) + Gaussian Pyramid Semi-Global Matching + Standard with NVIDIA Extensions Laplacian 3x3 NVIDIA Proprietary 20 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  21. PRIMITIVES EXECUTION 2 options Immediate mode Primitive Graph mode 21 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  22. PRIMITIVES EXECUTION Immediate Mode Blocking calls similar to OpenCV usage model Prefixed with ‘ vxu ’ // 3x3 box filter vxuBox3x3(context, src0, tmp); // Absolute Difference of two images vxuAbsDiff(context, tmp, src, dest); Useful for fast prototyping 22 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  23. PRIMITIVES EXECUTION Graph Mode Workload given ahead-of-time More optimization opportunities Good fit with video stream processing vx_graph graph = vxCreateGraph(context); // Create nodes and check the graph ahead of time (errors detected here) vxBox3x3Node(graph, src0, tmp); vxAbsDiffNode(graph, tmp, src1, dest); vxVerifyGraph(graph); // Execute the graph at runtime vxProcessGraph(graph); 23 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  24. BORDER MANAGEMENT Supported Modes ? ? ? n n n A A B ? n A B A A B ? n C C C Replicate Constant (n) 3x3 box filter ? ? ? ? Undefined ? (default) 24 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  25. BORDER MODES API Enum : VX_BORDER_MODE_[UNDEFINED | CONSTANT | REPLICATE] Immediate execution: context attribute (state) vx_border_mode_t mode = { VX_BORDER_MODE_CONSTANT, 0}; vxSetContextAttribute(context, VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER_MODE, &mode, sizeof(mode)); vxuBox3x3(context, src, dest); Graph : node attribute vx_border_mode_t mode = { VX_BORDER_MODE_CONSTANT, 0}; vx_node node = vxBox3x3Node(graph, src, tmp); vxSetNodeAttribute(node, VX_NODE_ATTRIBUTE_BORDER_MODE, &mode, sizeof(mode)); 25 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  26. TARGET COMPUTE DEVICE Functionality GPU device ID Most primitives have both CPU and GPU implementations controllable Context GPU 2 GPU GPU 1 Target controllable with the API Primitive Default: automatic assignment Execution CPU 26 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  27. TARGET COMPUTE DEVICE API Options: NVX_DEVICE_GPU , NVX_DEVICE_CPU , NVX_DEVICE_ANY Immediate execution: context attribute (state) nvx_device_type_e target = NVX_DEVICE_GPU; vxSetContextAttribute(context, VX_CONTEXT_ATTRIBUTE_IMMEDIATE_TARGET_DEVICE, &target, sizeof(target)); vxuBox3x3(context, src, dest); Graph : node setter function vx_node node = vxBox3x3Node(graph, src, tmp); nvxSetNodeTargetDevice(node, NVX_DEVICE_GPU); 27 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

  28. ANY QUESTION SO FAR ? 28

  29. Programming Basics General Philosophy Primitives AGENDA Data Objects a) Data Object philosophy b) Focus: Images c) Focus: Pyramids Focus: Arrays d) Code Example 29

  30. DATA OBJECTS Images Matrices Image: vx_image + Matrix: vx_matrix + Image Pyramid : vx_pyramid + Convolution : vx_convolution + Arrays Remap : vx_remap + Array : vx_array + Scalars Distribution : vx_distribution + Scalar : vx_scalar + Look-up-table : vx_lut + Threshold : vx_threshold + Object + Standard OpenVX with NVIDIA Extensions (ex: access from CUDA) 30

  31. DATA OBJECT ACCESS Semi-opaque Objects No permanent pointer to data content Application VisionWorks World World (context) vxAccessImagePatch(img, &rect, 0, &addr, &ptr, vx_uint8 *ptr VX_READ_AND_WRITE); // Access data at address ‘ ptr ’ vx_image img vxCommitImagePatch(img, &rect, 0, &addr, ptr); Pixels (reference) // ‘ ptr ’ is now invalid vxBox3x3(img, out_img); VisionWorks optimizes the memory management Synchronize data with application only when needed Minimize data synchronization between CPU and GPU 31 NVIDIA CONFIDENTIAL. DO NOT DISTRIBUTE.

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend