Skip to content

Commit f6cce83

Browse files
committed
Renamed OpenCV node titles.
1 parent 94f9f5a commit f6cce83

25 files changed

+86
-94
lines changed

source/blender/nodes/composite/nodes/OpenCV/CMP_CvAdd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ static void node_composit_exec_cvAdd(void *data, bNode *node, bNodeStack **in, b
100100
void register_node_type_cmp_cvadd(ListBase *lb) {
101101
static bNodeType ntype;
102102

103-
node_type_base(&ntype, CMP_NODE_CVADDS, "OpenCV - Add", NODE_CLASS_OCV_ARRAY, NODE_OPTIONS);
103+
node_type_base(&ntype, CMP_NODE_CVADDS, "Add", NODE_CLASS_OCV_ARRAY, NODE_OPTIONS);
104104
node_type_socket_templates(&ntype, cmp_node_cvAdd_in, cmp_node_cvAdd_out);
105105

106106
node_type_size(&ntype, 150, 80, 250);

source/blender/nodes/composite/nodes/OpenCV/CMP_CvAnd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ void register_node_type_cmp_cvand(ListBase *lb)
108108
{
109109
static bNodeType ntype;
110110

111-
node_type_base(&ntype, CMP_NODE_CVAND, "OpenCV - And", NODE_CLASS_OCV_ARRAY, NODE_OPTIONS);
111+
node_type_base(&ntype, CMP_NODE_CVAND, "And", NODE_CLASS_OCV_ARRAY, NODE_OPTIONS);
112112
node_type_socket_templates(&ntype,cmp_node_cvAnd_in, cmp_node_cvAnd_out);
113113
node_type_size(&ntype, 150, 80, 250);
114114
node_type_exec(&ntype, node_composit_exec_cvAnd);

source/blender/nodes/composite/nodes/OpenCV/CMP_CvCanny.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ void register_node_type_cmp_cvcanny(ListBase *lb)
115115
{
116116
static bNodeType ntype;
117117

118-
node_type_base(&ntype, CMP_NODE_CVCANNY, "OpenCV - Canny", NODE_CLASS_OCV_IMAGEPROCESS, NODE_PREVIEW|NODE_OPTIONS);
118+
node_type_base(&ntype, CMP_NODE_CVCANNY, "Canny", NODE_CLASS_OCV_IMAGEPROCESS, NODE_PREVIEW|NODE_OPTIONS);
119119
node_type_socket_templates(&ntype,cmp_node_cvCanny_in, cmp_node_cvCanny_out);
120120
node_type_size(&ntype, 150, 80, 250);
121121
node_type_init(&ntype, node_composit_init_cvcanny);

source/blender/nodes/composite/nodes/OpenCV/CMP_CvCopy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ void register_node_type_cmp_cvcopy(ListBase *lb)
8282
{
8383
static bNodeType ntype;
8484

85-
node_type_base(&ntype, CMP_NODE_CVCOPY, "OpenCV - Copy", NODE_CLASS_OCV_ARRAY, NODE_OPTIONS);
85+
node_type_base(&ntype, CMP_NODE_CVCOPY, "Copy", NODE_CLASS_OCV_ARRAY, NODE_OPTIONS);
8686
node_type_socket_templates(&ntype,cmp_node_cvCopy_in, cmp_node_cvCopy_out);
8787
node_type_size(&ntype, 150, 80, 250);
8888
node_type_exec(&ntype, node_composit_exec_cvCopy);

source/blender/nodes/composite/nodes/OpenCV/CMP_CvCvtColor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ void register_node_type_cmp_cvcvtcolor(ListBase *lb)
114114
{
115115
static bNodeType ntype;
116116

117-
node_type_base(&ntype, CMP_NODE_CVCVTCOLOR, "OpenCV - Convert color", NODE_CLASS_OCV_IMAGEPROCESS, NODE_PREVIEW|NODE_OPTIONS);
117+
node_type_base(&ntype, CMP_NODE_CVCVTCOLOR, "Convert color", NODE_CLASS_OCV_IMAGEPROCESS, NODE_PREVIEW|NODE_OPTIONS);
118118
node_type_socket_templates(&ntype,cmp_node_cvCvtColor_in, cmp_node_cvCvtColor_out);
119119
node_type_size(&ntype, 150, 80, 250);
120120
node_type_init(&ntype, node_composit_init_cvCvtColor);

source/blender/nodes/composite/nodes/OpenCV/CMP_CvDilate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ static void node_composit_exec_cvDilate(void *data, bNode *node, bNodeStack **in
8585
void register_node_type_cmp_cvdilate(ListBase *lb) {
8686
static bNodeType ntype;
8787

88-
node_type_base(&ntype, CMP_NODE_CVDILATE, "OpenCV - Dilate", NODE_CLASS_OCV_IMAGEPROCESS, NODE_OPTIONS);
88+
node_type_base(&ntype, CMP_NODE_CVDILATE, "Dilate", NODE_CLASS_OCV_IMAGEPROCESS, NODE_OPTIONS);
8989
node_type_socket_templates(&ntype, cmp_node_cvDilate_in, cmp_node_cvDilate_out);
9090
node_type_size(&ntype, 150, 80, 250);
9191
node_type_exec(&ntype, node_composit_exec_cvDilate);

source/blender/nodes/composite/nodes/OpenCV/CMP_CvDiv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ static void node_composit_exec_cvDiv(void *data, bNode *node, bNodeStack **in, b
8585
void register_node_type_cmp_cvdiv(ListBase *lb) {
8686
static bNodeType ntype;
8787

88-
node_type_base(&ntype, CMP_NODE_CVDIV, "OpenCV - Div", NODE_CLASS_OCV_ARRAY, NODE_OPTIONS);
88+
node_type_base(&ntype, CMP_NODE_CVDIV, "Div", NODE_CLASS_OCV_ARRAY, NODE_OPTIONS);
8989
node_type_socket_templates(&ntype, cmp_node_cvDiv_in, cmp_node_cvDiv_out);
9090
node_type_size(&ntype, 150, 80, 250);
9191
node_type_exec(&ntype, node_composit_exec_cvDiv);

source/blender/nodes/composite/nodes/OpenCV/CMP_CvDrawContour.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ void register_node_type_cmp_cvdrawcontour(ListBase *lb)
9292
{
9393
static bNodeType ntype;
9494

95-
node_type_base(&ntype, CMP_NODE_CVDRAWCONTOUR, "OpenCV - Draw Contour", NODE_CLASS_OCV_DRAW, NODE_OPTIONS);
95+
node_type_base(&ntype, CMP_NODE_CVDRAWCONTOUR, "Draw Contour", NODE_CLASS_OCV_DRAW, NODE_OPTIONS);
9696
node_type_socket_templates(&ntype,cmp_node_cvDrawContour_in, cmp_node_cvDrawContour_out);
9797
node_type_size(&ntype, 150, 80, 250);
9898
node_type_exec(&ntype, node_composit_exec_cvDrawContour);

source/blender/nodes/composite/nodes/OpenCV/CMP_CvErode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ void register_node_type_cmp_cverode(ListBase *lb)
8888
{
8989
static bNodeType ntype;
9090

91-
node_type_base(&ntype, CMP_NODE_CVERODE, "OpenCV - Erode", NODE_CLASS_OCV_IMAGEPROCESS, NODE_OPTIONS);
91+
node_type_base(&ntype, CMP_NODE_CVERODE, "Erode", NODE_CLASS_OCV_IMAGEPROCESS, NODE_OPTIONS);
9292
node_type_socket_templates(&ntype,cmp_node_cvErode_in, cmp_node_cvErode_out);
9393
node_type_size(&ntype, 150, 80, 250);
9494
node_type_exec(&ntype, node_composit_exec_cvErode);

source/blender/nodes/composite/nodes/OpenCV/CMP_CvGravityCenter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ static void node_composit_exec_cvGravityCenter(void *data, bNode *node, bNodeSta
104104
{
105105
static bNodeType ntype;
106106

107-
node_type_base(&ntype, CMP_NODE_CVGRAVITYCENTER, "OpenCV - Gravity Center", NODE_CLASS_OCV_DRAW, NODE_OPTIONS);
107+
node_type_base(&ntype, CMP_NODE_CVGRAVITYCENTER, "Gravity Center", NODE_CLASS_OCV_DRAW, NODE_OPTIONS);
108108
node_type_socket_templates(&ntype,cmp_node_cvGravityCenter_in, cmp_node_cvGravityCenter_out);
109109
node_type_size(&ntype, 150, 80, 250);
110110
node_type_exec(&ntype, node_composit_exec_cvGravityCenter);

0 commit comments

Comments
 (0)