Top Banner
25

Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Jan 04, 2016

Download

Documents

Dinah Wiggins
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.
Page 2: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Now days, sampled 3D models become more widespread in many fields and

applications.

It is often necessary to have a credible 2D model that emphasizes all visually

relevant characters of the original object.

Page 3: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

There are many common methods to capture a 3D object in 2D world focusing on different aspects of line drawing:

Page 4: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Definition:

Points at which the normal (N)

is perpendicular to the viewing direction (V).

Occluding Contours

0N V

Gives minimal information about the inward.

Page 5: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Definition:

These are lines where a contour would appear with a minimal

change of the viewing direction.

Suggestive Contours [DeCarlo et al. 2004]

min N V

Page 6: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Definition:

Ridges are points where curvature assumes local maxima.

Valleys - local minima.

Ridges and Valleys [Ohtake at al 2004]

Curvature

Amount of change in the normal,

as we move in a specific direction

on the object

Page 7: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Apparent Ridges [Tilke Judd 2007]

Including viewing projection with curvature, defines the

view- dependent curvature.

These are points at which the view-dependent curvature attains a local

maximum in the principal direction .

Generates contours, and therefore

can stand alone.

Page 8: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

we project them on the object

View- dependent curvature

Given a specific point and direction in the view screen,

and measure the change in the normal on the object.

in regards to a small displacement on the screen,

Page 9: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Techniques innovation

Presenting an image in a more artistic, human-like vision.

Capturing essential visual properties and producing a non-photorealistic rendering of

the image.

Generating lines that are based on visual perception.

Page 10: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Trimming - both minima and maxima cases captured by zero crossing, for apparent

ridges we eliminate the minima

Estimate the view-dependent curvature derivative Dt1

Locating zero crossings – determine inside which faces to draw a line

Apparent Ridges Algorithm For each vertex on the mesh, find view-dependent curvature direction t1

Define a consistent t1 field, in the direction of the positive derivative

Thresholding – draw lines that are only over certain value.

Find two triangles that contain t1 and –t1

Intersection points w and w’

estimate the curvature there

Dt1 is the average

Find two neighbor vertexes.

If t1 fields co direct –there exists a zero crossing.

Right – maxima

Left - minima

Page 11: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

We’ve implemented the Apparent Ridges algorithm for line drawing on meshes.

Our implementation was much based on geometric and differential calculations.

We’ve added our code to version 1.3 of rtsc.

For more information look at our project book!

Page 12: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.
Page 13: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Threshold

The Apparent Ridges technique finds all local extrema.

However, we only care to remain with the meaningful lines. keeping only the lines above a given threshold.

Page 14: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Comparison to Contours

Contours provide limited information.

Apparent Ridges images obtained without additional

contour calculation.

Page 15: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Comparison to Ridges & Valleys Mathematically, ridges and apparent ridges are quite related.

The Apparent Ridges method differs from the Ridges method by adding view-dependency.

The Apparent Ridges lines offset from original ridges towards the contours.

Page 16: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

At front facing parts of the model the methods do same.

On parts that turn away from the viewer, they differ.

Page 17: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

In our opinion, towards the contour the Apparent Ridges drawing is much more correct and points out the 3D effect.

In zoomed in view Apparent Ridges looks more realistic, but the total image doesn't feel right.

Page 18: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Ridges and Valleys often provide a boxy looking object.

While Apparent Ridges technique provides smoother lines.

Difference noticeable around the nose and mouth.

Page 19: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

The statues stand ornament is better illustrated by the Ridge and Valley technique.

The figure itself seems more natural and feminine with the Apparent Ridges technique.

Page 20: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Comparison to Suggestive Contours

In our opinion, the Suggestive Contours capture better the pattern of the Golf Ball.

It is hard to compare Suggestive Contours to the Apparent Ridges because they are fundamentally different lines.

Page 21: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

In convex regions of an object Suggestive Contours some times miss important features.

In the Suggestive Contours image the ridge-like feature of the cube is missed whereas Apparent Ridges locate it properly.

Page 22: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

The Suggestive Contours lines at the lips, nose, and chin area fit better the object.So is the stand of the statue.

The Apparent Ridges image is not so good.

Page 23: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Conclusions

Apparent Ridges:

Generates contours, what makes the technique independent.

Different models may point out lines that look better for one method or another.

Often gave smoother results.

Shows similarity to Ridges and Valleys technique.

Differs from the Suggestive Contour technique.

Page 24: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.

Summery

In this project we got exposed to 3D object analysis and terms.

We’ve implemented the Apparent Ridges algorithm for line drawing.

The comparison we made to other methods is subjective.

Mostly, the view dependency addition resulted in smoother images with artistic aspect.

We get outcome with 2D lines similar to the model, that describe it well and pleasant to view.

Page 25: Now days, sampled 3D models become more widespread in many fields and applications. It is often necessary to have a credible 2D model that emphasizes.