Jump to content

infinitenothing

Members
  • Posts

    367
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by infinitenothing

  1. TestStand? You can use TS semaphores to arbitrate the equipment. And regarding super clusters, a complicated system can have big clusters (lots of variables). Clusters are nice because they prove some scalability. You just want to make sure your clusters have high cohesion. Also, you want them to have well organized sub clusters. In a sense, you can treat them the same way you treat subVIs. Your top level VI or cluster shouldn't have all the code on its block diagram, it should be broken down into logical chunks.
  2. What's your code (as shown above) outputting now (what's in the array indicator). What ends up in your text file. What do you want in there?
  3. Are you using this function? http://zone.ni.com/reference/en-XX/help/370281W-01/imaqvision/imaq_find_circles/ If so, you can wire the Circles Data array into a for loop and unbundle the x,y, and radius. You can wire each of those out of the array which will autoindex each measurement into individual arrays. You can then wire each measurement array into Mean.vi which will give you the mean x, y, and radius. Also, for future questions, there's a machine vision board here: http://lavag.org/forum/10-machine-vision-and-imaging/ or here http://forums.ni.com/t5/Machine-Vision/bd-p/200
  4. Fortunately, if you can't get them to work as intended, they gracefully fall back to "draw something that looks like this picture" mode
  5. Could the compiler fix some of the easier race conditions? It could see that I'm doing something really simple with a global and block other callers for the 10 microseconds I'll need it. Oh, look, you have a property node floating off in the distance, let me do that before I start the event structure.
  6. You can add obfuscation (not real security). For example you could XOR your password with a second password.
  7. Maybe you'd like a type structure (especially the last image)? https://forums.ni.com/t5/LabVIEW-Idea-Exchange/Type-Structure/idi-p/3017975
  8. I really like this library. It's simple to use and understand. It's not viral.
  9. Of course at that point, there's no need to maintain the feature where newer versions can recompile older versions. It's all compiled for good now so there's no need to leave any part decrypted. Surely the RTEs don't have this security hole right .
  10. Is there a good way to grow an xnode from the scripting engine? When I try and pull up properties and methods I get nothing. Maybe there's a key missing in my LabVIEW.ini? To clarify, I want to do something like drop down the regular expression node, grow it a couple times, and then wire it up.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.