Re: sms by the nokia

2004-05-23 Thread Dr.Berns
Hello, This posts reminded me of some project I did in the past for
our microscope where I send out notifications to users after it has
finished scanning on my custom made LabVIEW program. First, you have
to select a phone which has data cable (a COMx port
connectivity)earliest is a 5110 followed by 6110, 6150) the rest uses
an IrDA and a modem driver. Each of these phones has AT-Commands set
(you can download from ETSI) depending again on the series. Ordinarily
you have to send out a AT+ Command using VISA or earlier Serial Port
VIs or Library and arrange the bytes so that they follow the exact AT
commands.This is a tip you could begin with.



Re: magnetic resonance application based on LabVIEW?

2004-05-20 Thread Dr.Berns
Hi, The book of Gary W. Johnson on LabVIEW (mine is 2nd Ed) towards
the end of the book is practically physics in content and application
perhaps that could give you some insight as it was with my own
experience.



Re: I'm looking to track the motion of a particle using imaq

2004-05-05 Thread Dr.Berns
Hello Simy:
Well size definitely will be the deciding factor first here (I'm doing
laser scanning microscopy) because your choice of vision components
will depend on that, thing like resolution is ultimately determined by
the smallest particle you need to see. That also translates to
choosing a camera which can do the job.There could be several
combinations of IMAQ Vision VIs/Image processing algorithms to make
this work maybe some even have to be customized with codes written
Visual C++ or MathLab -- for instance using BLOB (binary large
objects) with combinations of Thresholding and even calculations of
center of gravity and assigning scores to each to chracterize them. If
the particles are on top of each other you have to do a segmentation
with combination of erosion,dilate etc. to highlight boarders etc.
It's gonna be a lot in fact something that cannot be gotten from
LabVIEW itself but from other source like books on signal/image
processing. Most of it will be a lot of readings about the subject
matter of course your ideas could tested initially by creatin scripts
from another software package called IMAQ Vision Builder. Good luck!



Re: problem to connect remote panels

2004-04-20 Thread Dr.Berns
Hello Behzad,

I'm no expert but quite experienced with LabIEW features.First, is
that running remote panels is possible only for version 6.1 and
7.0.For you to run remote panels successfully (which I did in our lab
with five remote panels sharing a motorized microscope) you must see
to it both the remote and the local panel have the same LabVIEW
versions and each have correct Run Time Engines (which you can
download from NI).You may run into network security problems for
certain IP address that which network has firewall or required
priveleged access (your system administrator can help).Or otherwise if
everything seems ok always check of the remote site server is actually
there or is down.

Regards,

Berns B.



Re: multiple images

2004-03-06 Thread Dr.Berns
Hello Luis:

Have you tried working on Picture Control VIs? Since custom controls
can really just give you a two state output better or flexible
toolkits are what you need to fulfill your requirement of animated
multisequence action. Another approach is to shoot your valve in
sequence using an IMAQ Framegrabber and use IMAQ Vision VIs or have a
picture of the valve be taken in sequence on a digital camera save it
by JPEG or BMP and design a custom code in LabVIEW using IMAQ vision.



Re: Integrate IMAQ Vision picture into frontpanel

2004-03-03 Thread Dr.Berns
Hello Felix:

First, is that you have to remember that ordinarily LabVIEW does not
come with IMAQ or Vision tools as a single package and so you have to
learn them separately but ultimately integrate them together in
application. There is a set of toolset called picture control (early
version in LV4.1 to LV5.1?) you can begin from. Assuming you have good
grasp of image file types then start downloading NI examples that
enables you to read an image, convert them to a matrix form
(spreadsheet) and back or into different format. If you have a scanner
that can save in TIFF,PNG,BMP or JPEG you could use those files to
read them into your routines.