12-13-2019 02:51 PM
Hi - upon deploying a teststand/labview app with a basler aca-1300 gige camera, I was getting "unable to acquire image" from the application error handler. I ran the basler python viewer and, although I had to mess with packet size and interpacket delay, it was able to capture images so its not a firewall or jumbo packet issue. But after exiting pylon, the LV app still did not acquire. So, I figured I would install Ni-Max so I could see the attributes there and see if I could do an acquisition. After setting up Ni-Max I can see the camera in the list of devices under network devices, but there are no attributes tab nor acquisition controls. (see attached) Using the latest Ni-daqMx and runtime IMAQ(licensed). The Basler .icd and xml files are in the public folder as they should be. Thanks for any insight.
12-15-2019 09:10 AM
Hi,
I ran into problems in the past that some other software installation caused IMAQdx to work inproperly.
So could you please check if IMAQdx is installed(not IMAQ as you mentioned earlier)?
If it is already installed and you are still getting this problem, reinstall the IMAQdx driver, or update to the latest one if possible.
12-16-2019 10:18 AM
Ah - turns out labview would set the packet size to 8000 as a default so my ethernet card couldn't handle it. I needed to set the packetsize property with a DAQmx property node call within the labview code. Still can't change any attributes in Ni-Max but I don't need to.
02-25-2021 01:21 PM - edited 02-25-2021 01:22 PM
Hi I'm running in to same kind of issue and have to set the packet size property node but not sure of the attribute exact name. Could you tell me what is the attribute exact name or from where I can get that name ?
04-29-2024 05:10 AM
Hi ugg88,
Don't know if you still have the problem. The property node is not in DAQmx but in IMAQdx.
With it, you can set specific parameters of your image acquisition.
Here is a snapshot of my code (sorry, comments are in french).
Let me know if it's ok.
04-29-2024 07:58 AM
@JiPé wrote:
Hi ugg88,
Don't know if you still have the problem. The property node is not in DAQmx but in IMAQdx.
With it, you can set specific parameters of your image acquisition.
Here is a snapshot of my code (sorry, comments are in french).
Let me know if it's ok.
As far as I can understand . you need to enable Jumbo frames to get a possibilities to use "default" packet size 8000. Usually UDP is used for ethernet-based cameras and Jumbo usually enabled (also usually network card with Jumbo support used for such cameras).
04-29-2024 09:28 AM
JiPé, Thank you for checking . Yes I used the same logic by setting the packetsize property to 1500.