CoreFlow 1.0.0
A modern orchestration and execution runtime
Loading...
Searching...
No Matches
vx_ext_pop.h File Reference
#include "VX/vx.h"
#include <VX/vx_compatibility.h>
#include <opencv2/highgui.hpp>
#include <opencv2/opencv.hpp>
#include <opencv2/videoio.hpp>

Macros

#define SHARED_PUBLIC   __attribute__ ((visibility ("default")))
 
#define dimof(x)
 

Functions

vx_node vxCreateNodeByStructure (vx_graph graph, vx_enum kernelenum, vx_reference params[], vx_uint32 num)
 A method to construct a node via arbitrary parameters and an enum.
 
SHARED_PUBLIC vx_node VX_API_CALL vxExtPopNode_bubblePop (vx_graph graph, vx_image input, vx_image output)
 [Graph] Creates a OpenCV blur function node.
 
SHARED_PUBLIC vx_node VX_API_CALL vxExtPopNode_donutPop (vx_graph graph, vx_image input, vx_image output)
 [Graph] Creates a OpenCV blur function node.
 

Macro Definition Documentation

◆ dimof

#define dimof ( x)
Value:
(sizeof(x)/sizeof(x[0]))

◆ SHARED_PUBLIC

#define SHARED_PUBLIC   __attribute__ ((visibility ("default")))

Function Documentation

◆ vxExtPopNode_bubblePop()

SHARED_PUBLIC vx_node VX_API_CALL vxExtPopNode_bubblePop ( vx_graph graph,
vx_image input,
vx_image output )

[Graph] Creates a OpenCV blur function node.


VX POP - Bubble Pop VX_API_ENTRY C Function NODE

Parameters
[in]graphThe reference to the graph.
[in]inputThe input image in VX_DF_IMAGE_U8 format.
[out]outputThe output image is as same size and type of input.
Returns
vx_node.
Return values
vx_nodeA node reference. Any possible errors preventing a successful creation should be checked using vxGetStatus
Examples
bubble_pop.cpp.

◆ vxExtPopNode_donutPop()

SHARED_PUBLIC vx_node VX_API_CALL vxExtPopNode_donutPop ( vx_graph graph,
vx_image input,
vx_image output )

[Graph] Creates a OpenCV blur function node.


VX POP - Donut Pop VX_API_ENTRY C Function NODE

Parameters
[in]graphThe reference to the graph.
[in]inputThe input image in VX_DF_IMAGE_U8 format.
[out]outputThe output image is as same size and type of input.
Returns
vx_node.
Return values
vx_nodeA node reference. Any possible errors preventing a successful creation should be checked using vxGetStatus
Examples
bubble_pop.cpp.