Is it possible to trigger a webcam?

I am trying to make a breakdown experiment
where a high voltage RF pulse is sent of a set of electrodes in front
of a viewport. My pulse is typically about 100mS. I want a cheap/simple
way to see if I have an arc (to correlate that with my other signals).
I think a webcam will have as much resolution as I need. Does anybody
knows if I can trigger the webcam using labview (or some other
program). I can use a second trigger before the power pulse as needed,
but I don't know if those libraries mentioned in other posts allow the
control of the webcam to capture images using a trigger event, and/or
how many FPS can I obtain from a webcam.
Basically, I am thinking of sending a pulse, letting the webcam to
capture frames for say 0.5-1 second. And display the images captured,
so I can save or whatever. I am not interested in analysis. The
contrast should be good, light (arc) and darkness (no arc). Could
anybody recomend a camera that works. I want something as simple to
setup as possible, I don't know if there is a preferable model or
something. For example, I was thinking of the Logitech QuickCam Pro
4000, or the Phillips Vesta PCVC 680K which seems to be the favorite of astrophotographers (good sensitivity in low light conditions).
Thank you very much for any help.
Darien

What immediately comes to mind with a web cam is that at high
resolution the frame rate is liklely to be 15 frames per second, that
means that you could typically expect about two or three frames of full
resolution data. I have had higher but it's unstable more often than
not and easily stopped by any other activity on the USB bus.
As far as triggering is concerned I guess you just aquire data in a
circular buffer and have an external trigger start and if necessary
stop the aquisition into the circular buffer.
If you use a video camera you should get better contrast range, higher
dynamic range, significanlty better focul distances and shutter speed
control. Also if you use firewire you will get all the frames. You
could also record the data without the computer as a high voltage spike
of the type you are describing is likely to stop or ruin just about
everything electronic not within a faraday cage, this could be
challenging when you are tyring to put a hole in the cage to poke a
camera through!
I guess you have some specially coated glass for that?

Similar Messages

  • Is i possible to trigger a workflow from the creation of an event in iCal

    Is i possible to trigger a workflow from the creation of an event in iCal
    Or is is possible to create a workflow to ad events to an iCal calendar which then triggers the workflow or is combined with the ad events workflow.
    Graeme

    Hmm, nope. Not that I'm aware of. Very few apps allow you to hook scripts directly to user activity. Finder* is a notable exception. iCal's "publish" feature has the ability to auto-update after user activity, but you'll either need dot mac accounts or your own webdav server to get that working.
    I'd re-consider the idea of triggering a periodic workflow with iCal. That way if the computer is shut down or asleep, iCal will wait to run the workflow at its next opportunity. You could hide the unsightly repeating events in a second calendar so they're out of the way.
    The next best thing is to write a faceless AppleScript application with a long-duration idle handler. The user would simply add it to their login items in System Preferences. This would also resume its cycle after sleep or shutdown.
    Yet another option is to write an AppleScript that can register itself in the crontab. This has the advantage of running at a predictable time. If you're careful, you can even set the script to wake up or power on the computer as necessary.
    * Folder action scripts can be triggered when files are created, moved, or deleted, but not when they're merely updated. This probably rules out much of iCal's activities in ~/library/application support/ical/.

  • Is it possible to trigger an event when clicking context menu trigger icon?

    When opening a context menu on a UI element, is it possible to trigger an event to handle, eg. set the lead selection for this context element to which the UI element is bound, when clicking the menu trigger icon ?

    First, these NW04s menus are not really context menus. They are static menus that are rendered within the view layout. Real context menus will come later.
    There is no "onMenuOpen" event for an application.
    Armin

  • Is it possible to trigger FIPP event (and how?) when parking an FI document

    Hello
    I wander is it possible to trigger FIPP event (and how?) when parking an FI document with transaction fbv1(and not fv60)
    Thx in advance

    Hi,
    In Financial Accounting --> Accounts Receivable and Accounts payable >  Business Transaction> Incoming Invoices/Credit Memos  --> Make and check settings for Document Parking -->  Create Workflow Variant for Parking Documents (Click  this)
    There you have to assign your workflow.
    Regards,
    Surjith

  • Is it possible to trigger the acquisition and recording of data in this condition?

    Hi
    I am a LabVIEW newbie,
    Is it possible to trigger the data acquisition and recording in the following case;
    I have two input signals 1. Pressure Transducer 2. Pulse from a magnetic pickup.
    I have to plot the pressure data against the pulses. Can I make the magnetic pickup signal as master signal to trigger the data acquisition and recording? and at the same time acquiring the pressure data as well.
    How can I do that ?
    Thanks.

    Hi Rich
    Thanks...
    I have PCI - 6033E High resolution multifunction I/O board and NI BNC - 2090 adapter chasis.
    What I am getting is the pressure from the transducer and magnetic pulses.
    Two cosecutive pulses encompass one complete cycle of the combustion process inside the engine.
    I need to record the data for presenting the information offline.
    Since combustion is a highly unstable process I need to get the optimum representative grapgh at a particular engine speed.
    So lets say, I want the magnetic pulse to trigger this the data acquisition for 50 of such pulses, i.e. 50 complete cycles of diesel engine. So that these 50 acquired cycles may be averaged for pressure readings and a single representative curve (graph) may be produced.
    Thanks again
    Message Edited by SeaMist on 06-26-2008 02:49 AM

  • Is it possible to trigger action in backing bean on page unload event?

    Hi,
    There is a RichPopup in my page which has a Listener to save data or not by user choice "Data change detected, do you want to save those changes?"
    I've tried with the javascript event 'window.onbeforeunload', but this way must be fit with a Servlet function which I am not allowed to use.
    The attibute 'onunload' in the tag '<af:document>' seems useless. Even there is few description or example in the 'Tag Reference'.
    So, is it possible to trigger action in backing bean on page unload event? Thanks in advance for helping.
    Viva

    Hi Frank
    Thanks for helping, I've tried in your way. My codes are like below:
    Page codes:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1" clientComponent="true" title="viva test">
          <af:resource type="javascript">
            if (!window.addEventListener) {
                // alert('window.addEventListener is not supported in IE8. Override it!');
                window.addEventListener = function (type, listener, useCapture) {
                    window.attachEvent('on' + type, function() {listener(event)});
            window.addEventListener('beforeunload', function (){performUnloadEvent()}, false);
            function performUnloadEvent() {
              var eventSource = AdfPage.PAGE.findComponentByAbsoluteId('d1');
              //var x and y are dummy variables obviously neeed to keep the page
              //alive for as long it takes to send the custom event to the server
              var x = AdfCustomEvent.queue(eventSource, 'handleOnUnload', {args:'noargs'}, false);
              var y = 0;
          </af:resource>
          <af:serverListener type="handleOnUnload" method="#{vivaTestBean.testOnUnload}"/>
          <!--
          <af:form id="f1">
            <af:commandButton text="Unload" id="cb1" action="unload"/>
          </af:form>
          -->
        </af:document>
      </f:view>
    </jsp:root>The backing bean codes:
    public class VivaTestBean {
        public VivaTestBean() {
        public void testOnUnload(ClientEvent clientEvent) {
            System.out.println("Thanks God");
    }The first way which triggers a 'unload' event by clicking a button DO WORKS. :)
    But when I changed the triggered way by changing the <af:document> to clientComponent as what you did, the 'onbeforeunload' event won't come out when I refreshed or closed the page.
    That doesn't make sence, since I think the two ways to trigger a 'unload' event are the same.
    Edited by: 841766 on 2011-3-7 上午1:13

  • Is it possible to trigger a JSP ?

    Hello All,
    Thank you for your answers on all my previous posts,
    This time, I was just wondering if it is possible to trigger a JSP to run at a given time of a day ?.
    Scenario :
    I have done a JSP coding to automatically write an XML file from the database. I use this XML for the RSS feed in my project. If I could automate the creation of XML at a given time of the day, then my RSS feed system will completely be automated.
    Thank you for your thoughts and suggestions in advance.

    The best way is if you have a Unix flavoured box and can benefit from the cron as the previous posts said. Then use the curl command to essentially ping a website.
    I have also used lynx in the past which is gives you the ability to use on windows as well as add session/cookie and better result logging capabilities if necessary.
    Hope that helps!

  • ** Is it possible manual trigger when JDBC is sender

    Hi Friends,
    Is it possible manual trigger to send the new records to the JDBC sender adpter ? Instead of Stored Procedure or SQL statement (Stored Procedure) in 'Query SQL Statement' parameter ?
    The purpose is instead of JDBC poll at frequent interval,we want to send newly inserted record whenever required.
    Any idea friends, to do this ?
    Kind Regards,
    Jeg P.

    Hi,
    You can try this way. On insertion of any record in a table trigger a Stored Procedure which will call the url for activating and deactivating the channel. For more help on invoking the url from Stored procedure, please refer to the link below.
    http://www.lorentzcenter.nl/awcourse/oracle/appdev.920/a96612/u_http.htm#1012294
    Your code will look something like this
    req := utl_http.begin_request('http://host:port/AdapterFramework/ChannelAdminServlet?party=party&service=service&channel=channel&action=action ');
    Thanks
    Amit

  • Possible to trigger HRMD_A IDoc immediately

    Hi experts,
    Can you please let me know if it is possible to trigger an Outbound HRMD_A IDoc immediately i.e. as soon as someone creates a new record for any of the infotypes associated with this IDoc the IDoc is sent; without having to schedule PFAL or BD21.
    Thanks and regards,
    Brendon

    Can you please let me know if it is possible to trigger an Outbound HRMD_A IDoc
    immediately i.e. as soon as someone creates a new record for any of the infotypes
    associated with this IDoc the IDoc is sent; without having to schedule PFAL or BD21.
    Well I think some confusion out here, PFAL or BD21 does not have any control on when the IDOC
    is sent they will just read the infotype data and create IDOCs. WE20 Partner Config has got the
    setting to tell system whether COLLECT the IDOCs in ready state or dispatch as soon as they
    gets creates (PFAL/WE21) Without scheduling BD21/ PFAL you will not have IDOCs itself
    triggering comes later.
    Hope this clarifies.

  • Possible to trigger output type through Function module?

    Hi,
    Is it possible to trigger output type through Function modules or through some codings or any standard FM's?
    Regards
    Bala.

    You did not specify what area you need to retrigger an output type for, but here is a sample to retrigger a delivery output.
      CALL FUNCTION 'BAPI_LIKP_PROCESS_MSG_DIRECT'
        EXPORTING
      DYNAMICOUTPUTDEVICE       =
          processing                       = PROCESSING
      SORTMESSAGE               = 1
        TABLES
          deliverynumber                 = delnbrs
          outputtype                       = outputs
          messageprotocol              = bapimsgprot
          return                              = bapiret2.
    Thanks

  • Is it possible to disable the webcam toolbar on the Equium A300D

    Is it possible to disable the webcam toolbar on the Equium A300D at all? (i.e. just access the webcam controls from the control panel or start menu orsomething).
    Where the toolbar is on the left of the screen it's extremely annoying, as every time my mouse strays to the left of the screen, up pops the toolbar.
    On a couple of apps I use there are docked app controls on the left of the screen, and when the toolbar pops out, covering half of them up, I have to wait for the toolbar to disappear again, which can be extremely annoying if I'm rushing to do something.
    Is there any way to disable it from appearing?

    Yes, you can disable the webcam software from automatic loading.
    In RUN type *msconfig* and start this tool.
    There you will see the tab called Startup. Go to this tab and disable the webcam software (remove the mark).
    Then apply the changes and reboot the notebook.
    Now the Windows should boot up without the webcam software.
    Bye

  • Is it possible to trigger remote R/3 connection through WD ABAP

    Hi Colleagues,
    I am trying to trigger a remote R/3 Connection through WD ABAP. I created an RFC destination through SM59. i tested the connectivity and it works fine from R/3 to R/3. But when i trigger the same code through a WD ABAP application, nothing happens.
    Is it possible to open an SAP GUI screen through the remote connection using WD ABAP? If yes, can you provide me a solution.
    Thanks,
    Gaurav.

    Hi,
    Please refer this link for Thomas's reply
    Calling TCODE on click of LinkToAction UI
    Or
    If you are using the Enterprise portal, create an Iview of R/3 or Transaction where you can give the transaction that you want to open.
    Regards,
    Lekha.

  • Is it possible to trigger a bpel process from a database object.

    Hi,
    We want to schedule a bpel process to run daily .So we want to trigger it from a database job.
    Is it possible to call a bpel process from database..?
    Or
    Is there any way to schedule a bpel process from bpel server it self.
    Thank you
    Gayaz

    If you know about DBMS_JOBs then I would say the easiest way to invoke a BPEL process is via the AQ adapter. You just need to populate an AQ and a way you go. The good thing about this is that if SOA SUite is down when the schedule is run you don't need to retry, it will be picked up when it comes online again.
    cheers
    James

  • Is it possible to use USB webcam + USB mic simultaneously?

    I would like to use a USB mic (Blue Snowball USB) and USB webcam (Ligoitch Quickcam) together simultaneously, because I understand the one is good sound and the other is good video for live internet broadcasting of music.
    can anyone tell me if this should be possible? I'd hate to buy them and find it doesn't work... THANKS!
    I'm using Macbook 2.2 GHz Intel Core 2 Duo OSX 10.5.8

    No reason why not.

  • Is it possible to trigger an error so that the running stored procedure is stopped?

    Hello all,
    I want to run an existing stored procedure and then I want to manually trigger an error/abort/interruption so see what happens and do some testing with that.
    Is it possible to manually trigger an error/abort/interruption on a running stored procedure so that it is stopped?
    If yes, how can I do that?
    I hope someone has an idea. For me it sounds not really difficult, but I just do not get the idea how to do it.
    Kind regards
    Peter

    Hello Visakh,
    I dont want to modify the existing procedure. I just want to run it and than stop it, but not with the button to stop it, but "kill" it somehow with an error (with not destroying the database).
    Nope you cant simulate an intermediate failure inside procedure code from outside. For that you have to modify the actual sp code itself
    Another way is by doing data manipulation in such a way which causes a error in procedure but for that you need to revisit the logic to ensure you do changes in such way as to cause an error
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

Maybe you are looking for

  • Problems with the items (control) in forms 9i (Re)

    Hello, I write this problem in a other post and but don't have any feedback about it(So I will give another try:-) ) The problem that I will describe don't happen all the time and is very rare but I want to know if it's a normal bug of forms or somet

  • HT201407 hey i am trying to to get a app from my old ipod to my iphone and it says i need a creitd card

    someon help me

  • Custom component parameters

    Hello, I have a movieclip that I want to export as a SWC with a single parameter. I have defined that parameter in the 'Component Definition' panel by specifying an external class holding the parameter, however when I drag an instance of that compone

  • BAPI Jobs

    Unfortunately our system has many BAPI jobs. Basically these are queries created over infocubes/odses and run in the bacground to create tables. (The table becomes a generic data source to load another cube.) These BAPIs are created via transaction R

  • I am unable to turn off passcode

    I am unable to turn off passcode and the passcode lock section "Turn Passcode Off" appears grey and its inaccessible. And I am using iphone 4 and iOS 7.1.2. Thanks in advance.