-
Posts
217 -
Joined
-
Last visited
-
Days Won
7
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by Gribo
-
Here is the link: USB Acquisitions Model – JaSSC Inc (jassc-inc.com) You will have to contact the company for support and drivers.
-
When writing arrays directly to Excel, there is a time limit for Excel to write the array to the selected range. If that limit is exceeded, you will get an error. The .NET API provides a more detailed error than the ActiveX API.
-
It's better than a new icon..
-
This is the closest thing to a pinout I could find for the PXIe-2525. You will have to check connectivity between the 160 pin connector and the 50 position terminals. NI MAX 2020 doesn't list this board. GUID-04647FDC-4447-45DA-9BB2-4E10EA993437-a5.svg
-
how can I render an image in Labview?
Gribo replied to thenoob94's topic in LabVIEW Community Edition
Mono does.. It was just an example. -
how can I render an image in Labview?
Gribo replied to thenoob94's topic in LabVIEW Community Edition
You will have to convert the OpenCV MAT to LV picture. The MAT object has a ToBitmap method, which can generate a LV compatible bitmap. I attached a VI that uses the EmguCV .NET wrapper. -
Upgrade LV2017 => LV2021 : Windows 10 memory increase
Gribo replied to Francois Aujard's topic in LabVIEW General
The next question is what removes measurements from this array? Except the INIT command, there is nothing that reduces its size. Over time, with new measurement names, it will always increase in size. -
Upgrade LV2017 => LV2021 : Windows 10 memory increase
Gribo replied to Francois Aujard's topic in LabVIEW General
Can you use a single for loop for the Set function? a pair of parallel loops is always a suspect. -
Looking for software for the discontinued aeroflex 3011/3035
Gribo replied to Andrew Lloyd's topic in Hardware
On the wayback machine - http://www.aeroflex.com/downloads/PXI/3010/V2100/3010.zip -
Looking for software for the discontinued aeroflex 3011/3035
Gribo replied to Andrew Lloyd's topic in Hardware
I think you might have to run it on an XP machine (or VM). -
Looking for software for the discontinued aeroflex 3011/3035
Gribo replied to Andrew Lloyd's topic in Hardware
And for the 3010:3010.zip -
Looking for software for the discontinued aeroflex 3011/3035
Gribo replied to Andrew Lloyd's topic in Hardware
From the way back machine. I hope it works. 3030.zip -
Looking for software for the discontinued aeroflex 3011/3035
Gribo replied to Andrew Lloyd's topic in Hardware
Did you try Cobham? -
LibreOffice? ActiveX (And the .NET API) should work with Office365.
-
You can use this .NET Library for Outlook MSG Files – Read & Convert MSG as Text | MSGReader (fileformat.com)
-
Labview - Implementing Offline Maps
Gribo replied to suraj singh's topic in LabVIEW Community Edition
Check OpenStreetMap It shouldn't be too difficult to pull data using their API. -
You have to divide this problem into smaller parts: 1. Detect start, top and bottom positions of the potentiometer 2. Calculate distance based on potentiometer position. 4. Calculate speed (distance over time) 5. Detect repeats. 6. LabVIEW has the XY graph control, it can create a bar display.
-
You will have to calculate what position (# rotations?) each rep generates. For speed, differentiate over time.
-
Labview OpenCV interface: passing array of images
Gribo replied to Thijs Lenssen's topic in Machine Vision and Imaging
Your image source is U8 grayscale, your destination is floating point double. Are you sure this is correct? Also, try using a different image other than one from the stack - pass another NIIMAGE to calibrate_response. I think you are overwriting the 1st image in the stack. -
Those who do not learn from the past are bound to repeat it. Too close for comfort.
-
Event on Colour Change while widget is open, is this possible?
Gribo replied to Neil Pate's topic in User Interface
Now, some ray tracing.. -
Please can anyone help me optimising this code
Gribo replied to Neil Pate's topic in LabVIEW General
Hardware acceleration was invented exactly for this use case.. -
Please can anyone help me optimising this code
Gribo replied to Neil Pate's topic in LabVIEW General
Are you on Windows? If so, the .NET picturebox control is faster than the native LV control for such operations. It also has other nice features, such as double buffering.