Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

snapshot

4 views
Skip to first unread message

Nilesh chandrakar

unread,
Feb 4, 2012, 11:48:22 PM2/4/12
to
hello everyone,i want to take a snapshot of video in simulink. and simultaneously i want to append snapshot to avoid flickering and jerk when it show the appended snapshot.please give me a solution.

ImageAnalyst

unread,
Feb 5, 2012, 10:50:52 AM2/5/12
to
On Feb 4, 11:48 pm, "Nilesh chandrakar" <nileshk.chandra...@gmail.com>
wrote:
> hello everyone,i want to take a snapshot of video in simulink. and simultaneously i want to append snapshot to avoid flickering and jerk when it show the appended snapshot.please give me a solution.

---------------------------------------------------------
Maybe you could quickly take the mean of the snapshot and adjust it
with mat2gray, imadjust, or manually if the mean is not reasonably
close to the mean of the prior fixed-up snapshot.

Nilesh chandrakar

unread,
Feb 13, 2012, 9:56:12 AM2/13/12
to
ImageAnalyst <imagea...@mailinator.com> wrote in message <3ece83ff-1e0d-4e24...@1g2000yqv.googlegroups.com>...
thanks for reply,
sir,I capture frame from video using triggered subsystem in certain time interval.when its trigger,the capture frame appear in display if you have seen for long time it produces effect on eye.so that i want to append the captured frame simultaneously like scroll the frame,please give me a solution.



ImageAnalyst

unread,
Feb 13, 2012, 10:44:16 AM2/13/12
to
On Feb 13, 9:56 am, "Nilesh chandrakar" <nileshk.chandra...@gmail.com>
wrote:
> thanks for reply,
> sir,I capture frame from video using triggered subsystem in certain time interval.when its trigger,the capture frame appear in display if you have seen for long time it produces effect on eye.so that i want to append the captured frame simultaneously like scroll the frame,please give me a solution.
------------------------------------------------------------
I thought I did. I don't really have time to give you a full turnkey
solution. Sorry but I have a full time job. You're going to have to
do the coding for your project yourself.

Nilesh chandrakar

unread,
Feb 25, 2012, 10:13:12 AM2/25/12
to
ImageAnalyst <imagea...@mailinator.com> wrote in message <60668a5e-2468-42c4...@p12g2000yqe.googlegroups.com>...
thanks for reply,
I want to make vision system for surface inspection of laminated steel sheet to detect the defects which is moving in speed of 0.5 to 1 m/s .i make algorithm that tachometer trigger the camera to capture the frame(on the basis of speed) and in captured frame i applied morphological operation(top hat) to separate the defects and background,and give to edge detection which is applied to blob analysis which find the defects location.so please help to improvement in algorithm or suggest any algorithm to solve above problem.how to find the area of defects and location.
thanks in advance.

ImageAnalyst

unread,
Feb 25, 2012, 12:38:52 PM2/25/12
to
That might work. Give it a try. If you need a tutorial in blob
detection, see my BlobsDemo in my File Exchange.
http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862

Nilesh chandrakar

unread,
Mar 1, 2012, 10:43:13 AM3/1/12
to
ImageAnalyst <imagea...@mailinator.com> wrote in message <30a8527b-b718-4b44...@q12g2000yqg.googlegroups.com>...
> That might work. Give it a try. If you need a tutorial in blob
> detection, see my BlobsDemo in my File Exchange.
> http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
thanks,
I want to generate a vector using linspace function,that have three argument a,b,n.
please give me a embedded matlab code for linspace function.so that i used it,in matlab embedded function block.

ImageAnalyst

unread,
Mar 1, 2012, 2:09:04 PM3/1/12
to
On Mar 1, 10:43 am, "Nilesh chandrakar" <nileshk.chandra...@gmail.com>
wrote:
> thanks,
> I want to generate a vector using linspace function,that have three argument a,b,n.
> please give me a embedded matlab code for linspace function.so that i used it,in matlab embedded function block.
--------------------------------------------
I don't know what an embedded function block is. If that's Simulink,
I don't have Simulink. I'm not sure what your confusion about
linspace is. It's pretty simple, like
a=0;
b = 10;
n = 21;
out = linspace(a,b,n)

Phil Goddard

unread,
Mar 1, 2012, 6:47:12 PM3/1/12
to

In a MATLAB Function Block, to use MATLAB functions that are not part of the embedded MATLAB subset you need to define them as being coder.extrinsic.

See http://www.mathworks.com/help/toolbox/coder/ref/coder.extrinsic.html for more info.

Phil.
0 new messages