11-08-2023 12:34 PM
Hi there!
I am working on an OpenCV wrapper for LabVIEW and I need the files that are provided by the NIVision OpenCV Utilities package in vipm. Unfortunately, I cannot download them myself as I can't download LabVIEW 2016. Would anyone mind downloading the files and share them with me?
Kind regards
Solved! Go to Solution.
11-08-2023 08:46 PM
Have you tried downloading the OpenCV package and seeing if it can be used with whatever version of LabVIEW (which you fail to mention) you are using? It appears that this package was released in 2016 and might not have been subsequently updated (it mentions running on Vista, Windows 7, and Windows 8, but no mention of Windows 10, for example).
Bob Schor
11-09-2023 03:19 AM
Hi Bob,
I am aware that it does not work for every LabVIEW version. However, the package contains a folder with some c++ development files, which contain some useful information that I could use for developing my own wrapper.
Kind Regards
11-09-2023 03:53 AM
@THILEN wrote:
Hi there!
I am working on an OpenCV wrapper for LabVIEW and I need the files that are provided by the NIVision OpenCV Utilities package in vipm. Unfortunately, I cannot download them myself as I can't download LabVIEW 2016. Would anyone mind downloading the files and share them with me?
So you have some LabVIEW version installed. And VIPM too. What is your problem then?
You still should see the "NIVision OpenCV Utilities" package version 1.0.0.47 in VIPM if your version of LabVIEW is not older than 2012, because that is the oldest version this package supports.
Otherwise you can also download it from
You will likely also need this package which is a dependency:
11-09-2023 08:30 AM - edited 11-09-2023 08:37 AM
@rolfk wrote:
@THILEN wrote:
Hi there!
I am working on an OpenCV wrapper for LabVIEW and I need the files that are provided by the NIVision OpenCV Utilities package in vipm. Unfortunately, I cannot download them myself as I can't download LabVIEW 2016. Would anyone mind downloading the files and share them with me?
So you have some LabVIEW version installed. And VIPM too. What is your problem then?
You still should see the "NIVision OpenCV Utilities" package version 1.0.0.47 in VIPM if your version of LabVIEW is not older than 2012, because that is the oldest version this package supports.
Otherwise you can also download it from
You will likely also need this package which is a dependency:
Hi Rolf,
I have tried downloading the packages and installing them through VIPM. However, I get a message that this package is not compatible with my operating system. Which is weird since I have installed this package on a windows 10 OS before. Therefore I thought it might have something to do with the LabVIEW version. However, after managing to download a LabVIEW 2016 version the warning message is still displayed.
Kind regards,
Thijs
Student, TU/e
11-09-2023 08:44 AM - edited 11-09-2023 08:46 AM
Well, it only lists Windows 7, 8 and Vista as compatible OS. The package should probably better have been configured to be compatible for >= Windows 7. But NI might have thought that it is not clear if it will install on later OS versions than what they tested it on.
Since you only want to look at the C headers inside the package you don't really have to install the whole package. You can also use an archive viewer like 7-ZIP and open the VI package with that. A VIPM package is simply a ZIP file with a certain internal structure that VIPM (initially OGPM) can handle.
11-09-2023 08:59 AM
@rolfk wrote:
Well, it only lists Windows 7, 8 and Vista as compatible OS. The package should probably better have been configured to be compatible for >= Windows 7. But NI might have thought that it is not clear if it will install on later OS versions than what they tested it on.
Since you only want to look at the C headers inside the package you don't really have to install the whole package. You can also use an archive viewer like 7-ZIP and open the VI package with that. A VIPM package is simply a ZIP file with a certain internal structure that VIPM (initially OGPM) can handle.
Thanks Rolf I did not know that.
06-13-2024 12:45 AM
I am using windows 11 OS and Labview version 2024 but NI Vision Open CV utility is not supporting.
It gives error message while installing through VIPM.
06-13-2024 02:23 AM
ashish@vertexgroups.in wrote:
I am using windows 11 OS and Labview version 2024 but NI Vision Open CV utility is not supporting.
It gives error message while installing through VIPM.
As stated above by Rolf, the VIPM package is simply a ZIP file, so you can unzip it, then accurately copy everything to the LabVIEW folders (it is quite easy to understand where), then it should work (don't forget about one more package bundled inside).
On the other hand, it is not very complicated to develop own wrapper for OpenCV, for example, in this comment OpenCV Remap function was used to correct distortion on the image.