<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: LabVIEW &amp;amp; MVTec Halcon in LabVIEW</title>
    <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2266768#M717536</link>
    <description>&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="UserName lia-user-name"&gt;&lt;A id="link_125" class="lia-link-navigation lia-page-link lia-user-name-link" style="color: #666666;" href="https://forums.ni.com/t5/user/viewprofilepage/user-id/3391" target="_self"&gt;&lt;SPAN class="login-bold"&gt;mikeporter&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There's nothing extraordinary. An user should put &lt;EM&gt;#include "HalconCpp.h"&lt;/EM&gt; and &lt;EM&gt;using namespace HalconCpp;&lt;/EM&gt; in order to use VC++ library and that's all. No object disposing is needed (as described in manual). This is done automatically. I post one of examples from Halcon's help:&lt;/P&gt;
&lt;PRE&gt;#include "HalconCpp.h"
int main()
{
using namespace HalconCpp;
HImage Mandrill("monkey"); // read image from file "monkey"
Hlong width,height;
Mandrill.GetImageSize(&amp;amp;width,&amp;amp;height);
HWindow w(0,0,width,height); // window with size equal to image
Mandrill.DispImage(w); // display image in window
w.Click(); // wait for mouse click
w.ClearWindow();
HRegion Bright = Mandrill &amp;gt;= 128; // select all bright pixels
HRegion Conn = Bright.Connection(); // get connected components
// select regions with a size of at least 500 pixels
HRegion Large = Conn.SelectShape("area","and",500,90000);
// select the eyes out of the instance variable Large by using
// the anisometry as region feature:
HRegion Eyes = Large.SelectShape("anisometry","and",1,1.7);
Eyes.DispRegion(w); // display result image in window
w.Click(); // wait for mouse click
}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;This program extracts fragment from whole image. I limited it just to reading an image and it caused memory problems described above. There are more operators for generating new images for instance &lt;EM&gt;&lt;SPAN style="font-family: 'Consolas,Inconsolata,DejaVu Sans Mono,monospace'; color: #000000;"&gt;gen_image1_extern&lt;/SPAN&gt;&lt;/EM&gt; - &lt;SPAN style="font-family: 'Arial,Helvetica,sans-serif'; color: #000000;"&gt;Create an image from a pointer on the pixels with storage management.&lt;/SPAN&gt; This operator also goes to trouble as &lt;EM&gt;&lt;SPAN style="font-family: 'Consolas,Inconsolata,DejaVu Sans Mono,monospace'; color: #000000;"&gt;read_image&lt;/SPAN&gt;&lt;/EM&gt;. I tried changing calling conventions, added image disposing, put pointer to my own clearing procedure and even used LabVIEW memory manager's function &lt;EM&gt;ClearMem&lt;/EM&gt;. The bug is still the same. If there's memory conflict, one of NI's developers could say why it happens.&lt;/P&gt;</description>
    <pubDate>Sat, 29 Dec 2012 05:22:20 GMT</pubDate>
    <dc:creator>dadreamer</dc:creator>
    <dc:date>2012-12-29T05:22:20Z</dc:date>
    <item>
      <title>LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2266176#M717417</link>
      <description>&lt;P&gt;Hi, everyone!&lt;/P&gt;
&lt;P&gt;I'm trying to connect MVTec Halcon 11.0.1 software with LabVIEW 2011 and got one &lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;annoying bug. I have created very simple DLL in Visual Studio 2005 (C++) and then inserted it in LV through Call Library Function Node.When I push Run button everything goes ok. But when I try to close current VI or whole LabVIEW, the program just freezes/hangs up and stops responding to any activity. Here are screenshots of Start menu and Tools window:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;&lt;IMG src="https://forums.ni.com/t5/image/serverpage/image-id/94742iF36F08998B09ACBD/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="Tools.jpg" title="Tools.jpg" align="middle" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;&lt;IMG src="https://forums.ni.com/t5/image/serverpage/image-id/94740i130B311DEA04B8D2/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="Start.jpg" title="Start.jpg" align="middle" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;This is VC++ code:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;#include "stdafx.h"
#include "TestDLL.h"
#include "HalconCpp.h"

using namespace HalconCpp;

__declspec(dllexport) void __stdcall ReadImg()
{
    HImage neu;
	ReadImage(&amp;amp;neu,"C:/444.png");
}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;I've tested this DLL on Delphi and everything went allright. Maybe the problem is in memory management as I know LabVIEW does inner memory operations liberating users from this task. Halcon also has COM and .NET interfaces and they both work well without any bugs but they are slightly slow. So I'm interested in DLL approach. Can anybody help me?&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Dec 2012 07:32:00 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2266176#M717417</guid>
      <dc:creator>dadreamer</dc:creator>
      <dc:date>2012-12-28T07:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2266622#M717498</link>
      <description>What you describe is a classic symptom of memory management problems. Is there example code available from the vendor demonstrating how to use their library?&lt;BR /&gt;&lt;BR /&gt;Mike...</description>
      <pubDate>Fri, 28 Dec 2012 21:03:43 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2266622#M717498</guid>
      <dc:creator>mikeporter</dc:creator>
      <dc:date>2012-12-28T21:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2266768#M717536</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="UserName lia-user-name"&gt;&lt;A id="link_125" class="lia-link-navigation lia-page-link lia-user-name-link" style="color: #666666;" href="https://forums.ni.com/t5/user/viewprofilepage/user-id/3391" target="_self"&gt;&lt;SPAN class="login-bold"&gt;mikeporter&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There's nothing extraordinary. An user should put &lt;EM&gt;#include "HalconCpp.h"&lt;/EM&gt; and &lt;EM&gt;using namespace HalconCpp;&lt;/EM&gt; in order to use VC++ library and that's all. No object disposing is needed (as described in manual). This is done automatically. I post one of examples from Halcon's help:&lt;/P&gt;
&lt;PRE&gt;#include "HalconCpp.h"
int main()
{
using namespace HalconCpp;
HImage Mandrill("monkey"); // read image from file "monkey"
Hlong width,height;
Mandrill.GetImageSize(&amp;amp;width,&amp;amp;height);
HWindow w(0,0,width,height); // window with size equal to image
Mandrill.DispImage(w); // display image in window
w.Click(); // wait for mouse click
w.ClearWindow();
HRegion Bright = Mandrill &amp;gt;= 128; // select all bright pixels
HRegion Conn = Bright.Connection(); // get connected components
// select regions with a size of at least 500 pixels
HRegion Large = Conn.SelectShape("area","and",500,90000);
// select the eyes out of the instance variable Large by using
// the anisometry as region feature:
HRegion Eyes = Large.SelectShape("anisometry","and",1,1.7);
Eyes.DispRegion(w); // display result image in window
w.Click(); // wait for mouse click
}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;This program extracts fragment from whole image. I limited it just to reading an image and it caused memory problems described above. There are more operators for generating new images for instance &lt;EM&gt;&lt;SPAN style="font-family: 'Consolas,Inconsolata,DejaVu Sans Mono,monospace'; color: #000000;"&gt;gen_image1_extern&lt;/SPAN&gt;&lt;/EM&gt; - &lt;SPAN style="font-family: 'Arial,Helvetica,sans-serif'; color: #000000;"&gt;Create an image from a pointer on the pixels with storage management.&lt;/SPAN&gt; This operator also goes to trouble as &lt;EM&gt;&lt;SPAN style="font-family: 'Consolas,Inconsolata,DejaVu Sans Mono,monospace'; color: #000000;"&gt;read_image&lt;/SPAN&gt;&lt;/EM&gt;. I tried changing calling conventions, added image disposing, put pointer to my own clearing procedure and even used LabVIEW memory manager's function &lt;EM&gt;ClearMem&lt;/EM&gt;. The bug is still the same. If there's memory conflict, one of NI's developers could say why it happens.&lt;/P&gt;</description>
      <pubDate>Sat, 29 Dec 2012 05:22:20 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2266768#M717536</guid>
      <dc:creator>dadreamer</dc:creator>
      <dc:date>2012-12-29T05:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2281910#M720660</link>
      <description>&lt;P&gt;I've got solution to the problem. Maybe, someone will consider it useful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One of MVTec's specialists wrote me the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;When using libraries on Windows systems it is not allowed to unload a Dynamic Link Library (DLL)&lt;BR /&gt;while unloading another DLL. More explicit, when you load a DLL which then loads another DLL then&lt;BR /&gt;you need to make sure that the second DLL is unloaded or at least inactive when unloading the (main)&lt;BR /&gt;DLL.&lt;BR /&gt;&lt;BR /&gt;Since Windows may have different dependencies to these libraries it can happen that the process will&lt;BR /&gt;run into a dead lock. This is why the second DLL needs to be inactive.&lt;BR /&gt;&lt;BR /&gt;In this case LabVIEW will load the custom library which then loads HALCON. When unloading the custom&lt;BR /&gt;library it will also unload HALCON which causes the process to be stuck.&lt;BR /&gt;&lt;BR /&gt;To avoid this situation you need to close running threads in the HALCON library by calling the&lt;BR /&gt;following operator BEFORE the custom DLL will be unloaded:&lt;BR /&gt; set_system('thread_pool', 'false')&lt;BR /&gt;&lt;BR /&gt;Another option would be to set the global library variable HShutdownThreadPool = FALSE.&lt;BR /&gt;&lt;BR /&gt;Please see the HALCON Programmer's Guide chapter "3.2 Terminate HALCON Library" for more&lt;BR /&gt;information.&lt;BR /&gt;
&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jan 2013 17:28:57 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2281910#M720660</guid>
      <dc:creator>dadreamer</dc:creator>
      <dc:date>2013-01-16T17:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2822006#M825796</link>
      <description>&lt;P&gt;now the latest halcon vesion is v11&lt;/P&gt;</description>
      <pubDate>Sat, 19 Apr 2014 15:32:01 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2822006#M825796</guid>
      <dc:creator>ydzheu</dc:creator>
      <dc:date>2014-04-19T15:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2850390#M831683</link>
      <description>&lt;P&gt;if you don't use c to package it,how can you use halcon in labview？&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2014 13:51:22 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2850390#M831683</guid>
      <dc:creator>ydzheu</dc:creator>
      <dc:date>2014-05-15T13:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2850392#M831684</link>
      <description>&lt;P&gt;if you don't use c to package it,how can you use halcon in labview？&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2014 13:51:22 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2850392#M831684</guid>
      <dc:creator>ydzheu</dc:creator>
      <dc:date>2014-05-15T13:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2850862#M831745</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/122475"&gt;@ydzheu&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;if you don't use c to package it,how can you use halcon in labview？&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unless Halcon provides a ready made LabVIEW Library to their DLL, none really.&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2014 18:19:28 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2850862#M831745</guid>
      <dc:creator>rolfk</dc:creator>
      <dc:date>2014-05-15T18:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2850884#M831749</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;ydzheu&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Halcon also has .NET and ActiveX interfaces so you could easily use them in LabVIEW. Take a look at &lt;A href="https://forums.ni.com/t5/Machine-Vision/LabVIEW-and-Halcon/td-p/2450328" target="_self"&gt;this&lt;/A&gt; thread.&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2014 18:27:12 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/2850884#M831749</guid>
      <dc:creator>dadreamer</dc:creator>
      <dc:date>2014-05-15T18:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3302515#M966275</link>
      <description>&lt;P&gt;anybody please help me and send the Lab VIEW code, DLL for capturing and comparing images in Lab VIEW using Halcon 11&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 12:47:06 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3302515#M966275</guid>
      <dc:creator>sumeeth</dc:creator>
      <dc:date>2016-05-31T12:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3302586#M966307</link>
      <description>&lt;P&gt;&lt;STRONG&gt;sumeeth&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you tried to use .NET or ActiveX interfaces of HALCON in LabVIEW? What kind of DLL do you need for your app? Which device you're going to grab image data from (real camera / framegrabber or virtual one)? Do you have any test VIs you are working on?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Right now there are more questions than answers.&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 14:14:29 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3302586#M966307</guid>
      <dc:creator>dadreamer</dc:creator>
      <dc:date>2016-05-31T14:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3302986#M966462</link>
      <description>&lt;P&gt;halcon.net.dll is using to grab image from camera but i dont lknow how should i use those dll&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 05:54:18 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3302986#M966462</guid>
      <dc:creator>sumeeth</dc:creator>
      <dc:date>2016-06-01T05:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3303035#M966479</link>
      <description>&lt;P&gt;i have created a VI to capture an image, how should i compare the 2 image in lab view using halcon.dll&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 07:51:37 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3303035#M966479</guid>
      <dc:creator>sumeeth</dc:creator>
      <dc:date>2016-06-01T07:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3303042#M966482</link>
      <description>&lt;P&gt;&lt;STRONG&gt;sumeeth&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, my conclusion is that you're going to use .NET libraries to communicate with HALCON in LabVIEW. Then you should use &lt;EM&gt;halcondotnet.dll&lt;/EM&gt;, located in &lt;EM&gt;C:\Program Files\MVTec\HALCON-[version]\bin\dotnet35&lt;/EM&gt; folder. I guess you already have working code made in HDevelop environment. To translate that code to LV you should be aware of using .NET nodes such as constructor, property / invoke node / close reference. Start with object constructor node from Connectivity -&amp;gt; .NET palette. Place it on BD and do RMB -&amp;gt; Select Constructor on it. Then you locate your library and choose an object you are going to create such as HFramegrabber or any other according to your code. After that you place Property / Invoke Nodes and connect them to your constructor. In these Property / Invoke Nodes you should select a property or method to apply to your object such s GrabImage() or similar. After you have finished with that object you should dispose it with Close Reference. That's pretty simple if you try.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HALCON also provides simple graphic window to visualize your images. It could be created by placing .NET container on FP, choosing &lt;EM&gt;halcondotnet&lt;/EM&gt; assembly and &lt;EM&gt;HWindowControl&lt;/EM&gt; object from it. After that you're able to output any HALCON images to this control with the help of Property / Invoke Nodes,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please, take a look at the manuals shipped with HALCON, which are located at &lt;EM&gt;C:\Program Files\MVTec\HALCON-[version]\doc\pdf\manuals&lt;/EM&gt; folder, e.g. &lt;EM&gt;programmers_guide.pdf&lt;/EM&gt; and especially &lt;EM&gt;Part IV Programming with HALCON/.NET&lt;/EM&gt; section.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 07:59:46 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3303042#M966482</guid>
      <dc:creator>dadreamer</dc:creator>
      <dc:date>2016-06-01T07:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3303045#M966483</link>
      <description>&lt;P&gt;&lt;STRONG&gt;sumeeth&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First, make working code for image comparison in HDevelop program. Second, after you're satisfied with it, you have to translate the code to LV using .NET assemblies. Now I cannot offer you some samples of image comparison through HALCON in LV but you could experiment with it.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 08:06:12 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3303045#M966483</guid>
      <dc:creator>dadreamer</dc:creator>
      <dc:date>2016-06-01T08:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3304323#M966961</link>
      <description>&lt;P&gt;Thanq so much&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2016 09:30:20 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3304323#M966961</guid>
      <dc:creator>sumeeth</dc:creator>
      <dc:date>2016-06-03T09:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3703137#M1041623</link>
      <description>&lt;P&gt;I face same problem when I create dll of halcon function in visual studio and call that dll in LabVIEW by using call library function by node . Function work properly but LabVIEW goes in not responding mode&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 10:33:00 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3703137#M1041623</guid>
      <dc:creator>MTrivedi</dc:creator>
      <dc:date>2017-10-16T10:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3703139#M1041624</link>
      <description>&lt;P&gt;Please help me to find solution of this problem&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 10:34:01 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3703139#M1041624</guid>
      <dc:creator>MTrivedi</dc:creator>
      <dc:date>2017-10-16T10:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3703281#M1041682</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/329071"&gt;@MTrivedi&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Please help me to find solution of this problem&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Have you tried calling &lt;FONT color="#008000"&gt;&lt;EM&gt;set_system('thread_pool', 'false')&lt;/EM&gt;&lt;/FONT&gt; in the end of your program? That should work for sure.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 14:32:13 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3703281#M1041682</guid>
      <dc:creator>dadreamer</dc:creator>
      <dc:date>2017-10-16T14:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: LabVIEW &amp; MVTec Halcon</title>
      <link>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3703653#M1041793</link>
      <description>&lt;P&gt;Yes I tried it but didn't work&lt;/P&gt;
&lt;P&gt;Will please tell me where exactly place it&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2017 06:20:16 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/LabVIEW-amp-MVTec-Halcon/m-p/3703653#M1041793</guid>
      <dc:creator>MTrivedi</dc:creator>
      <dc:date>2017-10-17T06:20:16Z</dc:date>
    </item>
  </channel>
</rss>

