sdk samples

i run plugin samples of analytic overlay in visual studio but it is always saying dll is missing.how could solve this .?

A plugin will run in the environment, in this plugin the Smart Client, I suspect that is not what you are doing.. Please read in the MIP Documentation - Plug-in Integration > Getting Started > Plug-in Development

(In the MIP Documentation in the top bar pick Plug-in Integration, in the left hand side find Getting Started - Plug-in Development.)

thanks..i had look on documentation and created one plugin which is like analytic overlay samples.but i cannot find code for finding camera information .could u please help me on which samples should i look to find the code for that .i just had refer this link for coding.

http://download.milestonesys.com/mipsdk/MIP_Introduction_Webinar_FINAL.pdf

As a plugin sample for showing camera information, the best bet is the ConfigDump tool plugin sample.

The document you attached is from 2010! Please do not use something so old, please assure me you are not using a 7 year old MIP SDK! Please make sure you have MIP SDK 2017R1

Perhaps you can use this -

See - https://www.milestonesys.com/globalassets/materials/documents/docs/milestonemipsdk_gettingstartedguide.pdf

Please tell me did you find the document in the Milestone web site?

yes, i am using the MIP SDK 2017R1 only. I just got the code while i am searching on analytic overlay . But i got exception over that code. I just want to show some alert messages in “camera view” which is i am dynamically getting from web service. I don’t know which sample will be helpful for that.

So you are using the SCOverlayOnEvent sample (MIP SDK 2017R1) and the Smart Client is 2017R1, it works for me..

What is the exact error? (Perhaps you can show it; text or screen capture.)

If you run it in debug as described in Getting Started - Plug-in Development, does it reveal more about the error?

I have created one plugin to show the text on video .I am getting exception like this while i am running Smart client 2017R1.

Do you get the same using the sample?

-

In general drawing of overlay will have to be in the UI thread. A guess is that if you use something like

ClientControl.Instance.CallOnUiThread(() =>

(Seen in the SCOverlayOnEvent sample)

this might be the solution.

That exception now cleared.thanks it works good now.