SlideShare une entreprise Scribd logo
1  sur  12
Télécharger pour lire hors ligne
International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013

AUTOMATIC RECTIFICATION OF PERSPECTIVE
DISTORTION FROM A SINGLE IMAGE USING PLANE
HOMOGRAPHY
Geetha Kiran A1 and Murali S2
1

Malnad College of Engineering, Hassan, Karnataka, India
Maharaja Institute of Technology, Mysore, Karnataka, India

2

ABSTRACT
Perspective distortion occurs due to the perspective projection of 3D scene on a 2D surface. Correcting the
distortion of a single image without losing any desired information is one of the challenging task in the
field of Computer Vision. We consider the problem of estimating perspective distortion from a single still
image of an unstructured environment and to make perspective correction which is both quantitatively
accurate as well as visually pleasing. Corners are detected based on the orientation of the image. A
method based on plane homography and transformation is used to make perspective correction. The
algorithm infers frontier information directly from the images, without any reference objects or prior
knowledge of the camera parameters. The frontiers are detected using geometric context based
segmentation. The goal of this paper is to present a framework providing fully automatic and fast
perspective correction.

KEYWORDS
Sobel Operator, Corner detection, Segmentation, Plane homography, Perspective Rectification.

1. INTRODUCTION
Images are perspective in nature. Today’s world requires the perspective rectified image for
applications like image based rendering and metrology from single view. The applications require
parallel view image for photorealistic results. Much work has been done towards the rectification
of perspective distortion depicted in document images and also based on multiple images. Recent
focus has been on recovery based on single image, a problem that is more challenging than the
multiple- view variety and has good potential applications in image based rendering, image
mosaicing, machine vision, 3D Reconstruction. Perspective is the projection of actual vision.
Many of the applications would need parallel projection because parallel projection facilitates
easy extraction and application of the regularities. However they are not parallel in a perspective
projection hence their identification and application is of much importance. This leads to
rectification of perspective distortion.

DOI:10.5121/ijcsa.2013.3506

47
International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013

The paper is organized as follows. In section 2 a review on the related works is highlighted. In
section 3 the overall methodology is viewed through a flowchart. In section 4 the preprocessing
steps which further leads to image segmentation are addressed. In section 5 the methodology used
to estimate the corners is discussed. In section 6 an overview of the perspective estimation is
addressed. In section 7 the details of the perspective rectification is given. Experimental results in
section 8 with conclusion in section 9 are to follow.

2. LITERATURE SURVEY
The literature directly relevant to the proposed research, are highlighted here. Researchers have
proposed different methods to rectify perspective distortion from a single image. Authors have
used perspective cues, typically vanishing points, to predict the depth information and also cues
from hough transform[1]. Murali S et al.[2] have proposed a method based on perspective
transformation and plane homography to rectify the perspective distortion in an image to actual
scale with known camera parameters. Jian Liang et al. [9] estimates shape from texture flow
information obtained directly from the image without requiring additional metric data. Shijian et
al. [3] extracts character stroke boundaries and tip points based on fuzzy sets and morphological
operators. The method needs neither high contrast document boundary nor paragraph formatting
information. Yin Fang et al. in [4] extracts the endpoints using morphology operators, text
baseline is obtained based on the least square method and finally RANSAC method helps in
fitting the line corresponding to the vanishing point. Richard Hartley [5] uses methods of
projective geometry to determine a pair of 2D projective transformations to be applied to the two
images in order to match the epipolar lines. Karfogiannis et al. [6] demonstrates the utilization of
a fundamental property of distorted coplanar hexagonal lattices in the image rectification
framework. Jagannathan and Jawahar [19] have used clues like document boundaries, page layout
information, organization of text and graphics components, a priori knowledge of the script or
selected symbols for removing the perspective effect and computing the frontal view needed for a
typical document image analysis.

3. OVERALL METHODOLOGY
This paper presents a method for automatic perspective correction on distorted images. The flow
of the overall methodology used to rectify the distorted image is given in Figure 1.

48
International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013

Figure 1. Flow of the overall methodology

4. IMAGE SEGMENTATION
Preprocessing is performed to segment the portion to be corrected. The desired portion is
segmented and further used in corner estimation. The steps involved are as follows:
a) The given color image is converted to gray image
b) Apply sobel operator to detect edges.
c) Segment the image by applying the dilation and erosion methods.
The above steps have been explained in subsequent sections.

4.1 Defining Binary Gradient Mask
Image gradients are used to extract information from image. The gradient of an image measures
how it is changing. It provides two pieces of information. The magnitude of the gradient tells how
quickly the image is changing, while the direction of the gradient tells us the direction in which
the image is changing most rapidly. Sobel operator has been used for edge detection. The sobel
method finds edges using the sobel approximation to the derivative. It returns edges at those
points where the gradient of I is maximum. The operator uses two 3×3 kernels which are
convolved with the original image to calculate approximations of the derivatives - one for
horizontal changes, and one for vertical. If A is the source image, Gx and Gy are two images
which at each point contain the horizontal and vertical derivative approximations, the
computations are as follows:

49
International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013

Gx = [

] *A

and

Gy = [

]* A

(1)

where * denotes the 2-dimensional convolution operation. They compute the gradient with
smoothing. At each point in the image, the resulting gradient approximations can be combined to
give the gradient magnitude, using:
G=√

(2)

Θ=atan2(Gy,Gx)

(3)

The gradient's direction is obtained by

where Θ is 0 for a vertical edge which is darker on the right side.

4.2. Retrieving the Segmented Image
Dilation and erosion techniques using the structuring elements are used to segment the image.
Assuming E to be a Euclidean space or an integer grid, A a binary image in E, and B a structuring
element.
The dilation of A by B is given by:

(4)

The erosion of A by B is given by:

(5)
Structuring element is used for probing and expanding the shapes contained in the input
image.The output of the preprocessing steps is given in Figure 2.

50
International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013

The segmented image is the input for corner estimation. In the next section there is detailed
description of estimating corners.

5. CORNER ESTIMATION
Harris corner detector is a mathematical operator that finds a variation in the gradient of a image.
It is rotation, scale and illumination variation independent. It sweeps a window w(x,y) with
displacement u in the x direction and v in the y direction and calculates the variation of intensity.
E(u,v) = ∑

(

) (

)

I(x,y)]2

(6)

where w(x,y) is the window function which is equal to 1 in window and 0 outside , I(x,y) is the
intensity at (x,y), I(x+u,y+v) is the intensity at the moved window (x+u,y+v). The large variation
in intensity depicts corners. Hence equation (6) has to be maximized, specifically the term:
∑

(

)

Let’s denote

M = ∑

Now

(

)]2

(7)

]

(8)

E(u,v) = [u v] M [ ]

(

)[

(9)

A score is calculated for each window, to determine if it can possibly contain a corner:
R = det(M)-k(trace(M))2

(10)

where det(M) = λ1 λ2; trace(M) = λ1+ λ2; λ1 and λ2 are the eigen values of M. R depends on
eigenvalues of M. A window with a score R greater than the threshold is selected and points of
local maxima of R are considered as a “corner” and are shown in Figure 3(a). Further it is
reduced to four using geometric based calculations as desired by the plane homography method.
51
International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013

The four points of interest is obtained by selecting the minimum and maximum values in the
corner points array as shown in Figure 3(b).

(a)

(b)

Figure 3. (a) All corners are detected (b) Desired corners obtained

6. PERSPECTIVE ESTIMATION
Images captured in pinhole cameras are perspective in nature. In a perspective image, objects of
similar size appear bigger when it is closer to view point and smaller when it is farther. Hence the
number of pixels to represent farther objects in the image requires lesser pixels as compared to
the number of pixels required to represent the closer objects in the image. Example: when objects
are inclined to the viewer, it goes farther away from the viewpoint. Hence, the lesser the pixels
means less information for image processing. Perspective images lead to many ambiguous results
when we tend to measure the size of the objects in the picture. The rectangular plane ABCD in
the Figure 4(a) is seen as A1B1C1D1 in a perspectively distorted case. The perspective view of the
rectangle is depicted as in the Figure 4(b). This is how the images of the objects are formed in the
image acquisition process.

(a)
Figure 4. (a) Rectangular Plane

(b)
(b) Perspective distortion

7. PERSPECTIVE RECTIFICATION
Perspective transformation turns a perspective projection into a parallel projection. Perspective
transformation is used for replacing a view volume (prism shaped volume) into a rectangular
shape. The parallel projection of transformed primitives is the same as the untransformed image
under a perspective projection.
To build a parallel projection of the image from the perspectively distorted image, the plane
homography[14] is used. The homography can be computed by knowing the relative positions of

52
International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013

the four points on the perspectively distorted image and the positions of the transformed image to
be constructed. The four corner points are required to implement the perspective transformation.
The corner method detects all the available corner points. The score calculated for each pixel in
the corner detector is based on the two eigen values of a matrix. The expression to calculate it, is
not arbitrary, but based on observations of how the expression varies with different eigen values.
Among the available corner points, the four desired corner points have to be selected. The plane
homography is interested with only four points i.e., the intersection point of the edges. It is
obtained by taking the minimum and maximum values in the corner points array.
The corner points are further sorted in clockwise direction. The four corner points C1(X1,Y1),
C2(X2,Y2), C3(X3,Y3) and C4(X4,Y4) of the rectangular object (view volume) of the perspective
image is used in the plane homography method as in Figure 5(a). The rectified image is obtained
having the corners V1(x1,y1), V2(x2,y2), V3(x3,y3) and V4(x4,y4) where (x1,y1)=(0,0),
(x2,y2)=(L,1), (x3,y3)=(L,B) and (x4,y4)=(1,B) as in Figure 5(b).

(a)

(b)
Figure 5.

Plane homography is widely used for mapping the perspective boundary to a rectangle boundary
which is a necessary step towards perspective transformation. A 2D homography is defined as a
3X3 homogeneous matrix that maps any point p(x,y) on plane π to its corresponding point p′
(x′,y′) on π’ as:
p′ = H • p
(11)
The homography is described by a homographic transformatiom when p and p′ are converted to
homogeneous coordinates.
(

)= (

)( )

(12)

Compute p′ = H • p to apply a homography H. The homography can be applied in rectifying the
perspective distortion of an image by finding the homography H, given p and p′ pairs. The
derivation can be attained by first finding the correspondence for a single point and then
extending it to four points.
Consider one point correspondence, p(x,y) → p′ (x′,y′).
53
International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013

Then equation (11) becomes
(

Solving x′ and y′:

x′ =

)=(

and

) ( )

y′ =

(13)

.
(14)

The two linear equations with respect to unknown coefficients of matrix H is as below:
ax+by+c-gxx′-hyy′-ix′=0
dx+ey+f-gxy′-hyy′-iy′=0

(15)

By extending the same to four point correspondence,
pi(xi,yi ) → p′i(x′i,y′i )

(16)

It can be generalized as
axi+byi+c-gxix′i-hyiy′i-ix′i=0
dxi+eyi+f-gxiy′i-hyiy′i-iy′i=0

(17)

The above equations can be written in matrix format as Ai . h=0 for i=1,2,3,4 where
h=[
a b c d e f g h i] T is a vector of unknown coefficients in H and Ai is a 2x9 matrix based on known
coordinates xi,yi,x′i,y′i given as
[

]

(18)

Finally equation (11) can be written as
P′ = H • P → Ai • h = 0 for i = 1,2,3,4.

(19)

where Ai is 2x9 matrix, h is a 9x1 matrix and the result is a 2x1 matrix. If all the four matrix
equations are put into one equation, it results with the following

(

).h=0

(20)

where the order of the matrix Ai is (4x2)x9 = 8x9, h is a 9x1 matrix and the result is a 8x1 matrix.
The resultant expression can be written as
Ai • h = 0

(21)

54
International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013

It implies that there are 8 linear equations and 9 unknows. Add constraint ‖h‖=1 which will
simplify to A•h=0 subject to ‖h‖=1. The solution is obtained using Singular Value Decomposition
for the 4 point correspondence between two planes.
The transform is given by the solution as explained above. The elements A1-8 can be given as

and the vectors are given as h1-8 = (
(
)T.

)T , A9 =

When the transformation is applied on perspective images, the perspective distortion is rectified
as highlighted in Figure 5.
The transformation can be summarized as follows:
a) Input the segmented image and the four corner points.
b) The projective transformation is applied on the coordinates of the input image.
c) The resultant image contains the transformed view volume of the rectified image.
The distorted and the rectified images are given in the Figure 6.

8. EXPERIMENTAL RESULTS
(a)

(b)

(a)

(b)

55
International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013

Figure 6. (a) Distorted Images

(b) Rectified Images

Figure 7.

56
International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013

9. CONCLUSION
An algorithm for rectifying perspective distortion automatically has been presented. Compared to
previous approaches, our algorithm rectifies the perspective distortion without any reference
objects or prior information about the camera parameters. The rectification may not be to the
scale. There is a possibility to rectify to the scale using geometrical manipulation. The scale
factor has to be derived before the manipulation using camera calibration technique.

REFERENCES
[1]

[2]

[3]

[4]
[5]
[6]

[7]
[8]
[9]

[10]
[11]
[12]
[13]
[14]
[15]
[16]
[17]
[18]

S.Murali, N.Avinash & Mohan S (2006) “Rectification of perspective distortion using plane
homography and clues from Hough transform”, Indian conference on Computer Vision, Graphics and
Image Processing.
Mohan S, Avinash N & Murali.S (2008) “Rectification of Perspective distortion using camera
parameters - A Perspective Geometry Based Approach”, ICGST International Journal on Graphics,
Vision and Image Processing, GVIP, Vol 8, pp.1-7.
Shijian Lu, Ben M. Chen & C. C. Ko(2005) “Perspective rectification of document images using
fuzzy set and morphological operations”, Journal on Image and Vision Computing, Vol 23, pp. 541553.
Yin Fang , Chen Deyun & Wu Rui (2011) “ A distortion correction approach on natural scene text
image, Strategic Technology “, IFOST, 6th International forum, Vol 2, pp. 1058-1061.
Richard I. Hartley (1999) “Theory and Practice of Projective Rectification”, International Journal of
Computer Vision, Vol 35, No.2, pp. 115-127.
Koufogiannis, E.T. Sgouros & N.P. Sangriotis, M.S (2012) “Perspective Rectification of Integral
Images Produced Using Hexagonal Lens Arrays” , Eighth International Conference on IIH-MSP,
pp.75-78.
R.O.Duda, P.E Hart & D.G. Stork (2000), Pattern Classification, 2nd ed. New York,Wiley – Inter
science.
Gonzalez R.C. & Woods R.E (2002) Digital Image Processing with Matlab, Prentice Hall.
Jian Liang, Daniel DeMenthon & David Doermann (2008) “Geometric Rectification of CameraCaptured Document Images”, IEEE Transactions On Pattern Analysis And Machine Intelligence, Vol.
30, No.4, pp 591-605.
Scharr & Hanno (2000) “Optimal Operators in Digital Image Processing” , Dissertation (in German).
C. Harris & M.J. Stephens (1988) “A combined corner and edge detector”, In Alvey Vision
Conference, Vol 15, pp 147–152
H. Moravec (1980) “Obstacle avoidance and navigation in the real world by a seeing robot rover”,
Technical Report CMU-RI-TR-3, Carnegie-Mellon University, Robotics Institute.
C. Schmid, R. Mohr & C. Bauckhage (2000) “Evaluation of interest point detectors”, International
Journal of Computer Vision, Vol.37, No.2, pp151–172.
Xiang Wang, Reinhard Klette & Bodo Rosenhahn (2006) “Geometric and Photometric Correction of
Projected Rectangular Pictures”, Image and Vision Computing, New Zealand.
P.F. Felzenszwalb & D.P. Huttenlocher (2004) “Efficient graph-based image segmentation”,
International Journal of Computer Vision, Vol.59, No. 2, pp. 167-181.
Maurizio Pilu (2001) “Deskewing perspectively distorted documents: An approach based on
perceptual organization”, HP laboratories, Bristol UK, No. 100.
Barnard S T(1983) “Interpreting perspective images”, Artificial Intelligence, Vol 21, pp.435-462.
Intel OpenCV Computer vision Library(C++), http://www.intel.com/research/mrl/research/opencv.

57
International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013
[19] L.Jagannathan & C V Jawahar (2005) “Perspective correction methods for Camera based document
Analysis”, Proceedings of the First International Workshop on Camera-based Document Analysis and
Recognition (CBDAR), pp 148-154.
[20] Francesco Isgro & Emanuele Trucco (1999) “On Robust Rectification for Uncalibrated Images”,
Proceedings of the 10th International Conference on Image Analysis and Processing, pp 297-302.
[21] Chris harris & Mike stephens(1988) “A combined corner and edge detector”, Proceedings of the
Fourth Alvey Vision Conference, Manchester, Vol 15, pp 147-151.
[22] Donald Hearn & Baker, Computer Graphics, PHI.
[23] F Isgro E Trucco (1999) “On Projective Rectification”, Seventh International Conference on Image
Processing and its Applications,Vol 1, pp.42-46.
[24] C. V. Jawahar (2006) “Homography Estimation from Planar Contours”, Proceedings of the Third
International Symposium on 3D Data Processing, Visualization and Transmission, pp.877-884.

58

Contenu connexe

Tendances

Analysis and Comparison of various Methods for Text Detection from Images usi...
Analysis and Comparison of various Methods for Text Detection from Images usi...Analysis and Comparison of various Methods for Text Detection from Images usi...
Analysis and Comparison of various Methods for Text Detection from Images usi...rahulmonikasharma
 
An approach to improving edge
An approach to improving edgeAn approach to improving edge
An approach to improving edgeijma
 
FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...
FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...
FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...IJCSEIT Journal
 
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON ACTIVE CONTOUR AND...
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON  ACTIVE CONTOUR AND...A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON  ACTIVE CONTOUR AND...
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON ACTIVE CONTOUR AND...acijjournal
 
A novel approach for efficient skull stripping using morphological reconstruc...
A novel approach for efficient skull stripping using morphological reconstruc...A novel approach for efficient skull stripping using morphological reconstruc...
A novel approach for efficient skull stripping using morphological reconstruc...eSAT Journals
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)ijceronline
 
Content Based Image Retrieval Approach Based on Top-Hat Transform And Modifie...
Content Based Image Retrieval Approach Based on Top-Hat Transform And Modifie...Content Based Image Retrieval Approach Based on Top-Hat Transform And Modifie...
Content Based Image Retrieval Approach Based on Top-Hat Transform And Modifie...cscpconf
 
PERFORMANCE ANALYSIS USING SINGLE SEEDED REGION GROWING ALGORITHM
PERFORMANCE ANALYSIS USING SINGLE SEEDED REGION GROWING ALGORITHMPERFORMANCE ANALYSIS USING SINGLE SEEDED REGION GROWING ALGORITHM
PERFORMANCE ANALYSIS USING SINGLE SEEDED REGION GROWING ALGORITHMAM Publications
 
Face Alignment Using Active Shape Model And Support Vector Machine
Face Alignment Using Active Shape Model And Support Vector MachineFace Alignment Using Active Shape Model And Support Vector Machine
Face Alignment Using Active Shape Model And Support Vector MachineCSCJournals
 
IRJET- Extract Circular Object By Tracing Region Boundary and using Circulari...
IRJET- Extract Circular Object By Tracing Region Boundary and using Circulari...IRJET- Extract Circular Object By Tracing Region Boundary and using Circulari...
IRJET- Extract Circular Object By Tracing Region Boundary and using Circulari...IRJET Journal
 
An efficient feature extraction method with pseudo zernike moment for facial ...
An efficient feature extraction method with pseudo zernike moment for facial ...An efficient feature extraction method with pseudo zernike moment for facial ...
An efficient feature extraction method with pseudo zernike moment for facial ...ijcsity
 
Segmentation of medical images using metric topology – a region growing approach
Segmentation of medical images using metric topology – a region growing approachSegmentation of medical images using metric topology – a region growing approach
Segmentation of medical images using metric topology – a region growing approachIjrdt Journal
 
47549379 paper-on-image-processing
47549379 paper-on-image-processing47549379 paper-on-image-processing
47549379 paper-on-image-processingmaisali4
 
Solving the Pose Ambiguity via a Simple Concentric Circle Constraint
Solving the Pose Ambiguity via a Simple Concentric Circle ConstraintSolving the Pose Ambiguity via a Simple Concentric Circle Constraint
Solving the Pose Ambiguity via a Simple Concentric Circle ConstraintDr. Amarjeet Singh
 
LOCAL REGION PSEUDO-ZERNIKE MOMENT- BASED FEATURE EXTRACTION FOR FACIAL RECOG...
LOCAL REGION PSEUDO-ZERNIKE MOMENT- BASED FEATURE EXTRACTION FOR FACIAL RECOG...LOCAL REGION PSEUDO-ZERNIKE MOMENT- BASED FEATURE EXTRACTION FOR FACIAL RECOG...
LOCAL REGION PSEUDO-ZERNIKE MOMENT- BASED FEATURE EXTRACTION FOR FACIAL RECOG...aciijournal
 
Extraction of texture features by using gabor filter in wheat crop disease de...
Extraction of texture features by using gabor filter in wheat crop disease de...Extraction of texture features by using gabor filter in wheat crop disease de...
Extraction of texture features by using gabor filter in wheat crop disease de...eSAT Journals
 
AUTOMATED IMAGE MOSAICING SYSTEM WITH ANALYSIS OVER VARIOUS IMAGE NOISE
AUTOMATED IMAGE MOSAICING SYSTEM WITH ANALYSIS OVER VARIOUS IMAGE NOISEAUTOMATED IMAGE MOSAICING SYSTEM WITH ANALYSIS OVER VARIOUS IMAGE NOISE
AUTOMATED IMAGE MOSAICING SYSTEM WITH ANALYSIS OVER VARIOUS IMAGE NOISEijcsa
 

Tendances (19)

Analysis and Comparison of various Methods for Text Detection from Images usi...
Analysis and Comparison of various Methods for Text Detection from Images usi...Analysis and Comparison of various Methods for Text Detection from Images usi...
Analysis and Comparison of various Methods for Text Detection from Images usi...
 
An approach to improving edge
An approach to improving edgeAn approach to improving edge
An approach to improving edge
 
FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...
FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...
FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...
 
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON ACTIVE CONTOUR AND...
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON  ACTIVE CONTOUR AND...A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON  ACTIVE CONTOUR AND...
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON ACTIVE CONTOUR AND...
 
A novel approach for efficient skull stripping using morphological reconstruc...
A novel approach for efficient skull stripping using morphological reconstruc...A novel approach for efficient skull stripping using morphological reconstruc...
A novel approach for efficient skull stripping using morphological reconstruc...
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
F43053237
F43053237F43053237
F43053237
 
Content Based Image Retrieval Approach Based on Top-Hat Transform And Modifie...
Content Based Image Retrieval Approach Based on Top-Hat Transform And Modifie...Content Based Image Retrieval Approach Based on Top-Hat Transform And Modifie...
Content Based Image Retrieval Approach Based on Top-Hat Transform And Modifie...
 
PERFORMANCE ANALYSIS USING SINGLE SEEDED REGION GROWING ALGORITHM
PERFORMANCE ANALYSIS USING SINGLE SEEDED REGION GROWING ALGORITHMPERFORMANCE ANALYSIS USING SINGLE SEEDED REGION GROWING ALGORITHM
PERFORMANCE ANALYSIS USING SINGLE SEEDED REGION GROWING ALGORITHM
 
Id105
Id105Id105
Id105
 
Face Alignment Using Active Shape Model And Support Vector Machine
Face Alignment Using Active Shape Model And Support Vector MachineFace Alignment Using Active Shape Model And Support Vector Machine
Face Alignment Using Active Shape Model And Support Vector Machine
 
IRJET- Extract Circular Object By Tracing Region Boundary and using Circulari...
IRJET- Extract Circular Object By Tracing Region Boundary and using Circulari...IRJET- Extract Circular Object By Tracing Region Boundary and using Circulari...
IRJET- Extract Circular Object By Tracing Region Boundary and using Circulari...
 
An efficient feature extraction method with pseudo zernike moment for facial ...
An efficient feature extraction method with pseudo zernike moment for facial ...An efficient feature extraction method with pseudo zernike moment for facial ...
An efficient feature extraction method with pseudo zernike moment for facial ...
 
Segmentation of medical images using metric topology – a region growing approach
Segmentation of medical images using metric topology – a region growing approachSegmentation of medical images using metric topology – a region growing approach
Segmentation of medical images using metric topology – a region growing approach
 
47549379 paper-on-image-processing
47549379 paper-on-image-processing47549379 paper-on-image-processing
47549379 paper-on-image-processing
 
Solving the Pose Ambiguity via a Simple Concentric Circle Constraint
Solving the Pose Ambiguity via a Simple Concentric Circle ConstraintSolving the Pose Ambiguity via a Simple Concentric Circle Constraint
Solving the Pose Ambiguity via a Simple Concentric Circle Constraint
 
LOCAL REGION PSEUDO-ZERNIKE MOMENT- BASED FEATURE EXTRACTION FOR FACIAL RECOG...
LOCAL REGION PSEUDO-ZERNIKE MOMENT- BASED FEATURE EXTRACTION FOR FACIAL RECOG...LOCAL REGION PSEUDO-ZERNIKE MOMENT- BASED FEATURE EXTRACTION FOR FACIAL RECOG...
LOCAL REGION PSEUDO-ZERNIKE MOMENT- BASED FEATURE EXTRACTION FOR FACIAL RECOG...
 
Extraction of texture features by using gabor filter in wheat crop disease de...
Extraction of texture features by using gabor filter in wheat crop disease de...Extraction of texture features by using gabor filter in wheat crop disease de...
Extraction of texture features by using gabor filter in wheat crop disease de...
 
AUTOMATED IMAGE MOSAICING SYSTEM WITH ANALYSIS OVER VARIOUS IMAGE NOISE
AUTOMATED IMAGE MOSAICING SYSTEM WITH ANALYSIS OVER VARIOUS IMAGE NOISEAUTOMATED IMAGE MOSAICING SYSTEM WITH ANALYSIS OVER VARIOUS IMAGE NOISE
AUTOMATED IMAGE MOSAICING SYSTEM WITH ANALYSIS OVER VARIOUS IMAGE NOISE
 

En vedette

Henri wallon - AFETIVIDADE
Henri wallon - AFETIVIDADEHenri wallon - AFETIVIDADE
Henri wallon - AFETIVIDADEAclecio Dantas
 
Ramas del Derecho Expo. Informática 3
Ramas del Derecho Expo. Informática 3Ramas del Derecho Expo. Informática 3
Ramas del Derecho Expo. Informática 3eduardolbc
 
Instrumentos de medición eléctrica
Instrumentos de medición eléctricaInstrumentos de medición eléctrica
Instrumentos de medición eléctricaeileem de bracho
 
Cinematica del trauma
Cinematica del traumaCinematica del trauma
Cinematica del traumalepherchaun
 
Gestión del conocimiento. Las implicancias de su implementación sobre el fact...
Gestión del conocimiento. Las implicancias de su implementación sobre el fact...Gestión del conocimiento. Las implicancias de su implementación sobre el fact...
Gestión del conocimiento. Las implicancias de su implementación sobre el fact...Gustavo A. Vega Gallardo
 
Internet : la connaissance parfaite ?
Internet : la connaissance parfaite ?Internet : la connaissance parfaite ?
Internet : la connaissance parfaite ?poiroux
 
Solidos de revolucion
Solidos de revolucionSolidos de revolucion
Solidos de revolucionPANPARRA
 
Tecnicas de-negociacion-1195778651278726-5
Tecnicas de-negociacion-1195778651278726-5Tecnicas de-negociacion-1195778651278726-5
Tecnicas de-negociacion-1195778651278726-5Byron Miranda
 
Guia 1. Identificar soluciones en la atención al cliente
Guia 1. Identificar soluciones en la atención al clienteGuia 1. Identificar soluciones en la atención al cliente
Guia 1. Identificar soluciones en la atención al clienteCamilo Sandoval
 
Solidos de revolucion
Solidos de revolucionSolidos de revolucion
Solidos de revolucionPANPARRA
 
Partir des usages professionnels pour analyser les enjeux de l'e réputation -...
Partir des usages professionnels pour analyser les enjeux de l'e réputation -...Partir des usages professionnels pour analyser les enjeux de l'e réputation -...
Partir des usages professionnels pour analyser les enjeux de l'e réputation -...JCDomenget
 
Autoformacion portafolio #
Autoformacion portafolio #Autoformacion portafolio #
Autoformacion portafolio #Diana-Naicipe
 
Adm. Merc Pesq. Merc. Mktpassos
Adm. Merc Pesq. Merc.   MktpassosAdm. Merc Pesq. Merc.   Mktpassos
Adm. Merc Pesq. Merc. MktpassosIvan Passos
 
LA TAREA EDUCATIVA DE LA IGLESIA - Lección 08 {GLOBAL UNIVERSITY}
LA TAREA EDUCATIVA DE LA IGLESIA - Lección 08 {GLOBAL UNIVERSITY}LA TAREA EDUCATIVA DE LA IGLESIA - Lección 08 {GLOBAL UNIVERSITY}
LA TAREA EDUCATIVA DE LA IGLESIA - Lección 08 {GLOBAL UNIVERSITY}Mujeres Migarem Internacional
 

En vedette (20)

Henri wallon - AFETIVIDADE
Henri wallon - AFETIVIDADEHenri wallon - AFETIVIDADE
Henri wallon - AFETIVIDADE
 
Ramas del Derecho Expo. Informática 3
Ramas del Derecho Expo. Informática 3Ramas del Derecho Expo. Informática 3
Ramas del Derecho Expo. Informática 3
 
Manual uso Polímetro.
Manual uso Polímetro.Manual uso Polímetro.
Manual uso Polímetro.
 
Instrumentos de medición eléctrica
Instrumentos de medición eléctricaInstrumentos de medición eléctrica
Instrumentos de medición eléctrica
 
Cinematica del trauma
Cinematica del traumaCinematica del trauma
Cinematica del trauma
 
Gestión del conocimiento. Las implicancias de su implementación sobre el fact...
Gestión del conocimiento. Las implicancias de su implementación sobre el fact...Gestión del conocimiento. Las implicancias de su implementación sobre el fact...
Gestión del conocimiento. Las implicancias de su implementación sobre el fact...
 
Internet : la connaissance parfaite ?
Internet : la connaissance parfaite ?Internet : la connaissance parfaite ?
Internet : la connaissance parfaite ?
 
Identity Theft: The Other You
Identity Theft: The Other YouIdentity Theft: The Other You
Identity Theft: The Other You
 
Solidos de revolucion
Solidos de revolucionSolidos de revolucion
Solidos de revolucion
 
Teoria de telecomunicaciones i cap1y2
Teoria de telecomunicaciones i cap1y2Teoria de telecomunicaciones i cap1y2
Teoria de telecomunicaciones i cap1y2
 
Tecnicas de-negociacion-1195778651278726-5
Tecnicas de-negociacion-1195778651278726-5Tecnicas de-negociacion-1195778651278726-5
Tecnicas de-negociacion-1195778651278726-5
 
Guia 1. Identificar soluciones en la atención al cliente
Guia 1. Identificar soluciones en la atención al clienteGuia 1. Identificar soluciones en la atención al cliente
Guia 1. Identificar soluciones en la atención al cliente
 
Dec2685 1999
Dec2685 1999Dec2685 1999
Dec2685 1999
 
Ley federal de responsabilidades de los servidores publicos
Ley federal de responsabilidades de los servidores publicosLey federal de responsabilidades de los servidores publicos
Ley federal de responsabilidades de los servidores publicos
 
Solidos de revolucion
Solidos de revolucionSolidos de revolucion
Solidos de revolucion
 
Partir des usages professionnels pour analyser les enjeux de l'e réputation -...
Partir des usages professionnels pour analyser les enjeux de l'e réputation -...Partir des usages professionnels pour analyser les enjeux de l'e réputation -...
Partir des usages professionnels pour analyser les enjeux de l'e réputation -...
 
Autoformacion portafolio #
Autoformacion portafolio #Autoformacion portafolio #
Autoformacion portafolio #
 
Grafos
GrafosGrafos
Grafos
 
Adm. Merc Pesq. Merc. Mktpassos
Adm. Merc Pesq. Merc.   MktpassosAdm. Merc Pesq. Merc.   Mktpassos
Adm. Merc Pesq. Merc. Mktpassos
 
LA TAREA EDUCATIVA DE LA IGLESIA - Lección 08 {GLOBAL UNIVERSITY}
LA TAREA EDUCATIVA DE LA IGLESIA - Lección 08 {GLOBAL UNIVERSITY}LA TAREA EDUCATIVA DE LA IGLESIA - Lección 08 {GLOBAL UNIVERSITY}
LA TAREA EDUCATIVA DE LA IGLESIA - Lección 08 {GLOBAL UNIVERSITY}
 

Similaire à Automatic rectification of perspective distortion from a single image using plane homography

V.KARTHIKEYAN PUBLISHED ARTICLE 1
V.KARTHIKEYAN PUBLISHED ARTICLE 1V.KARTHIKEYAN PUBLISHED ARTICLE 1
V.KARTHIKEYAN PUBLISHED ARTICLE 1KARTHIKEYAN V
 
Stereo Vision Distance Estimation Employing Canny Edge Detector with Interpol...
Stereo Vision Distance Estimation Employing Canny Edge Detector with Interpol...Stereo Vision Distance Estimation Employing Canny Edge Detector with Interpol...
Stereo Vision Distance Estimation Employing Canny Edge Detector with Interpol...ZaidHussein6
 
An automatic algorithm for object recognition and detection based on asift ke...
An automatic algorithm for object recognition and detection based on asift ke...An automatic algorithm for object recognition and detection based on asift ke...
An automatic algorithm for object recognition and detection based on asift ke...Kunal Kishor Nirala
 
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...Vladimir Kulyukin
 
Matching algorithm performance analysis for autocalibration method of stereo ...
Matching algorithm performance analysis for autocalibration method of stereo ...Matching algorithm performance analysis for autocalibration method of stereo ...
Matching algorithm performance analysis for autocalibration method of stereo ...TELKOMNIKA JOURNAL
 
Leader Follower Formation Control of Ground Vehicles Using Dynamic Pixel Coun...
Leader Follower Formation Control of Ground Vehicles Using Dynamic Pixel Coun...Leader Follower Formation Control of Ground Vehicles Using Dynamic Pixel Coun...
Leader Follower Formation Control of Ground Vehicles Using Dynamic Pixel Coun...ijma
 
A03501001006
A03501001006A03501001006
A03501001006theijes
 
Multiple Ant Colony Optimizations for Stereo Matching
Multiple Ant Colony Optimizations for Stereo MatchingMultiple Ant Colony Optimizations for Stereo Matching
Multiple Ant Colony Optimizations for Stereo MatchingCSCJournals
 
Vision based non-invasive tool for facial swelling assessment
Vision based non-invasive tool for facial swelling assessment Vision based non-invasive tool for facial swelling assessment
Vision based non-invasive tool for facial swelling assessment University of Moratuwa
 
APPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLING
APPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLINGAPPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLING
APPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLINGsipij
 
3D Reconstruction from Multiple uncalibrated 2D Images of an Object
3D Reconstruction from Multiple uncalibrated 2D Images of an Object3D Reconstruction from Multiple uncalibrated 2D Images of an Object
3D Reconstruction from Multiple uncalibrated 2D Images of an ObjectAnkur Tyagi
 
A novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentationA novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentationeSAT Publishing House
 
A novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentationA novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentationeSAT Journals
 
An Assessment of Image Matching Algorithms in Depth Estimation
An Assessment of Image Matching Algorithms in Depth EstimationAn Assessment of Image Matching Algorithms in Depth Estimation
An Assessment of Image Matching Algorithms in Depth EstimationCSCJournals
 
Content Based Image Retrieval using Color Boosted Salient Points and Shape fe...
Content Based Image Retrieval using Color Boosted Salient Points and Shape fe...Content Based Image Retrieval using Color Boosted Salient Points and Shape fe...
Content Based Image Retrieval using Color Boosted Salient Points and Shape fe...CSCJournals
 
Image Segmentation Using Pairwise Correlation Clustering
Image Segmentation Using Pairwise Correlation ClusteringImage Segmentation Using Pairwise Correlation Clustering
Image Segmentation Using Pairwise Correlation ClusteringIJERA Editor
 
SHORTCOMINGS AND FLAWS IN THE MATHEMATICAL DERIVATION OF THE FUNDAMENTAL MATR...
SHORTCOMINGS AND FLAWS IN THE MATHEMATICAL DERIVATION OF THE FUNDAMENTAL MATR...SHORTCOMINGS AND FLAWS IN THE MATHEMATICAL DERIVATION OF THE FUNDAMENTAL MATR...
SHORTCOMINGS AND FLAWS IN THE MATHEMATICAL DERIVATION OF THE FUNDAMENTAL MATR...ijcsit
 
Image fusion using nsct denoising and target extraction for visual surveillance
Image fusion using nsct denoising and target extraction for visual surveillanceImage fusion using nsct denoising and target extraction for visual surveillance
Image fusion using nsct denoising and target extraction for visual surveillanceeSAT Publishing House
 

Similaire à Automatic rectification of perspective distortion from a single image using plane homography (20)

V.KARTHIKEYAN PUBLISHED ARTICLE 1
V.KARTHIKEYAN PUBLISHED ARTICLE 1V.KARTHIKEYAN PUBLISHED ARTICLE 1
V.KARTHIKEYAN PUBLISHED ARTICLE 1
 
Stereo Vision Distance Estimation Employing Canny Edge Detector with Interpol...
Stereo Vision Distance Estimation Employing Canny Edge Detector with Interpol...Stereo Vision Distance Estimation Employing Canny Edge Detector with Interpol...
Stereo Vision Distance Estimation Employing Canny Edge Detector with Interpol...
 
F045033337
F045033337F045033337
F045033337
 
An automatic algorithm for object recognition and detection based on asift ke...
An automatic algorithm for object recognition and detection based on asift ke...An automatic algorithm for object recognition and detection based on asift ke...
An automatic algorithm for object recognition and detection based on asift ke...
 
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...
Image Blur Detection with 2D Haar Wavelet Transform and Its Effect on Skewed ...
 
Matching algorithm performance analysis for autocalibration method of stereo ...
Matching algorithm performance analysis for autocalibration method of stereo ...Matching algorithm performance analysis for autocalibration method of stereo ...
Matching algorithm performance analysis for autocalibration method of stereo ...
 
Leader Follower Formation Control of Ground Vehicles Using Dynamic Pixel Coun...
Leader Follower Formation Control of Ground Vehicles Using Dynamic Pixel Coun...Leader Follower Formation Control of Ground Vehicles Using Dynamic Pixel Coun...
Leader Follower Formation Control of Ground Vehicles Using Dynamic Pixel Coun...
 
A03501001006
A03501001006A03501001006
A03501001006
 
Multiple Ant Colony Optimizations for Stereo Matching
Multiple Ant Colony Optimizations for Stereo MatchingMultiple Ant Colony Optimizations for Stereo Matching
Multiple Ant Colony Optimizations for Stereo Matching
 
Vision based non-invasive tool for facial swelling assessment
Vision based non-invasive tool for facial swelling assessment Vision based non-invasive tool for facial swelling assessment
Vision based non-invasive tool for facial swelling assessment
 
APPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLING
APPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLINGAPPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLING
APPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLING
 
Ed34785790
Ed34785790Ed34785790
Ed34785790
 
3D Reconstruction from Multiple uncalibrated 2D Images of an Object
3D Reconstruction from Multiple uncalibrated 2D Images of an Object3D Reconstruction from Multiple uncalibrated 2D Images of an Object
3D Reconstruction from Multiple uncalibrated 2D Images of an Object
 
A novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentationA novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentation
 
A novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentationA novel predicate for active region merging in automatic image segmentation
A novel predicate for active region merging in automatic image segmentation
 
An Assessment of Image Matching Algorithms in Depth Estimation
An Assessment of Image Matching Algorithms in Depth EstimationAn Assessment of Image Matching Algorithms in Depth Estimation
An Assessment of Image Matching Algorithms in Depth Estimation
 
Content Based Image Retrieval using Color Boosted Salient Points and Shape fe...
Content Based Image Retrieval using Color Boosted Salient Points and Shape fe...Content Based Image Retrieval using Color Boosted Salient Points and Shape fe...
Content Based Image Retrieval using Color Boosted Salient Points and Shape fe...
 
Image Segmentation Using Pairwise Correlation Clustering
Image Segmentation Using Pairwise Correlation ClusteringImage Segmentation Using Pairwise Correlation Clustering
Image Segmentation Using Pairwise Correlation Clustering
 
SHORTCOMINGS AND FLAWS IN THE MATHEMATICAL DERIVATION OF THE FUNDAMENTAL MATR...
SHORTCOMINGS AND FLAWS IN THE MATHEMATICAL DERIVATION OF THE FUNDAMENTAL MATR...SHORTCOMINGS AND FLAWS IN THE MATHEMATICAL DERIVATION OF THE FUNDAMENTAL MATR...
SHORTCOMINGS AND FLAWS IN THE MATHEMATICAL DERIVATION OF THE FUNDAMENTAL MATR...
 
Image fusion using nsct denoising and target extraction for visual surveillance
Image fusion using nsct denoising and target extraction for visual surveillanceImage fusion using nsct denoising and target extraction for visual surveillance
Image fusion using nsct denoising and target extraction for visual surveillance
 

Dernier

08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 

Dernier (20)

08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 

Automatic rectification of perspective distortion from a single image using plane homography

  • 1. International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013 AUTOMATIC RECTIFICATION OF PERSPECTIVE DISTORTION FROM A SINGLE IMAGE USING PLANE HOMOGRAPHY Geetha Kiran A1 and Murali S2 1 Malnad College of Engineering, Hassan, Karnataka, India Maharaja Institute of Technology, Mysore, Karnataka, India 2 ABSTRACT Perspective distortion occurs due to the perspective projection of 3D scene on a 2D surface. Correcting the distortion of a single image without losing any desired information is one of the challenging task in the field of Computer Vision. We consider the problem of estimating perspective distortion from a single still image of an unstructured environment and to make perspective correction which is both quantitatively accurate as well as visually pleasing. Corners are detected based on the orientation of the image. A method based on plane homography and transformation is used to make perspective correction. The algorithm infers frontier information directly from the images, without any reference objects or prior knowledge of the camera parameters. The frontiers are detected using geometric context based segmentation. The goal of this paper is to present a framework providing fully automatic and fast perspective correction. KEYWORDS Sobel Operator, Corner detection, Segmentation, Plane homography, Perspective Rectification. 1. INTRODUCTION Images are perspective in nature. Today’s world requires the perspective rectified image for applications like image based rendering and metrology from single view. The applications require parallel view image for photorealistic results. Much work has been done towards the rectification of perspective distortion depicted in document images and also based on multiple images. Recent focus has been on recovery based on single image, a problem that is more challenging than the multiple- view variety and has good potential applications in image based rendering, image mosaicing, machine vision, 3D Reconstruction. Perspective is the projection of actual vision. Many of the applications would need parallel projection because parallel projection facilitates easy extraction and application of the regularities. However they are not parallel in a perspective projection hence their identification and application is of much importance. This leads to rectification of perspective distortion. DOI:10.5121/ijcsa.2013.3506 47
  • 2. International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013 The paper is organized as follows. In section 2 a review on the related works is highlighted. In section 3 the overall methodology is viewed through a flowchart. In section 4 the preprocessing steps which further leads to image segmentation are addressed. In section 5 the methodology used to estimate the corners is discussed. In section 6 an overview of the perspective estimation is addressed. In section 7 the details of the perspective rectification is given. Experimental results in section 8 with conclusion in section 9 are to follow. 2. LITERATURE SURVEY The literature directly relevant to the proposed research, are highlighted here. Researchers have proposed different methods to rectify perspective distortion from a single image. Authors have used perspective cues, typically vanishing points, to predict the depth information and also cues from hough transform[1]. Murali S et al.[2] have proposed a method based on perspective transformation and plane homography to rectify the perspective distortion in an image to actual scale with known camera parameters. Jian Liang et al. [9] estimates shape from texture flow information obtained directly from the image without requiring additional metric data. Shijian et al. [3] extracts character stroke boundaries and tip points based on fuzzy sets and morphological operators. The method needs neither high contrast document boundary nor paragraph formatting information. Yin Fang et al. in [4] extracts the endpoints using morphology operators, text baseline is obtained based on the least square method and finally RANSAC method helps in fitting the line corresponding to the vanishing point. Richard Hartley [5] uses methods of projective geometry to determine a pair of 2D projective transformations to be applied to the two images in order to match the epipolar lines. Karfogiannis et al. [6] demonstrates the utilization of a fundamental property of distorted coplanar hexagonal lattices in the image rectification framework. Jagannathan and Jawahar [19] have used clues like document boundaries, page layout information, organization of text and graphics components, a priori knowledge of the script or selected symbols for removing the perspective effect and computing the frontal view needed for a typical document image analysis. 3. OVERALL METHODOLOGY This paper presents a method for automatic perspective correction on distorted images. The flow of the overall methodology used to rectify the distorted image is given in Figure 1. 48
  • 3. International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013 Figure 1. Flow of the overall methodology 4. IMAGE SEGMENTATION Preprocessing is performed to segment the portion to be corrected. The desired portion is segmented and further used in corner estimation. The steps involved are as follows: a) The given color image is converted to gray image b) Apply sobel operator to detect edges. c) Segment the image by applying the dilation and erosion methods. The above steps have been explained in subsequent sections. 4.1 Defining Binary Gradient Mask Image gradients are used to extract information from image. The gradient of an image measures how it is changing. It provides two pieces of information. The magnitude of the gradient tells how quickly the image is changing, while the direction of the gradient tells us the direction in which the image is changing most rapidly. Sobel operator has been used for edge detection. The sobel method finds edges using the sobel approximation to the derivative. It returns edges at those points where the gradient of I is maximum. The operator uses two 3×3 kernels which are convolved with the original image to calculate approximations of the derivatives - one for horizontal changes, and one for vertical. If A is the source image, Gx and Gy are two images which at each point contain the horizontal and vertical derivative approximations, the computations are as follows: 49
  • 4. International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013 Gx = [ ] *A and Gy = [ ]* A (1) where * denotes the 2-dimensional convolution operation. They compute the gradient with smoothing. At each point in the image, the resulting gradient approximations can be combined to give the gradient magnitude, using: G=√ (2) Θ=atan2(Gy,Gx) (3) The gradient's direction is obtained by where Θ is 0 for a vertical edge which is darker on the right side. 4.2. Retrieving the Segmented Image Dilation and erosion techniques using the structuring elements are used to segment the image. Assuming E to be a Euclidean space or an integer grid, A a binary image in E, and B a structuring element. The dilation of A by B is given by: (4) The erosion of A by B is given by: (5) Structuring element is used for probing and expanding the shapes contained in the input image.The output of the preprocessing steps is given in Figure 2. 50
  • 5. International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013 The segmented image is the input for corner estimation. In the next section there is detailed description of estimating corners. 5. CORNER ESTIMATION Harris corner detector is a mathematical operator that finds a variation in the gradient of a image. It is rotation, scale and illumination variation independent. It sweeps a window w(x,y) with displacement u in the x direction and v in the y direction and calculates the variation of intensity. E(u,v) = ∑ ( ) ( ) I(x,y)]2 (6) where w(x,y) is the window function which is equal to 1 in window and 0 outside , I(x,y) is the intensity at (x,y), I(x+u,y+v) is the intensity at the moved window (x+u,y+v). The large variation in intensity depicts corners. Hence equation (6) has to be maximized, specifically the term: ∑ ( ) Let’s denote M = ∑ Now ( )]2 (7) ] (8) E(u,v) = [u v] M [ ] ( )[ (9) A score is calculated for each window, to determine if it can possibly contain a corner: R = det(M)-k(trace(M))2 (10) where det(M) = λ1 λ2; trace(M) = λ1+ λ2; λ1 and λ2 are the eigen values of M. R depends on eigenvalues of M. A window with a score R greater than the threshold is selected and points of local maxima of R are considered as a “corner” and are shown in Figure 3(a). Further it is reduced to four using geometric based calculations as desired by the plane homography method. 51
  • 6. International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013 The four points of interest is obtained by selecting the minimum and maximum values in the corner points array as shown in Figure 3(b). (a) (b) Figure 3. (a) All corners are detected (b) Desired corners obtained 6. PERSPECTIVE ESTIMATION Images captured in pinhole cameras are perspective in nature. In a perspective image, objects of similar size appear bigger when it is closer to view point and smaller when it is farther. Hence the number of pixels to represent farther objects in the image requires lesser pixels as compared to the number of pixels required to represent the closer objects in the image. Example: when objects are inclined to the viewer, it goes farther away from the viewpoint. Hence, the lesser the pixels means less information for image processing. Perspective images lead to many ambiguous results when we tend to measure the size of the objects in the picture. The rectangular plane ABCD in the Figure 4(a) is seen as A1B1C1D1 in a perspectively distorted case. The perspective view of the rectangle is depicted as in the Figure 4(b). This is how the images of the objects are formed in the image acquisition process. (a) Figure 4. (a) Rectangular Plane (b) (b) Perspective distortion 7. PERSPECTIVE RECTIFICATION Perspective transformation turns a perspective projection into a parallel projection. Perspective transformation is used for replacing a view volume (prism shaped volume) into a rectangular shape. The parallel projection of transformed primitives is the same as the untransformed image under a perspective projection. To build a parallel projection of the image from the perspectively distorted image, the plane homography[14] is used. The homography can be computed by knowing the relative positions of 52
  • 7. International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013 the four points on the perspectively distorted image and the positions of the transformed image to be constructed. The four corner points are required to implement the perspective transformation. The corner method detects all the available corner points. The score calculated for each pixel in the corner detector is based on the two eigen values of a matrix. The expression to calculate it, is not arbitrary, but based on observations of how the expression varies with different eigen values. Among the available corner points, the four desired corner points have to be selected. The plane homography is interested with only four points i.e., the intersection point of the edges. It is obtained by taking the minimum and maximum values in the corner points array. The corner points are further sorted in clockwise direction. The four corner points C1(X1,Y1), C2(X2,Y2), C3(X3,Y3) and C4(X4,Y4) of the rectangular object (view volume) of the perspective image is used in the plane homography method as in Figure 5(a). The rectified image is obtained having the corners V1(x1,y1), V2(x2,y2), V3(x3,y3) and V4(x4,y4) where (x1,y1)=(0,0), (x2,y2)=(L,1), (x3,y3)=(L,B) and (x4,y4)=(1,B) as in Figure 5(b). (a) (b) Figure 5. Plane homography is widely used for mapping the perspective boundary to a rectangle boundary which is a necessary step towards perspective transformation. A 2D homography is defined as a 3X3 homogeneous matrix that maps any point p(x,y) on plane π to its corresponding point p′ (x′,y′) on π’ as: p′ = H • p (11) The homography is described by a homographic transformatiom when p and p′ are converted to homogeneous coordinates. ( )= ( )( ) (12) Compute p′ = H • p to apply a homography H. The homography can be applied in rectifying the perspective distortion of an image by finding the homography H, given p and p′ pairs. The derivation can be attained by first finding the correspondence for a single point and then extending it to four points. Consider one point correspondence, p(x,y) → p′ (x′,y′). 53
  • 8. International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013 Then equation (11) becomes ( Solving x′ and y′: x′ = )=( and ) ( ) y′ = (13) . (14) The two linear equations with respect to unknown coefficients of matrix H is as below: ax+by+c-gxx′-hyy′-ix′=0 dx+ey+f-gxy′-hyy′-iy′=0 (15) By extending the same to four point correspondence, pi(xi,yi ) → p′i(x′i,y′i ) (16) It can be generalized as axi+byi+c-gxix′i-hyiy′i-ix′i=0 dxi+eyi+f-gxiy′i-hyiy′i-iy′i=0 (17) The above equations can be written in matrix format as Ai . h=0 for i=1,2,3,4 where h=[ a b c d e f g h i] T is a vector of unknown coefficients in H and Ai is a 2x9 matrix based on known coordinates xi,yi,x′i,y′i given as [ ] (18) Finally equation (11) can be written as P′ = H • P → Ai • h = 0 for i = 1,2,3,4. (19) where Ai is 2x9 matrix, h is a 9x1 matrix and the result is a 2x1 matrix. If all the four matrix equations are put into one equation, it results with the following ( ).h=0 (20) where the order of the matrix Ai is (4x2)x9 = 8x9, h is a 9x1 matrix and the result is a 8x1 matrix. The resultant expression can be written as Ai • h = 0 (21) 54
  • 9. International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013 It implies that there are 8 linear equations and 9 unknows. Add constraint ‖h‖=1 which will simplify to A•h=0 subject to ‖h‖=1. The solution is obtained using Singular Value Decomposition for the 4 point correspondence between two planes. The transform is given by the solution as explained above. The elements A1-8 can be given as and the vectors are given as h1-8 = ( ( )T. )T , A9 = When the transformation is applied on perspective images, the perspective distortion is rectified as highlighted in Figure 5. The transformation can be summarized as follows: a) Input the segmented image and the four corner points. b) The projective transformation is applied on the coordinates of the input image. c) The resultant image contains the transformed view volume of the rectified image. The distorted and the rectified images are given in the Figure 6. 8. EXPERIMENTAL RESULTS (a) (b) (a) (b) 55
  • 10. International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013 Figure 6. (a) Distorted Images (b) Rectified Images Figure 7. 56
  • 11. International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013 9. CONCLUSION An algorithm for rectifying perspective distortion automatically has been presented. Compared to previous approaches, our algorithm rectifies the perspective distortion without any reference objects or prior information about the camera parameters. The rectification may not be to the scale. There is a possibility to rectify to the scale using geometrical manipulation. The scale factor has to be derived before the manipulation using camera calibration technique. REFERENCES [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] S.Murali, N.Avinash & Mohan S (2006) “Rectification of perspective distortion using plane homography and clues from Hough transform”, Indian conference on Computer Vision, Graphics and Image Processing. Mohan S, Avinash N & Murali.S (2008) “Rectification of Perspective distortion using camera parameters - A Perspective Geometry Based Approach”, ICGST International Journal on Graphics, Vision and Image Processing, GVIP, Vol 8, pp.1-7. Shijian Lu, Ben M. Chen & C. C. Ko(2005) “Perspective rectification of document images using fuzzy set and morphological operations”, Journal on Image and Vision Computing, Vol 23, pp. 541553. Yin Fang , Chen Deyun & Wu Rui (2011) “ A distortion correction approach on natural scene text image, Strategic Technology “, IFOST, 6th International forum, Vol 2, pp. 1058-1061. Richard I. Hartley (1999) “Theory and Practice of Projective Rectification”, International Journal of Computer Vision, Vol 35, No.2, pp. 115-127. Koufogiannis, E.T. Sgouros & N.P. Sangriotis, M.S (2012) “Perspective Rectification of Integral Images Produced Using Hexagonal Lens Arrays” , Eighth International Conference on IIH-MSP, pp.75-78. R.O.Duda, P.E Hart & D.G. Stork (2000), Pattern Classification, 2nd ed. New York,Wiley – Inter science. Gonzalez R.C. & Woods R.E (2002) Digital Image Processing with Matlab, Prentice Hall. Jian Liang, Daniel DeMenthon & David Doermann (2008) “Geometric Rectification of CameraCaptured Document Images”, IEEE Transactions On Pattern Analysis And Machine Intelligence, Vol. 30, No.4, pp 591-605. Scharr & Hanno (2000) “Optimal Operators in Digital Image Processing” , Dissertation (in German). C. Harris & M.J. Stephens (1988) “A combined corner and edge detector”, In Alvey Vision Conference, Vol 15, pp 147–152 H. Moravec (1980) “Obstacle avoidance and navigation in the real world by a seeing robot rover”, Technical Report CMU-RI-TR-3, Carnegie-Mellon University, Robotics Institute. C. Schmid, R. Mohr & C. Bauckhage (2000) “Evaluation of interest point detectors”, International Journal of Computer Vision, Vol.37, No.2, pp151–172. Xiang Wang, Reinhard Klette & Bodo Rosenhahn (2006) “Geometric and Photometric Correction of Projected Rectangular Pictures”, Image and Vision Computing, New Zealand. P.F. Felzenszwalb & D.P. Huttenlocher (2004) “Efficient graph-based image segmentation”, International Journal of Computer Vision, Vol.59, No. 2, pp. 167-181. Maurizio Pilu (2001) “Deskewing perspectively distorted documents: An approach based on perceptual organization”, HP laboratories, Bristol UK, No. 100. Barnard S T(1983) “Interpreting perspective images”, Artificial Intelligence, Vol 21, pp.435-462. Intel OpenCV Computer vision Library(C++), http://www.intel.com/research/mrl/research/opencv. 57
  • 12. International Journal on Computational Sciences & Applications (IJCSA) Vol.3, No.5, October 2013 [19] L.Jagannathan & C V Jawahar (2005) “Perspective correction methods for Camera based document Analysis”, Proceedings of the First International Workshop on Camera-based Document Analysis and Recognition (CBDAR), pp 148-154. [20] Francesco Isgro & Emanuele Trucco (1999) “On Robust Rectification for Uncalibrated Images”, Proceedings of the 10th International Conference on Image Analysis and Processing, pp 297-302. [21] Chris harris & Mike stephens(1988) “A combined corner and edge detector”, Proceedings of the Fourth Alvey Vision Conference, Manchester, Vol 15, pp 147-151. [22] Donald Hearn & Baker, Computer Graphics, PHI. [23] F Isgro E Trucco (1999) “On Projective Rectification”, Seventh International Conference on Image Processing and its Applications,Vol 1, pp.42-46. [24] C. V. Jawahar (2006) “Homography Estimation from Planar Contours”, Proceedings of the Third International Symposium on 3D Data Processing, Visualization and Transmission, pp.877-884. 58