Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Message from discussion measured boundary conditions
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Carl S.  
View profile  
 More options Nov 17 2012, 11:37 pm
Newsgroups: comp.soft-sys.matlab
From: "Carl S." <tkitt...@gmail.com>
Date: Sun, 18 Nov 2012 04:37:19 +0000 (UTC)
Local: Sat, Nov 17 2012 11:37 pm
Subject: Re: measured boundary conditions

"Carl  S." wrote in message <k885d7$h8...@newscl01ah.mathworks.com>...
> "Carl  S." wrote in message <k879vh$k4...@newscl01ah.mathworks.com>...
> > "Bruno Luong" <b.lu...@fogale.findmycountry> wrote in message <h5rf05$nb...@fred.mathworks.com>...
> > > Doug, I have a hard time to explain why using pointwise Neumann condition is dangerous in a simple term. So I continue to provide indication, and hope one of them will speak to you. If you are familiarize with boundary single layer potential, you will see that the normal derivative have a jump relation related to the local value of the potential (see Colton & Kress book). This show that we can set pointwise Neumann bc at any values, though the Banach L^p norm (1<=p<infinity) of the "trace" can be anything else. There are an infinity harmonic functions that meet the *point-wise* Neumann condition.

> > > I might not fully understand where your Neumann data are from (I understand from measurement), but you have to be careful about how to plug them into the PDE, even if you think you can define it in the boundary.m.

> > > Bruno

> > Hi, I think this is the correct place to ask my question that is about Sobolev. The codes are ;

> >     u=NeumannBoundCond(u);
> >     [u_x,u_y]=gradient(u);
> >     s=sqrt(u_x.^2 + u_y.^2);
> >     smallNumber=1e-10;  
> >     Nx=u_x./(s+smallNumber); % add a small positive number to avoid division by zero
> >     Ny=u_y./(s+smallNumber);
> >     curvature=div(Nx,Ny);

> >     diracPhi=Dirac(u,epsilon);
> >     areaTerm=diracPhi.*g; % balloon/pressure force

> >     edgeTerm=diracPhi.*(vx.*Nx+vy.*Ny) + diracPhi.*g.*curvature;
> >     % u=u + timestep*(lambda*EdgeTerm + alfa*areaTerm);

> >     SobolevGradEdgeTerm = (1./(Img-gradient(u).^2)).*edgeTerm;
> >     u=u + timestep*(lambda*SobolevGradEdgeTerm + alfa*areaTerm);

> > When I multiply the edgeTerm and lambda then I can see the evoluation of the active contour. But I want to use Sobolev gradient. (So, I have added the last two code lines.) In this  case, when I multiply the lambda with SobolevGradEdgeTerm then the active contour disappears in the figure. What is the mistake ?

> I tried this
> SobolevGradEdgeTerm = (1./(eye(256)-gradient(u).^2)).*edgeTerm;
> but I have still the same problem :(

(eye(256)-gradient(u).^2) becomes zero. Therefore,
1./(eye(256)-gradient(u).^2)) becomes inf. Therefore, the active contour disappears

How to solve this problem ?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.