How to define and track a particular pattern in a series of images?

i'm working on a robot project which require the robot chase an object. i plan on acquire images from IMAQ vision and control the motion of robot by LabVIEW.

One example that you might look at to get you started is located here.
To use pattern matching, you will need something on your target that will not change size, this may not be practical for a robot that will be chasing something. You can also look at thresholding followed by blob analysis to determine which item in your field of view is the target. This method works if your object will not be the same color as the background. This is faster than pattern matching, and is more size independant.

Similar Messages

  • How to Define and Use Formatted Search in Sap Business One 2007

    Hi
        Any Document on How to Define and Use
    Formatted Search in Sap Business One 2007.
    Thanks

    Hi Manish,
    It is Very simple Procedure of defining FMS(Formatted Search)
    in SAP 2007B Same as SAP 2005B & SAP8.8 Version
    Do this,
    ->> Open the require Document.
    for ex. IF you add the UDF in Marketing Document(Sales/Purchase)
    1. Goto the UDF (or) any Default(Original) Field and Click ShiftAltF2.
    2. Select the SEARCH BY SAVED QUERY.
    3. Assign the FMS Query.
    4. Select the AUTO REFRESH WHEN FIELD CHENGES.
    5. Select the require Auto refresh field
    6. Check the Refresh Regularly (or) Display Saved Values.
    Regards,
    Madhan.

  • How to define and use cookies so that same login is used on all application

    Hi
    I have 3 apps in a single workspace and all of them SSO enabled
    However when I go from one apps to other, it ask for login again
    I have read in the forum that we can use cookies so that we use the single login on all apps within the same workspace
    But I'm not sure how to define and use cookies.Please assist

    See this presentation:
    http://www.sumneva.com/apex/f?p=15000:395:0::NO::P395_PRESENTATION_KEY:MANY_TO_ONE

  • How to create a small field that cycles through a series of images. (using Acrobat Pro)

    Using Acrobat Pro, we need to use a small field to track student progress.  With successive mouse clicks, the field would cycle through: 
    -- a number (that identifies an element of study),
    -- same number surrounded by a circle (indicates element is assigned to the student),
    -- same number with a check mark (indicates element was completed by the student),
    -- back to the original number.
    This could probably be handled by cycling through a series of small images when the user clicks on the field.   
    The "Check Box" field allows only a check to be added to the field.  It does not allow the circle and does not cycle through multiple states. 
    The "Text Box" field might allow this capability, but if so we are not able to configure it properly.  
    Any solutions?   Thanks!

    Thanks Michael,
    The information at the link you provided enabled us to create a button that cycles through a series of ASCII characters. 
    This us useful, but we need to cycle through a series of images.  A more difficult problem. 
    FYI, an example of the javascript that cycles through a series of ASCII characters is shown below.  (The "else" statement pertaining to a null "" buttonGetCaption state is used to initiate an initial state of "1" for the button when the form is first opened.). 
    if
    (event.target.buttonGetCaption()=="1"+"\u2714") {
        event.target.buttonSetCaption("1");
        event.target.textColor = color.black; }
    else if (event.target.buttonGetCaption()=="") {
        event.target.buttonSetCaption("1");
        event.target.textColor = color.black; }
    else if (event.target.buttonGetCaption()=="1P") {
        event.target.buttonSetCaption("1"+"\u2714");
        event.target.textColor = color.green; }
    else if (event.target.buttonGetCaption()=="1") {
        event.target.buttonSetCaption("1P");
        event.target.textColor = color.red; }
    loop
    Again, we are still looking for a way to cycle through a series of images so any help with that problem would be appreciated. 

  • How to define and populate value to a variable in a text file

    hi all,
    i have a text file on unix server, when i read it through open dataset, is it possible to populate dynamic value to a variable in the text file. and is it possible to define a variable at any place in the text file?
    after this the program will send the internal table for emailing.
    thanks.

    Hi, If this file on server is a email template you can put some tags / marks and you can change it after you read it with OPEN DATASET / READ...
    Sample:
    OPEN DATASET p_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    CHECK sy-subrc EQ 0.
    DO.
      READ DATASET p_file INTO lv_string.
      IF sy-subrc EQ 0.
        EXIT.
      ENDIF.
      REPLACE ALL OCCURENCES OF '((SYSTEM_ID))' WITH sy-sysid.
      APPEND input_file_tab.
    ENDDO.
    CLOSE DATASET p_file.
    on file there's a line with:
    This email was generated on server ((SYSTEM_ID))
    It will be translated to (sy-sysid = DEV):
    This email was generated on server DEV
    This is a "variable" like that you can use.

  • How to  define and work with bind-variables without the dialog-box ?

    I want to select different tables with the same bind_variables,
    but do want not fill the bind-variables-dialogbox
    everytime I use the select statements
    because I could simple edit and bind this bind-variables once
    at the first select.
    select col1, col2 into :bind1, :bind2 from mybasictable_10 where col3 = 'ABCD':
    select * from mytable_b where b1 = :bind1 and b2 = :bind2 ;
    select * from mytable_c where c1 = :bind1 and c2 = :bind2 ;
    select * from mytable_d where d1 = :bind1 and d2 = :bind2 ;
    select * from mytable_e where e1 = :bind1 and e2 = :bind2 ;
    it doesn't work and I didn't find that in help,
    how does it work in sql-developer ?
    regards

    david,
    back to the root of my question:
    I do use an 10 years old low-end sql / plsql-tool where I can simple and fast do sql-things like that:
    select col1, col2 into :bind1, :bind2 from mybasictable_10 where col3 = 'for_example_ABCD':
    select * from mytable_b where b1 = :bind1 and b2 = :bind2 ;
    select * from mytable_c where c1 = :bind1 and c2 = :bind2 ;
    select * from mytable_d where d1 = :bind1 and d2 = :bind2 ;
    select * from mytable_e where e1 = :bind1 and e2 = :bind2 ;
    I would like to use oracles SQL-Developer instead of this 'old' tool,
    and want to use my 'old' sql / plsql scripts
    but the SQL-Developer in this matter seems is to much complicate to use,
    I can do complex and big things with sql-dev,
    but not simple using bind-variables ;-)( .

  • How to define and use special characters

    I need to define some special characters (such as an up-arrow and a down-arrow). I need to add these characters to Strings along with "normal" ASCII characters, and finally display the Strings with graphics.drawString().
    Can anyone get me started or tell me where to look? I looked at the archive but apparently I'm not using the correct keywords.
    Thanks in advance, Rick

    public void paint(Graphics g) {
            super.paint(g);
            g.drawString("up arrow: \u2191 down arrow: \u2193", 100, 100);
        }Works for me.
    See www.unicode.org for code charts.

  • How to trace and track the mobile , I lost it today , Please help ?

    Dear friends , I lost my iphone 4s today 5th Nov 2013 around 10.00 am indian time and now the cell phone reports switched off , can anyone help with techniques to track and trace the cell phone . I have my IMEA NO. with me.

    You cannot track a switched off phone. Your IMEI is useless for tracking it.
    Did you setup Find my iPhone on it before losing it?

  • How to find and track a stolen iphone

    i just got an iphone 5c (white) a little over a month ago on christmas. unfortunately yesterday it got STOLEN! when i left it on accident at a gas station where i was charging it. i came back 15 mins after i left to retrieve it and was NO WHERE TO BE FOUND. being a new apple user not knowing, i do not have the find my iphone app account nor do i have an icloud account or location services turned on. since it got stolen i called my phone company and turned off the phone.  i was wondering IS THERE ANY OTHER WAY TO TRACK MY IPHONE WITHOUT HAVING THESE TRACKING APPS OR ACCOUNT FOR ICLOUD??  anyway possible whether using a friends phone to track without an account or turning back on my phone or using my pc to track it. ect.  Anything!! will be much appreciative. HELPPP. thank you for your time.

    No, there is no other way.

  • How to define and use FMS in UDF?

    Hello,
    I searched the forum and find the link:
    https://websmp103.sap-ag.de/~sapidb/011000358700004565932005E/How_To_DefindeAndUseFMS.pdf
    but I can't access this link. I think it's useful to me. can anyone send it to me? Thanks a lot.

    ok

  • How to define ABC class field in the Customer Master Sales tab

    HI All,
    can any one let me know how to define the new  ABC class in the Customer Master Sales tab like below.
    u2013 A (> 6,000,000 )
    u2013 B (> 1,000,000u20136,000,000 )
    u2013 C (> 100,000u20132,000,000 )
    u2013 D (< 100,000 )
    can any one let me know how to define and path in IMG.
    Thanks in advance.
    kumar reddy.

    In my opinion, you don't have any such std table/view to update ABC Classification field. You might need to update relevant infostructure based on your requirement, such as sales, invoiced, etc..
    Try with following, based on your requirement:
    MC(A
    SIS: Customer,Inc.Orders - Selection
    MC+A
    SIS: Customer Returns, Selection
    MC+E
    SIS: Customer, Sales - Selection
    MC+I
    SIS: Customer Credit Memos - Selec.
    Regards
    JP

  • Setting up a pupil assement and tracking spreadsheet - how to go about it?!

    Hopefully somebody will be able to suggest some ideas to my problem. I am a head teacher in the UK, and want to setup an assessment and tracking spreadsheet for the children in my school. Basically I want to be able to enter a curriculum level (1 to 5), three time a year (we assess each term) and enter a final level for the year, and then based on that level a predictive level for the end of year 2 and 6 when they leave – as well as an historic graph tracking their progress whilst in the school. I need to do this for each child in school and for each of the 12 subjects (though we only need to assess some once a year). I would also like to be able to glean from this information the average maths or English level in the school for a particular year for example and be able to compare a certain child to the average. Tracking the average score for a subject from year to year would also be beneficial – as it would alert should we need to focus on any aspect of the curriculum.
    Here is my basic question - Even though I am only a very small rural school – with 50 pupils – I can’t fathom a way to set this up neatly – is it possible to do this. Do I create 50 sheets – one for each child – with all subjects on that sheet, and a level for every year in that subject? Or - Do I create 12 sheets – one for each subject – and have each pupil’s name there? Or do I create a fresh document for each subject! Another problem is that I need to promote the pupils at the end of a school year to a new class – and some children will leave and others will arrive.
    I guess my question is - has somebody tackled anything like this before – or is anyone willing to suggest a way of setting this up so that it is both clear and efficient.

    Gwyn,
    I am sure that the solution offered here has over simplified your situation and that the scope of your problem is far more reaching. However, I offer the following as a starting point.
    We begin with a Master List in which all levels for each student and subject are listed. I assume that your term "level" indicates the measure of a student's mastery of the subject. My abbreviated table shows only three subjects.
    You didn't define how final levels were determined so I just averaged the three term levels in the "Final Levels" table. These formulas are header entered and are of the form:
    =IF(ISBLANK(Student),"",AVERAGE('2008-09 Master List' :: B2:D2))
    Each subject calculates an average final level in the footer:
    =AVERAGE('2008-09 Master List' :: English Term 1:English Term 3)
    You sought an above/below average number for Math and English and these are also header entered:
    =IF(ISBLANK(Student),"",English-B$11)
    And finally, a "Cumulative Subject Levels" Table shows the average final score for each subject over a span of years. (='2008-09 Final Levels' :: B11). As it stands, I envision this table on a separate sheet with whatever charts you require. I also picture a separate sheet for each year.
    As I said in the beginning, this is a starting point. I look forward to your response.
    pw

  • How can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it

    how can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it.  i design patterns but am fairly new to photoshop. i used to be able to click on the drop down menu in patterns in the 'fill' box but cannot now do this.  have i inadvertently clicked on something to turn this facility off?  i now have to go to 'preset manager' and manually move my new design to the first box and click 'done' so that i can use it.

    Which version of photoshop are you using?
    After you define a custom pattern it should be added to the bottom of whatever patterns are already loaded.
    For example, if you define a custom pattern and then go to Edit>Fill>Pattern, the newly defined pattern should have been added to the existing loaded patterns.

  • How to search for a particular pattern in a string

    Hi,

    Hi ,
    How to search for a particular pattern in a string?
    I heard about java.util.regex; and used it in my jsp program.
    Program I used:
    <% page import="java.util.regex"%>
    <% boolean b=Pattern.matches("hello world","hello");
    out.println(b);%>
    I run this program using netbeans and am getting the following error message.
    "Cannot find the symbol : class regex"
    "Cannot find the symbol : variable Pattern "
    How to correct the error?

  • How do I find the apps and tracks associated with my ex-husband's account to delete them OTHER than 1 by 1-running Windows 8?

    I recently migrated my extensive library from a Mac authorized with both my and my ex-husband's id's to a Windows 8 machine only authorized with my id. I am finding that a good portion of the apps and tracks are still only authorized by his. How do I find these so I can delete them from my library? Finding them 1 by 1 has been VERY tedious. I have seen a script for the Mac to do this, but no solutions for Windows.

    It doesn't sound like the Exchange environment is configured in a manner to support these types of clients very well.  Have your Exchange team look at the following
    http://blogs.technet.com/b/exchange/archive/2012/11/26/supporting-windows-8-mail-in-your-organization.aspx
    http://blogs.technet.com/b/exchange/archive/2013/10/18/supporting-windows-mail-8-1-in-your-organization.aspx
    From the latter article: "Communications applications can connect to a corporate Exchange service
    configured to require certificate-based authentication. User authentication certificates can be provisioned to Windows 8.1 devices by administrators or end-users can browse to certificate and install to user certificate storage."
    You might want to:
    Ask your Exchange team the public URLs (ExternalURL) for Exchange OWA & ActiveSync
    Open the OWA URL in your Internet Explorer from your Surface
    If you get a Certificate warning, open the certificate and select Install (NOTE: You may have to install the entire certificate chain).  Your desktop support team should be able to support this because it is the SAME process for standard Windows 8x
    desktops.
    Confirm that you can open OWA on your surface with no more certificate or security warnings.  NOTE: The Exchange team will have to configured OWA properly.
    Once confirmed, repeat the same steps for the activesync URL that they provided.
    When done, try using the OWA OR ActiveSync URL value in your settings of your Mail client.
    Good Luck

Maybe you are looking for

  • Problem in changing characteristics of material while sales order creation

    Hello, My requirement is to change the characteristics of the material in a sales order before the sales order is saved. I tried using 'BAPI_OBJCL_CHANGE' but it aint working. In the debugging mode it is found that the program is searching for entrie

  • Firefox display odd characters when I click an mp4 link

    Up until about a month ago, I could click a link to an mp4 file and it would stream in my browser perfectly - now, I get square characters and question marks - just a bunch of giberish. These videos play perfectly in Safari, Chrome and IE. I'm on FF

  • How and Where linked server queries are processing ?

    Hi experts,  Its my curiosity, i want to know where the linked server queries are running.I create linked server in local server. i am accessing one table,How the query is processing and how the it forming result set ? pls guide me.

  • Extracting/Reporting on SEM data into BW

    Hi Experts, I have new requirement of reporting on SEM-PDCE. For this I have to fetch data of SEM PDCE into BW. Can you please provide me links or steps how to do that. I hve never work in SEM. IF anybody has documents relating to SEM or SEM PDCE or

  • Crash when recording!

    Every single time I want to record a bus it crashes. I'm using Ultrabeat for some drums and I want to record to audio as I do alot of edit effects and it crashes on me everytime...***?@! it just freezes and I get the beach ball. if i try and quit it