SlideShare a Scribd company logo
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 4APR.-2015
     
1 | P a g e  
 
SINGLE‐PHASE	TO	THREE‐PHASE	DRIVE	SYSTEM	USING	
TWO	PARALLEL	SINGLE‐PHASE	RECTIFIERS	
Nazneen Choudhari
Department of Electrical Engineering,
Solapur University, Solapur, India.
Nida Shaikh
Department of Electrical Engineering,
Solapur University, Solapur, India.
ABSTRACT		
	
Now a days digital image processing is rapid emerging field with fast growing
applications in sciences and engineering technologies. Digital image processing has broad
spectrum of applications such as remote sensing, medical processing, radar, sonar,
robotics, sport field and automated processes [1-2]. Edge detection techniques are
employed for the detecting the edges of the primitive picture. Earlier some primitive
methods were used for the image processing. H. C. Andrew et.al. gave the method of
digital image restoration [3-5], A. K. Jain and et.al put forwarded the partial difference
equations and finite differences in image processing [6]. Image process, image models and
estimation regarding the edge detection has been flourished during last decade [7-9]. Most
modules in practical vision system depend, directly or indirectly, on the performance of an
edge detector and digital image processing. The edge detection process tends to simplify
the analysis of the image by drastically reducing the amount of data to be processed and at
the same time preserving the useful structural information about object boundaries. An
edge-detector is employed to detect edges, in particular boundaries of objects in images
which is very important in image processing. Since edges are regarded as primitives of
pictures. An edge is said to be occur at a point in an image, if some image attributes
changes discontinuously. Edge detection techniques are employed by many researchers
with the help of different operators.
In the present investigation edge detection process is employed for different operators and
threshold values and its images for 128 x 128 image was obtained by trial and error
method i.e. comparing the results below and above the threshold by using higher level ‘C’
language, which is a user friendly. The comparison of the obtained and the original values
of the threshold values is also studied with the percentage of errors occurred in the
processing present detection.
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 4APR.-2015
     
2 | P a g e  
 
	EDGE	‐	DETECTION				OPERATORS	
The idea underlining most edge detection techniques is the computation of local derivative
operator. The first derivative of an edge modeled in this manner is 0 in all reasons of
constant gray level. and assumes a constant value during the gray level transition. The
second derivative on the other hand is 0 in all locations, except at the onset and termination
of the gray level transition.
So it is exigent that the magnitude of the first derivative can be used to detect the presence
of the edge, while the sign of the second derivative can be used to determined whether an
edge pixel lies on the dark ( background ) or light ( object ) side of an edge.
1) GRADIENT OPERATORS :
The gradient of an image f ( x , y ) at location ( x , y ) is defined as the two dimensional
vector
G [ F ( x , y ) ] = { GX / GY} = ( df / dx) / ( df / dy)
For edge detection magnitude of this vector is generally refereed to simply as the gradient
and also denoted by
G [ f ( x , y ) ] = [ Gx2
+ Gy2
]1 / 2
equals the detection, we are interested in the magnitude of this vector, generally refereed to
simply as the gradient and also denoted by
G [ f ( x , y ) ] = | Gx | + | Gy |
The direction of gradient vector is also important quantity.
i.e.  ( x , y ) = tan -1
( Gy / Gx )
Angle is measured with respect to x axis , it is a useful tool for linking edge points that
have been detected by using the gradient.
2) SOBEL OPERATOR
Consider the window shown below
X1 X2 X3 -1 -2 -1 -1 0 1
X4 X5 X6 0 0 0 -2 0 2
X7 X8 X9 1 2 1 -1 0 1
(a) (b)
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 4APR.-2015
     
3 | P a g e  
 
(a) and (b) are masks available for Sobel operator. Component of gradient vector in the x
and y direction are
Gx = ( X7 + 2X8 + X9 ) - ( X1 + 2X2 + X3 )
Gx = ( X3 + 2X6 + X9 ) - ( X1 + 2X4 + X7 )
Gx [ ( x , y ) = | Gx | + | Gy | or G [ f ( x , y ) ]
= [ Gx2
+ Gy2
]1 / 2
In any window, we determine the gradient and compare this with a appropriate threshold.
The center of the window is detected as edge only if the gradient in the window exceeds
the threshold.
g ( x , y ) = | 255 if G [ f ( x , y )] ≥ T |
| 0 otherwise |
Using the 3 x 3 area in the computation of the gradient has an advantage over 2 x 2 area.
Since it tends to make derivative operation less sensitive to noise. Convolving these masks
with an image f (x,y) yields the gradient at all points in the image, the result often. The
Sobel mask operation is omnidirectional which means that all black-to-white and white-to-
black edge transition are highlighted, regardless of their direction in an image. Sobel
operation is more immune to image noise than laplacian operation and it provides stronger
edge discrimination.
3) ROBERT’S OPERATOR
This operator has 2 x 2 mask
-1 0 0 -1
0 1 1 0
(r1) (r2)
g =  X2
+ X2
Since it operates on small neighborhoods, this operator is very sensitive to noise.
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 4APR.-2015
     
4 | P a g e  
 
4) PREWITT OPERATOR
-1 -1 -1 -1 0 1
0 0 0 -1 0 1
1 1 1 -1 0 1
( P1 ) ( P2)
g = [ P1 + P2 ] 1/ 2
This operator is more immune to image noise provides stronger directional edge
discrimination.
5) FREI AND CHEN OPERATOR
-1 -  2 -1 -1 0 1
0 0 0 -  2 0  2
1  2 1 -1 0 1
( F1 ) ( F2)
G = [ F1 + F2 ] 1 / 2
6) KIRSCH COMPASS MASKS:
-3 -3 5 -3 5 5 5 5 5
-3 0 5 -3 0 5 -3 0 -3
-3 -3 5 -3 -3 -3 -3 -3 -3
( KO ) ( K1 ) ( K2 )
5 5 -3 5 -3 -3 -3 -3 -3
5 0 -3 5 0 -3 5 0 -3
-3 -3 -3 5 -3 -3 5 5 -3
( K3 ) ( K4 ) ( K5 )
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 4APR.-2015
     
5 | P a g e  
 
-3 -3 -3 -3 -3 -3
-3 0 -3 -3 0 5
5 5 5 -3 5 5
( K6 ) ( K7 )
7) SHIFT AND DIFFERENCE OPERATORS :
The three common shift and difference masks are
0 0 0 0 -1 0 -1 0 0
-1 1 0 0 1 0 0 1 0
0 0 0 0 0 0 0 0 0
(Vertical) ( Horizontal ) ( Diagonal )
The shift and difference operators extracts the vertical, horizontal and diagonal edges in an
image. Each pixel is subtracted from its adjacent neighboring pixel in the chosen direction.
The resulting image appears as a directional outline of the object in the original image.
This operation is directional, which means that black to white edge transmission are
highlighted only in a single direction of travel across the image. The shift and difference
operation is the most computationally efficient of all edge enhancement operations, but it
trends to accentuate noise in an image.
The shift and difference operation can produce results that are less than 0. This underflow
condition occurs when a bright pixel is subtracted from a dark pixel. In these underflow
cases, the resulting value is forced to 0. The net effect is that edges going from black to
white are brightly highlighted. Edges going from white to black are not, because the bright
value is subtracted from dark value. So the underflow condition yields a black result.
8) ISOTROPIC OPERATOR
-1 0 1 -1  2 -1
-  2 0  2 0 0 0
-1 0 1 1  2 1
( I1 ) ( I2 )
g = [ I1
2
+ I2
2
] 1 / 2
This is the gradient operator. It causes thick edges in output images.
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 4APR.-2015
     
6 | P a g e  
 
9) STOCHASTIC OPERATOR
SNR = 1 SNR = 9
0.97 0 0.97 0.776 0 -0.776
1 0 -1 1 0 -1
0.97 0 -0.97 0.776 0 -0.776
These masks are poor in presence of noise average low pass filter least square fitting
technique can yield some reduction of detrimental effects.
10) LAPLACIAN OPERATORS
Laplcian is a second order derivative operator defined as
L [ f ( x , y ) ] = d2
f / dx2
+ d2
f / dy2
This operation can be implemented by convolving the mask with an image f (x , y). Note
that the Laplacian is 0 in constant areas and on the ramp section of an edge, as expected of
a second order derivative.
The three common laplacian edge detection mask are
-1 -1 -1 0 -1 0 1 -2 1
-1 8 -1 -1 4 -1 -2 4 -2
-1 -1 -1 0 -1 0 1 -2 1
(Mask 1) (Mask 2) ( mask 3 )
The Laplacian edge detection operation extracts all the edges in an image regardless of
direction. The resulting image appears as an omidirectional outline of the objection the
original image. Constant brightness regions become black, white changing brightness
regions become highlighted.
ALGORITHMS				AND			SOFTWARE	
In the present investigation development of algorithms for operation of edge detection
mask on 128  128 image is done. Applying edge detection mask of size 3  3 and
gradient magnitude is calculated at each pixel, which is stored in two dimensional
array. The gradient magnitude at each pixel is compared with appropriate threshold
and the pixel having magnitude greater than threshold is highlighted and other
pixels are made off in order to get the edge detected.
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 4APR.-2015
     
7 | P a g e  
 
PIXEL GROUP PROCESSING
The edge detection masks considered here is implemented through a process called
convolution, which is used to calculate what is going on with the pixel brightness
around the pixel being processed. It is a mathematical method used in signal
processing and analysis.
Each output pixels brightness is dependent on a group of input pixels surrounding
the pixel being processed. Weighted average of input pixel and its immediate
neighbours are used to calculate the output pixel brightness value called mask and the
array of 3  3 mask convolution coefficient is given below.
a b c
d e f
g h I
Every pixels in the input image is evaluated with its eight neighbours using this mask to
produce an output pixel value which is shown in Fig. 1.
a b C
d e F
g h I
Fig.1 Convolution mask
Fig. 1 The spatial convolution process for the Pixel at location I ( x , y ) creating output
Pixel at O ( x , y )
aI ( x - 1, y - 1 )+ bI ( x, y - 1 )
+ cI ( x + 1, y - 1 ) dI ( x - I , y )
+ eI ( x, y ) + fI ( x + 1, y ) + gI ( x - 1, y - 1 )
+ hI ( x, y + 1 ) + iI ( x + 1, y +1 )
= Output pixel
The mask is placed over an input pixel and its eight neighbours are multiplied by their
respective convolution coefficient and the multiplication’s are summed. The result is
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 4APR.-2015
     
8 | P a g e  
 
placed in the output image at the same centre pixel location. This process occurs pixel by
pixel for each pixel in the input image. The equation for the convolution process is
0 ( x , y ) = aI ( x - 1, y - 1 ) + bI ( x, y - 1 )
+ cI( x + 1, y - 1 ) + dI ( x - I , y )
+ eI( x, y ) + fI ( x + 1, y ) + gI ( x- , y - 1)
+ hI ( x, y + 1 ) + iI ( x + 1, y +1 )
In the case of a 128  128 line image the edge detection mask operation requires the
pixel by pixel process to occur 128  128 = 16384 times. Each process requires nine
multiplications and nine. Additions per input image pixel
ALGORITHM		
Steps required in edge detection mask operation of 128 x 128 image are-
1. Open the image binary coded data file.
2. Read the data from the image file and store it into a two dimensional array for
processing.
3. Display the original image on screen.
4. Operate the mask on the input image as stated in previous article pixel group processing
operation and calculate value at each pixel.
5. Store value of each pixels in output two dimensional array
6. Display the image pixels stored in output array by appropriate threshold value of get
edge detected image
SOFTWARE		PACKAGE	
Edge detection software is developed in friendly package through C language. In this
menu operated package, original image, histogram of the image and results of different
edge-detection masks cam be seen. Threshold values for the edge detection are noted by
trial and error method for different images
NOVATEUR PUBLICATIONS
INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT]
ISSN: 2394-3696
VOLUME 2, ISSUE 4APR.-2015
     
9 | P a g e  
 
RESULTS	AND			CONCLUSION	
In the present work, pixel group processing and algorithms for operation of mask on
images of different operators are studied and the threshold results are obtained which are
shown in the table 1. Table 2 shows the original and obtained threshold values of SOBEL
operator. while fig.1 shows the histograms of original and obtained.
REFERENCES		
[1] P. Enjeti and A. Rahman, “A new single phase to three phase converter with active
input current shaping for low cost AC motor drives,” IEEE Trans. Ind. Appl., vol. 29, no.
2, pp. 806– 813, Jul./Aug. 1993.
[2] J. Itoh and K. Fujita, “Novel unity power factor circuits using zero-vector control for
singlephase input systems,” IEEE Trans. Power Electron., vol. 15, no. 1, pp. 36–43, Jan.
2000.
[3] C. B. Jacobina, M. B. de R. Correa,A.M. N. Lima, and E. R. C. da Silva, “AC motor
drive systems with a reduced switch count converter,” IEEE Trans. Ind. Appl., vol. 39, no.
5, pp. 1333–1342, Sep./Oct. 2003.
[4] R. Q. Machado, S. Buso, and J. A. Pomilio, “A line-interactive single phase to three-
phase converter system,” IEEE Trans. Power Electron., vol. 21, no. 6, pp. 1628–1636,
May 2006.
[5] O. Ojo, W. Zhiqiao, G. Dong, and S. Asuri, “High-performance speed sensorless
control of an induction motor drive using a minimalist single phase PWM converter,”
IEEE Trans. Ind. Appl., vol. 41, no. 4, pp. 996–1004, Jul./Aug. 2005.
[6] J. R. Rodr´ıguez, J. W. Dixon, J. R. Espinoza, J. Pontt, and P. Lezana, “PWM
regenerative rectifiers: State of the art,” IEEE Trans. Ind. Electron., vol. 52, no. 1, pp. 5–
22, Feb. 2005. [7] D.-C. Lee and Y.-S. Kim, “Control of single-phase-to-three-phase
AC/DC/AC PWM converters for induction motor drives,” IEEE Trans. Ind. Electron., vol.
54, no. 2, pp. 797–804, Apr. 2007.
[8] J. Guerrero, J. Vasquez, J. Matas, M. Castilla, and L. de Vicuna, “Control strategy for
flexible microgrid based on parallel line-interactive UPS systems,” IEEE Trans. Ind.
Electron., vol. 56, no. 3, pp. 726–736, Mar. 2009.
[9] L. Asiminoaei, E. Aeloiza, P. N. Enjeti, F. Blaabjerg, and G. Danfoss, “Shunt active-
powerfilter topology based on parallel interleaved inverters,” IEEE Trans. Ind. Electron.,
vol. 55, no. 3, pp. 1175–1189, Mar. 2008.
[10] T. A. Chaer, J.-P. Gaubert, L. Rambault, and M. Najjar, “Linear feedback control of a
parallel active harmonic conditioner in power systems,” IEEE Trans. Power Electron.,
vol. 24, no. 3, pp. 641–653, Mar. 2009.

More Related Content

What's hot

Digital signal and image processing FAQ
Digital signal and image processing FAQDigital signal and image processing FAQ
Digital signal and image processing FAQ
Mukesh Tekwani
 
Chapter10 image segmentation
Chapter10 image segmentationChapter10 image segmentation
Chapter10 image segmentation
asodariyabhavesh
 
Histogram equalization
Histogram equalizationHistogram equalization
Histogram equalization
11mr11mahesh
 
Lect 03 - first portion
Lect 03 - first portionLect 03 - first portion
Lect 03 - first portion
Moe Moe Myint
 
Data hiding using image interpolation
Data hiding using image interpolationData hiding using image interpolation
Data hiding using image interpolation
Vikrant Arya
 
05 histogram processing DIP
05 histogram processing DIP05 histogram processing DIP
05 histogram processing DIP
babak danyal
 
Intensity Transformation Functions of image with Matlab
Intensity Transformation Functions of image with Matlab Intensity Transformation Functions of image with Matlab
Intensity Transformation Functions of image with Matlab
Shafi Sourov
 
Comparison of Histogram Equalization Techniques for Image Enhancement of Gray...
Comparison of Histogram Equalization Techniques for Image Enhancement of Gray...Comparison of Histogram Equalization Techniques for Image Enhancement of Gray...
Comparison of Histogram Equalization Techniques for Image Enhancement of Gray...
IJMER
 
Image Acquisition and Representation
Image Acquisition and RepresentationImage Acquisition and Representation
Image Acquisition and Representation
Amnaakhaan
 
Presentation of my master thesis - Image Processing
Presentation of my master thesis - Image ProcessingPresentation of my master thesis - Image Processing
Presentation of my master thesis - Image Processing
MichaelRra
 
4.intensity transformations
4.intensity transformations4.intensity transformations
4.intensity transformationsYahya Alkhaldi
 
LAPLACE TRANSFORM SUITABILITY FOR IMAGE PROCESSING
LAPLACE TRANSFORM SUITABILITY FOR IMAGE PROCESSINGLAPLACE TRANSFORM SUITABILITY FOR IMAGE PROCESSING
LAPLACE TRANSFORM SUITABILITY FOR IMAGE PROCESSING
Priyanka Rathore
 
Histogram Equalization(Image Processing Presentation)
Histogram Equalization(Image Processing Presentation)Histogram Equalization(Image Processing Presentation)
Histogram Equalization(Image Processing Presentation)
CherryBerry2
 
SURVEY ON POLYGONAL APPROXIMATION TECHNIQUES FOR DIGITAL PLANAR CURVES
SURVEY ON POLYGONAL APPROXIMATION TECHNIQUES FOR DIGITAL PLANAR CURVESSURVEY ON POLYGONAL APPROXIMATION TECHNIQUES FOR DIGITAL PLANAR CURVES
SURVEY ON POLYGONAL APPROXIMATION TECHNIQUES FOR DIGITAL PLANAR CURVES
Zac Darcy
 
Image segmentation in Digital Image Processing
Image segmentation in Digital Image ProcessingImage segmentation in Digital Image Processing
Image segmentation in Digital Image Processing
DHIVYADEVAKI
 
ALEXANDER FRACTIONAL INTEGRAL FILTERING OF WAVELET COEFFICIENTS FOR IMAGE DEN...
ALEXANDER FRACTIONAL INTEGRAL FILTERING OF WAVELET COEFFICIENTS FOR IMAGE DEN...ALEXANDER FRACTIONAL INTEGRAL FILTERING OF WAVELET COEFFICIENTS FOR IMAGE DEN...
ALEXANDER FRACTIONAL INTEGRAL FILTERING OF WAVELET COEFFICIENTS FOR IMAGE DEN...
sipij
 
Image restoration and reconstruction
Image restoration and reconstructionImage restoration and reconstruction

What's hot (20)

Histogram processing
Histogram processingHistogram processing
Histogram processing
 
Digital signal and image processing FAQ
Digital signal and image processing FAQDigital signal and image processing FAQ
Digital signal and image processing FAQ
 
Chapter10 image segmentation
Chapter10 image segmentationChapter10 image segmentation
Chapter10 image segmentation
 
Histogram equalization
Histogram equalizationHistogram equalization
Histogram equalization
 
Lect 03 - first portion
Lect 03 - first portionLect 03 - first portion
Lect 03 - first portion
 
Data hiding using image interpolation
Data hiding using image interpolationData hiding using image interpolation
Data hiding using image interpolation
 
05 histogram processing DIP
05 histogram processing DIP05 histogram processing DIP
05 histogram processing DIP
 
Intensity Transformation Functions of image with Matlab
Intensity Transformation Functions of image with Matlab Intensity Transformation Functions of image with Matlab
Intensity Transformation Functions of image with Matlab
 
Comparison of Histogram Equalization Techniques for Image Enhancement of Gray...
Comparison of Histogram Equalization Techniques for Image Enhancement of Gray...Comparison of Histogram Equalization Techniques for Image Enhancement of Gray...
Comparison of Histogram Equalization Techniques for Image Enhancement of Gray...
 
Image Acquisition and Representation
Image Acquisition and RepresentationImage Acquisition and Representation
Image Acquisition and Representation
 
Presentation of my master thesis - Image Processing
Presentation of my master thesis - Image ProcessingPresentation of my master thesis - Image Processing
Presentation of my master thesis - Image Processing
 
4.intensity transformations
4.intensity transformations4.intensity transformations
4.intensity transformations
 
LAPLACE TRANSFORM SUITABILITY FOR IMAGE PROCESSING
LAPLACE TRANSFORM SUITABILITY FOR IMAGE PROCESSINGLAPLACE TRANSFORM SUITABILITY FOR IMAGE PROCESSING
LAPLACE TRANSFORM SUITABILITY FOR IMAGE PROCESSING
 
Histogram Equalization(Image Processing Presentation)
Histogram Equalization(Image Processing Presentation)Histogram Equalization(Image Processing Presentation)
Histogram Equalization(Image Processing Presentation)
 
SURVEY ON POLYGONAL APPROXIMATION TECHNIQUES FOR DIGITAL PLANAR CURVES
SURVEY ON POLYGONAL APPROXIMATION TECHNIQUES FOR DIGITAL PLANAR CURVESSURVEY ON POLYGONAL APPROXIMATION TECHNIQUES FOR DIGITAL PLANAR CURVES
SURVEY ON POLYGONAL APPROXIMATION TECHNIQUES FOR DIGITAL PLANAR CURVES
 
point processing
point processingpoint processing
point processing
 
Image segmentation in Digital Image Processing
Image segmentation in Digital Image ProcessingImage segmentation in Digital Image Processing
Image segmentation in Digital Image Processing
 
ALEXANDER FRACTIONAL INTEGRAL FILTERING OF WAVELET COEFFICIENTS FOR IMAGE DEN...
ALEXANDER FRACTIONAL INTEGRAL FILTERING OF WAVELET COEFFICIENTS FOR IMAGE DEN...ALEXANDER FRACTIONAL INTEGRAL FILTERING OF WAVELET COEFFICIENTS FOR IMAGE DEN...
ALEXANDER FRACTIONAL INTEGRAL FILTERING OF WAVELET COEFFICIENTS FOR IMAGE DEN...
 
Mathematical tools in dip
Mathematical tools in dipMathematical tools in dip
Mathematical tools in dip
 
Image restoration and reconstruction
Image restoration and reconstructionImage restoration and reconstruction
Image restoration and reconstruction
 

Similar to SINGLE‐PHASE TO THREE‐PHASE DRIVE SYSTEM USING TWO PARALLEL SINGLE‐PHASE RECTIFIERS

ANALYSIS OF INTEREST POINTS OF CURVELET COEFFICIENTS CONTRIBUTIONS OF MICROS...
ANALYSIS OF INTEREST POINTS OF CURVELET  COEFFICIENTS CONTRIBUTIONS OF MICROS...ANALYSIS OF INTEREST POINTS OF CURVELET  COEFFICIENTS CONTRIBUTIONS OF MICROS...
ANALYSIS OF INTEREST POINTS OF CURVELET COEFFICIENTS CONTRIBUTIONS OF MICROS...
sipij
 
EDGE DETECTION
EDGE DETECTIONEDGE DETECTION
EDGE DETECTION
VIKAS SINGH BHADOURIA
 
DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...
DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...
DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...
ijistjournal
 
DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...
DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...
DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...
ijistjournal
 
Mm3422322236
Mm3422322236Mm3422322236
Mm3422322236
IJERA Editor
 
2007 EuRad Conference: Speech on Rough Layers (odp)
2007 EuRad Conference: Speech on Rough Layers (odp)2007 EuRad Conference: Speech on Rough Layers (odp)
2007 EuRad Conference: Speech on Rough Layers (odp)
Nicolas Pinel
 
Module-5-1_230523_171754 (1).pdf
Module-5-1_230523_171754 (1).pdfModule-5-1_230523_171754 (1).pdf
Module-5-1_230523_171754 (1).pdf
vikasmittal92
 
2007 EuRad Conference: Speech on Rough Layers (ppt)
2007 EuRad Conference: Speech on Rough Layers (ppt)2007 EuRad Conference: Speech on Rough Layers (ppt)
2007 EuRad Conference: Speech on Rough Layers (ppt)Nicolas Pinel
 
Implementation of Noise Removal methods of images using discrete wavelet tran...
Implementation of Noise Removal methods of images using discrete wavelet tran...Implementation of Noise Removal methods of images using discrete wavelet tran...
Implementation of Noise Removal methods of images using discrete wavelet tran...
IRJET Journal
 
Implementation of Distributed Canny Edge Detection Technique
Implementation of Distributed Canny Edge Detection TechniqueImplementation of Distributed Canny Edge Detection Technique
Implementation of Distributed Canny Edge Detection Technique
IRJET Journal
 
Ex4301908912
Ex4301908912Ex4301908912
Ex4301908912
IJERA Editor
 
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
IRJET Journal
 
An Efficient Algorithm for Edge Detection of Corroded Surface
An Efficient Algorithm for Edge Detection of Corroded SurfaceAn Efficient Algorithm for Edge Detection of Corroded Surface
An Efficient Algorithm for Edge Detection of Corroded Surface
IJERA Editor
 
An Efficient Algorithm for Edge Detection of Corroded Surface
An Efficient Algorithm for Edge Detection of Corroded SurfaceAn Efficient Algorithm for Edge Detection of Corroded Surface
An Efficient Algorithm for Edge Detection of Corroded Surface
IJERA Editor
 
Intelligent Auto Horn System Using Artificial Intelligence
Intelligent Auto Horn System Using Artificial IntelligenceIntelligent Auto Horn System Using Artificial Intelligence
Intelligent Auto Horn System Using Artificial Intelligence
IRJET Journal
 
Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251Editor IJARCET
 
Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251Editor IJARCET
 
Comparative Analysis of Common Edge Detection Algorithms using Pre-processing...
Comparative Analysis of Common Edge Detection Algorithms using Pre-processing...Comparative Analysis of Common Edge Detection Algorithms using Pre-processing...
Comparative Analysis of Common Edge Detection Algorithms using Pre-processing...
IJECEIAES
 
A new approach for generalised unsharp masking alogorithm
A new approach for generalised unsharp masking alogorithmA new approach for generalised unsharp masking alogorithm
A new approach for generalised unsharp masking alogorithm
eSAT Journals
 
New approach for generalised unsharp masking alogorithm
New approach for generalised unsharp masking alogorithmNew approach for generalised unsharp masking alogorithm
New approach for generalised unsharp masking alogorithm
eSAT Publishing House
 

Similar to SINGLE‐PHASE TO THREE‐PHASE DRIVE SYSTEM USING TWO PARALLEL SINGLE‐PHASE RECTIFIERS (20)

ANALYSIS OF INTEREST POINTS OF CURVELET COEFFICIENTS CONTRIBUTIONS OF MICROS...
ANALYSIS OF INTEREST POINTS OF CURVELET  COEFFICIENTS CONTRIBUTIONS OF MICROS...ANALYSIS OF INTEREST POINTS OF CURVELET  COEFFICIENTS CONTRIBUTIONS OF MICROS...
ANALYSIS OF INTEREST POINTS OF CURVELET COEFFICIENTS CONTRIBUTIONS OF MICROS...
 
EDGE DETECTION
EDGE DETECTIONEDGE DETECTION
EDGE DETECTION
 
DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...
DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...
DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...
 
DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...
DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...
DESPECKLING OF SAR IMAGES BY OPTIMIZING AVERAGED POWER SPECTRAL VALUE IN CURV...
 
Mm3422322236
Mm3422322236Mm3422322236
Mm3422322236
 
2007 EuRad Conference: Speech on Rough Layers (odp)
2007 EuRad Conference: Speech on Rough Layers (odp)2007 EuRad Conference: Speech on Rough Layers (odp)
2007 EuRad Conference: Speech on Rough Layers (odp)
 
Module-5-1_230523_171754 (1).pdf
Module-5-1_230523_171754 (1).pdfModule-5-1_230523_171754 (1).pdf
Module-5-1_230523_171754 (1).pdf
 
2007 EuRad Conference: Speech on Rough Layers (ppt)
2007 EuRad Conference: Speech on Rough Layers (ppt)2007 EuRad Conference: Speech on Rough Layers (ppt)
2007 EuRad Conference: Speech on Rough Layers (ppt)
 
Implementation of Noise Removal methods of images using discrete wavelet tran...
Implementation of Noise Removal methods of images using discrete wavelet tran...Implementation of Noise Removal methods of images using discrete wavelet tran...
Implementation of Noise Removal methods of images using discrete wavelet tran...
 
Implementation of Distributed Canny Edge Detection Technique
Implementation of Distributed Canny Edge Detection TechniqueImplementation of Distributed Canny Edge Detection Technique
Implementation of Distributed Canny Edge Detection Technique
 
Ex4301908912
Ex4301908912Ex4301908912
Ex4301908912
 
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
 
An Efficient Algorithm for Edge Detection of Corroded Surface
An Efficient Algorithm for Edge Detection of Corroded SurfaceAn Efficient Algorithm for Edge Detection of Corroded Surface
An Efficient Algorithm for Edge Detection of Corroded Surface
 
An Efficient Algorithm for Edge Detection of Corroded Surface
An Efficient Algorithm for Edge Detection of Corroded SurfaceAn Efficient Algorithm for Edge Detection of Corroded Surface
An Efficient Algorithm for Edge Detection of Corroded Surface
 
Intelligent Auto Horn System Using Artificial Intelligence
Intelligent Auto Horn System Using Artificial IntelligenceIntelligent Auto Horn System Using Artificial Intelligence
Intelligent Auto Horn System Using Artificial Intelligence
 
Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251
 
Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251
 
Comparative Analysis of Common Edge Detection Algorithms using Pre-processing...
Comparative Analysis of Common Edge Detection Algorithms using Pre-processing...Comparative Analysis of Common Edge Detection Algorithms using Pre-processing...
Comparative Analysis of Common Edge Detection Algorithms using Pre-processing...
 
A new approach for generalised unsharp masking alogorithm
A new approach for generalised unsharp masking alogorithmA new approach for generalised unsharp masking alogorithm
A new approach for generalised unsharp masking alogorithm
 
New approach for generalised unsharp masking alogorithm
New approach for generalised unsharp masking alogorithmNew approach for generalised unsharp masking alogorithm
New approach for generalised unsharp masking alogorithm
 

More from ijiert bestjournal

CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP
 CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP
CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP
ijiert bestjournal
 
A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...
A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...
A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...
ijiert bestjournal
 
COMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAF
COMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAFCOMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAF
COMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAF
ijiert bestjournal
 
POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE
 POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE
POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE
ijiert bestjournal
 
FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY
FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY
FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY
ijiert bestjournal
 
REVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAIN
REVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAINREVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAIN
REVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAIN
ijiert bestjournal
 
ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...
ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...
ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...
ijiert bestjournal
 
SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...
SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...
SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...
ijiert bestjournal
 
EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...
EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...
EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...
ijiert bestjournal
 
STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR
STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR
STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR
ijiert bestjournal
 
DESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFT
DESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFTDESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFT
DESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFT
ijiert bestjournal
 
ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...
ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...
ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...
ijiert bestjournal
 
HEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENT
HEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENTHEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENT
HEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENT
ijiert bestjournal
 
MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH
MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH
MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH
ijiert bestjournal
 
IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW
IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW
IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW
ijiert bestjournal
 
DESIGN OF WELDING FIXTURES AND POSITIONERS
DESIGN OF WELDING FIXTURES AND POSITIONERSDESIGN OF WELDING FIXTURES AND POSITIONERS
DESIGN OF WELDING FIXTURES AND POSITIONERS
ijiert bestjournal
 
ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...
ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...
ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...
ijiert bestjournal
 
REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...
REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...
REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...
ijiert bestjournal
 
PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...
PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...
PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...
ijiert bestjournal
 
MAGNETIC ABRASIVE FINISHING
MAGNETIC ABRASIVE FINISHINGMAGNETIC ABRASIVE FINISHING
MAGNETIC ABRASIVE FINISHING
ijiert bestjournal
 

More from ijiert bestjournal (20)

CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP
 CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP
CRACKS IN STEEL CASTING FOR VOLUTE CASING OF A PUMP
 
A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...
A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...
A COMPARATIVE STUDY OF DESIGN OF SIMPLE SPUR GEAR TRAIN AND HELICAL GEAR TRAI...
 
COMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAF
COMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAFCOMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAF
COMPARATIVE ANALYSIS OF CONVENTIONAL LEAF SPRING AND COMPOSITE LEAF
 
POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE
 POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE
POWER GENERATION BY DIFFUSER AUGMENTED WIND TURBINE
 
FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY
FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY
FINITE ELEMENT ANALYSIS OF CONNECTING ROD OF MG-ALLOY
 
REVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAIN
REVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAINREVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAIN
REVIEW ON CRITICAL SPEED IMPROVEMENT IN SINGLE CYLINDER ENGINE VALVE TRAIN
 
ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...
ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...
ENERGY CONVERSION PHENOMENON IN IMPLEMENTATION OF WATER LIFTING BY USING PEND...
 
SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...
SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...
SCUDERI SPLIT CYCLE ENGINE: REVOLUTIONARY TECHNOLOGY & EVOLUTIONARY DESIGN RE...
 
EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...
EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...
EXPERIMENTAL EVALUATION OF TEMPERATURE DISTRIBUTION IN JOURNAL BEARING OPERAT...
 
STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR
STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR
STUDY OF SOLAR THERMAL CAVITY RECEIVER FOR PARABOLIC CONCENTRATING COLLECTOR
 
DESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFT
DESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFTDESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFT
DESIGN, OPTIMIZATION AND FINITE ELEMENT ANALYSIS OF CRANKSHAFT
 
ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...
ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...
ELECTRO CHEMICAL MACHINING AND ELECTRICAL DISCHARGE MACHINING PROCESSES MICRO...
 
HEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENT
HEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENTHEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENT
HEAT TRANSFER ENHANCEMENT BY USING NANOFLUID JET IMPINGEMENT
 
MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH
MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH
MODIFICATION AND OPTIMIZATION IN STEEL SANDWICH PANELS USING ANSYS WORKBENCH
 
IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW
IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW
IMPACT ANALYSIS OF ALUMINUM HONEYCOMB SANDWICH PANEL BUMPER BEAM: A REVIEW
 
DESIGN OF WELDING FIXTURES AND POSITIONERS
DESIGN OF WELDING FIXTURES AND POSITIONERSDESIGN OF WELDING FIXTURES AND POSITIONERS
DESIGN OF WELDING FIXTURES AND POSITIONERS
 
ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...
ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...
ADVANCED TRANSIENT THERMAL AND STRUCTURAL ANALYSIS OF DISC BRAKE BY USING ANS...
 
REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...
REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...
REVIEW ON MECHANICAL PROPERTIES OF NON-ASBESTOS COMPOSITE MATERIAL USED IN BR...
 
PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...
PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...
PERFORMANCE EVALUATION OF TRIBOLOGICAL PROPERTIES OF COTTON SEED OIL FOR MULT...
 
MAGNETIC ABRASIVE FINISHING
MAGNETIC ABRASIVE FINISHINGMAGNETIC ABRASIVE FINISHING
MAGNETIC ABRASIVE FINISHING
 

Recently uploaded

Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
SupreethSP4
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
AhmedHussein950959
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
Jayaprasanna4
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Dr.Costas Sachpazis
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
AJAYKUMARPUND1
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
ydteq
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
Pipe Restoration Solutions
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
Vijay Dialani, PhD
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
R&R Consult
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
ongomchris
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
Jayaprasanna4
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
manasideore6
 
AP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specificAP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specific
BrazilAccount1
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
AmarGB2
 

Recently uploaded (20)

Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
 
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
 
AP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specificAP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specific
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
 

SINGLE‐PHASE TO THREE‐PHASE DRIVE SYSTEM USING TWO PARALLEL SINGLE‐PHASE RECTIFIERS

  • 1. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 4APR.-2015       1 | P a g e     SINGLE‐PHASE TO THREE‐PHASE DRIVE SYSTEM USING TWO PARALLEL SINGLE‐PHASE RECTIFIERS Nazneen Choudhari Department of Electrical Engineering, Solapur University, Solapur, India. Nida Shaikh Department of Electrical Engineering, Solapur University, Solapur, India. ABSTRACT Now a days digital image processing is rapid emerging field with fast growing applications in sciences and engineering technologies. Digital image processing has broad spectrum of applications such as remote sensing, medical processing, radar, sonar, robotics, sport field and automated processes [1-2]. Edge detection techniques are employed for the detecting the edges of the primitive picture. Earlier some primitive methods were used for the image processing. H. C. Andrew et.al. gave the method of digital image restoration [3-5], A. K. Jain and et.al put forwarded the partial difference equations and finite differences in image processing [6]. Image process, image models and estimation regarding the edge detection has been flourished during last decade [7-9]. Most modules in practical vision system depend, directly or indirectly, on the performance of an edge detector and digital image processing. The edge detection process tends to simplify the analysis of the image by drastically reducing the amount of data to be processed and at the same time preserving the useful structural information about object boundaries. An edge-detector is employed to detect edges, in particular boundaries of objects in images which is very important in image processing. Since edges are regarded as primitives of pictures. An edge is said to be occur at a point in an image, if some image attributes changes discontinuously. Edge detection techniques are employed by many researchers with the help of different operators. In the present investigation edge detection process is employed for different operators and threshold values and its images for 128 x 128 image was obtained by trial and error method i.e. comparing the results below and above the threshold by using higher level ‘C’ language, which is a user friendly. The comparison of the obtained and the original values of the threshold values is also studied with the percentage of errors occurred in the processing present detection.
  • 2. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 4APR.-2015       2 | P a g e     EDGE ‐ DETECTION OPERATORS The idea underlining most edge detection techniques is the computation of local derivative operator. The first derivative of an edge modeled in this manner is 0 in all reasons of constant gray level. and assumes a constant value during the gray level transition. The second derivative on the other hand is 0 in all locations, except at the onset and termination of the gray level transition. So it is exigent that the magnitude of the first derivative can be used to detect the presence of the edge, while the sign of the second derivative can be used to determined whether an edge pixel lies on the dark ( background ) or light ( object ) side of an edge. 1) GRADIENT OPERATORS : The gradient of an image f ( x , y ) at location ( x , y ) is defined as the two dimensional vector G [ F ( x , y ) ] = { GX / GY} = ( df / dx) / ( df / dy) For edge detection magnitude of this vector is generally refereed to simply as the gradient and also denoted by G [ f ( x , y ) ] = [ Gx2 + Gy2 ]1 / 2 equals the detection, we are interested in the magnitude of this vector, generally refereed to simply as the gradient and also denoted by G [ f ( x , y ) ] = | Gx | + | Gy | The direction of gradient vector is also important quantity. i.e.  ( x , y ) = tan -1 ( Gy / Gx ) Angle is measured with respect to x axis , it is a useful tool for linking edge points that have been detected by using the gradient. 2) SOBEL OPERATOR Consider the window shown below X1 X2 X3 -1 -2 -1 -1 0 1 X4 X5 X6 0 0 0 -2 0 2 X7 X8 X9 1 2 1 -1 0 1 (a) (b)
  • 3. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 4APR.-2015       3 | P a g e     (a) and (b) are masks available for Sobel operator. Component of gradient vector in the x and y direction are Gx = ( X7 + 2X8 + X9 ) - ( X1 + 2X2 + X3 ) Gx = ( X3 + 2X6 + X9 ) - ( X1 + 2X4 + X7 ) Gx [ ( x , y ) = | Gx | + | Gy | or G [ f ( x , y ) ] = [ Gx2 + Gy2 ]1 / 2 In any window, we determine the gradient and compare this with a appropriate threshold. The center of the window is detected as edge only if the gradient in the window exceeds the threshold. g ( x , y ) = | 255 if G [ f ( x , y )] ≥ T | | 0 otherwise | Using the 3 x 3 area in the computation of the gradient has an advantage over 2 x 2 area. Since it tends to make derivative operation less sensitive to noise. Convolving these masks with an image f (x,y) yields the gradient at all points in the image, the result often. The Sobel mask operation is omnidirectional which means that all black-to-white and white-to- black edge transition are highlighted, regardless of their direction in an image. Sobel operation is more immune to image noise than laplacian operation and it provides stronger edge discrimination. 3) ROBERT’S OPERATOR This operator has 2 x 2 mask -1 0 0 -1 0 1 1 0 (r1) (r2) g =  X2 + X2 Since it operates on small neighborhoods, this operator is very sensitive to noise.
  • 4. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 4APR.-2015       4 | P a g e     4) PREWITT OPERATOR -1 -1 -1 -1 0 1 0 0 0 -1 0 1 1 1 1 -1 0 1 ( P1 ) ( P2) g = [ P1 + P2 ] 1/ 2 This operator is more immune to image noise provides stronger directional edge discrimination. 5) FREI AND CHEN OPERATOR -1 -  2 -1 -1 0 1 0 0 0 -  2 0  2 1  2 1 -1 0 1 ( F1 ) ( F2) G = [ F1 + F2 ] 1 / 2 6) KIRSCH COMPASS MASKS: -3 -3 5 -3 5 5 5 5 5 -3 0 5 -3 0 5 -3 0 -3 -3 -3 5 -3 -3 -3 -3 -3 -3 ( KO ) ( K1 ) ( K2 ) 5 5 -3 5 -3 -3 -3 -3 -3 5 0 -3 5 0 -3 5 0 -3 -3 -3 -3 5 -3 -3 5 5 -3 ( K3 ) ( K4 ) ( K5 )
  • 5. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 4APR.-2015       5 | P a g e     -3 -3 -3 -3 -3 -3 -3 0 -3 -3 0 5 5 5 5 -3 5 5 ( K6 ) ( K7 ) 7) SHIFT AND DIFFERENCE OPERATORS : The three common shift and difference masks are 0 0 0 0 -1 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 (Vertical) ( Horizontal ) ( Diagonal ) The shift and difference operators extracts the vertical, horizontal and diagonal edges in an image. Each pixel is subtracted from its adjacent neighboring pixel in the chosen direction. The resulting image appears as a directional outline of the object in the original image. This operation is directional, which means that black to white edge transmission are highlighted only in a single direction of travel across the image. The shift and difference operation is the most computationally efficient of all edge enhancement operations, but it trends to accentuate noise in an image. The shift and difference operation can produce results that are less than 0. This underflow condition occurs when a bright pixel is subtracted from a dark pixel. In these underflow cases, the resulting value is forced to 0. The net effect is that edges going from black to white are brightly highlighted. Edges going from white to black are not, because the bright value is subtracted from dark value. So the underflow condition yields a black result. 8) ISOTROPIC OPERATOR -1 0 1 -1  2 -1 -  2 0  2 0 0 0 -1 0 1 1  2 1 ( I1 ) ( I2 ) g = [ I1 2 + I2 2 ] 1 / 2 This is the gradient operator. It causes thick edges in output images.
  • 6. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 4APR.-2015       6 | P a g e     9) STOCHASTIC OPERATOR SNR = 1 SNR = 9 0.97 0 0.97 0.776 0 -0.776 1 0 -1 1 0 -1 0.97 0 -0.97 0.776 0 -0.776 These masks are poor in presence of noise average low pass filter least square fitting technique can yield some reduction of detrimental effects. 10) LAPLACIAN OPERATORS Laplcian is a second order derivative operator defined as L [ f ( x , y ) ] = d2 f / dx2 + d2 f / dy2 This operation can be implemented by convolving the mask with an image f (x , y). Note that the Laplacian is 0 in constant areas and on the ramp section of an edge, as expected of a second order derivative. The three common laplacian edge detection mask are -1 -1 -1 0 -1 0 1 -2 1 -1 8 -1 -1 4 -1 -2 4 -2 -1 -1 -1 0 -1 0 1 -2 1 (Mask 1) (Mask 2) ( mask 3 ) The Laplacian edge detection operation extracts all the edges in an image regardless of direction. The resulting image appears as an omidirectional outline of the objection the original image. Constant brightness regions become black, white changing brightness regions become highlighted. ALGORITHMS AND SOFTWARE In the present investigation development of algorithms for operation of edge detection mask on 128  128 image is done. Applying edge detection mask of size 3  3 and gradient magnitude is calculated at each pixel, which is stored in two dimensional array. The gradient magnitude at each pixel is compared with appropriate threshold and the pixel having magnitude greater than threshold is highlighted and other pixels are made off in order to get the edge detected.
  • 7. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 4APR.-2015       7 | P a g e     PIXEL GROUP PROCESSING The edge detection masks considered here is implemented through a process called convolution, which is used to calculate what is going on with the pixel brightness around the pixel being processed. It is a mathematical method used in signal processing and analysis. Each output pixels brightness is dependent on a group of input pixels surrounding the pixel being processed. Weighted average of input pixel and its immediate neighbours are used to calculate the output pixel brightness value called mask and the array of 3  3 mask convolution coefficient is given below. a b c d e f g h I Every pixels in the input image is evaluated with its eight neighbours using this mask to produce an output pixel value which is shown in Fig. 1. a b C d e F g h I Fig.1 Convolution mask Fig. 1 The spatial convolution process for the Pixel at location I ( x , y ) creating output Pixel at O ( x , y ) aI ( x - 1, y - 1 )+ bI ( x, y - 1 ) + cI ( x + 1, y - 1 ) dI ( x - I , y ) + eI ( x, y ) + fI ( x + 1, y ) + gI ( x - 1, y - 1 ) + hI ( x, y + 1 ) + iI ( x + 1, y +1 ) = Output pixel The mask is placed over an input pixel and its eight neighbours are multiplied by their respective convolution coefficient and the multiplication’s are summed. The result is
  • 8. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 4APR.-2015       8 | P a g e     placed in the output image at the same centre pixel location. This process occurs pixel by pixel for each pixel in the input image. The equation for the convolution process is 0 ( x , y ) = aI ( x - 1, y - 1 ) + bI ( x, y - 1 ) + cI( x + 1, y - 1 ) + dI ( x - I , y ) + eI( x, y ) + fI ( x + 1, y ) + gI ( x- , y - 1) + hI ( x, y + 1 ) + iI ( x + 1, y +1 ) In the case of a 128  128 line image the edge detection mask operation requires the pixel by pixel process to occur 128  128 = 16384 times. Each process requires nine multiplications and nine. Additions per input image pixel ALGORITHM Steps required in edge detection mask operation of 128 x 128 image are- 1. Open the image binary coded data file. 2. Read the data from the image file and store it into a two dimensional array for processing. 3. Display the original image on screen. 4. Operate the mask on the input image as stated in previous article pixel group processing operation and calculate value at each pixel. 5. Store value of each pixels in output two dimensional array 6. Display the image pixels stored in output array by appropriate threshold value of get edge detected image SOFTWARE PACKAGE Edge detection software is developed in friendly package through C language. In this menu operated package, original image, histogram of the image and results of different edge-detection masks cam be seen. Threshold values for the edge detection are noted by trial and error method for different images
  • 9. NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: 2394-3696 VOLUME 2, ISSUE 4APR.-2015       9 | P a g e     RESULTS AND CONCLUSION In the present work, pixel group processing and algorithms for operation of mask on images of different operators are studied and the threshold results are obtained which are shown in the table 1. Table 2 shows the original and obtained threshold values of SOBEL operator. while fig.1 shows the histograms of original and obtained. REFERENCES [1] P. Enjeti and A. Rahman, “A new single phase to three phase converter with active input current shaping for low cost AC motor drives,” IEEE Trans. Ind. Appl., vol. 29, no. 2, pp. 806– 813, Jul./Aug. 1993. [2] J. Itoh and K. Fujita, “Novel unity power factor circuits using zero-vector control for singlephase input systems,” IEEE Trans. Power Electron., vol. 15, no. 1, pp. 36–43, Jan. 2000. [3] C. B. Jacobina, M. B. de R. Correa,A.M. N. Lima, and E. R. C. da Silva, “AC motor drive systems with a reduced switch count converter,” IEEE Trans. Ind. Appl., vol. 39, no. 5, pp. 1333–1342, Sep./Oct. 2003. [4] R. Q. Machado, S. Buso, and J. A. Pomilio, “A line-interactive single phase to three- phase converter system,” IEEE Trans. Power Electron., vol. 21, no. 6, pp. 1628–1636, May 2006. [5] O. Ojo, W. Zhiqiao, G. Dong, and S. Asuri, “High-performance speed sensorless control of an induction motor drive using a minimalist single phase PWM converter,” IEEE Trans. Ind. Appl., vol. 41, no. 4, pp. 996–1004, Jul./Aug. 2005. [6] J. R. Rodr´ıguez, J. W. Dixon, J. R. Espinoza, J. Pontt, and P. Lezana, “PWM regenerative rectifiers: State of the art,” IEEE Trans. Ind. Electron., vol. 52, no. 1, pp. 5– 22, Feb. 2005. [7] D.-C. Lee and Y.-S. Kim, “Control of single-phase-to-three-phase AC/DC/AC PWM converters for induction motor drives,” IEEE Trans. Ind. Electron., vol. 54, no. 2, pp. 797–804, Apr. 2007. [8] J. Guerrero, J. Vasquez, J. Matas, M. Castilla, and L. de Vicuna, “Control strategy for flexible microgrid based on parallel line-interactive UPS systems,” IEEE Trans. Ind. Electron., vol. 56, no. 3, pp. 726–736, Mar. 2009. [9] L. Asiminoaei, E. Aeloiza, P. N. Enjeti, F. Blaabjerg, and G. Danfoss, “Shunt active- powerfilter topology based on parallel interleaved inverters,” IEEE Trans. Ind. Electron., vol. 55, no. 3, pp. 1175–1189, Mar. 2008. [10] T. A. Chaer, J.-P. Gaubert, L. Rambault, and M. Najjar, “Linear feedback control of a parallel active harmonic conditioner in power systems,” IEEE Trans. Power Electron., vol. 24, no. 3, pp. 641–653, Mar. 2009.