Two-Dimensional DFT (2D DFT) क्या है? | 2D Fourier Transform हिंदी में


Two-Dimensional Discrete Fourier Transform (2D DFT) क्या है?

2D DFT एक mathematical tool है जिसका उपयोग दो-आयामी (2D) signals या images को frequency domain में analyze करने के लिए किया जाता है। यह Discrete Fourier Transform (DFT) का extension होता है, लेकिन दो dimensions में लागू होता है।


2D DFT का उपयोग कहाँ होता है?

  1. Image processing (जैसे filtering, compression, enhancement)
  2. Medical imaging (MRI, CT scan image analysis)
  3. Pattern recognition और computer vision

2D DFT का गणितीय निरूपण (Mathematical Representation)

Forward 2D DFT:

X[k,l] = Σm=0M-1 Σn=0N-1 x[m,n] · e-j2π(km/M + ln/N)

Inverse 2D DFT:

x[m,n] = (1/MN) · Σk=0M-1 Σl=0N-1 X[k,l] · ej2π(km/M + ln/N)

यहाँ:

  • x[m,n] = input 2D signal (image या matrix)
  • X[k,l] = frequency domain representation
  • M, N = row और column की संख्या

2D DFT की विशेषताएँ (Key Properties)

  1. Linearity: दो signals का जोड़ frequency domain में भी जुड़ेगा।
  2. Periodicity: X[k,l] periodic होती है दोनों directions में।
  3. Symmetry: Real images के लिए magnitude symmetric होता है।
  4. Separability: 2D DFT को row-wise और फिर column-wise apply किया जा सकता है।

उदाहरण (Example)

यदि कोई 2x2 image matrix है:

x = | 1 2 |
    | 3 4 |

तो 2D DFT की मदद से हम इसका frequency domain representation निकाल सकते हैं।


निष्कर्ष (Conclusion)

2D DFT image signals को frequency domain में analyze करने के लिए एक शक्तिशाली टूल है। यह डिजिटल इमेज प्रोसेसिंग में बहुत महत्वपूर्ण भूमिका निभाता है।

Related Post

Comments

Comments