-3

I am trying to build a module with two functions using opencv c++ in visual studio. I need to create a dll out of the program and use the dll in labview for processing a segment. Can anyone provide with an example code on how to create a dll using c++ program.

Sai krishna
  • 168
  • 9

1 Answers1

0

Using

extern "C" {

_declspec (dllexport) void function_name(parameters)

} This helps anyone to create a dll and import in labview.

Sai krishna
  • 168
  • 9