8

मैं पाइथन में एक छवि के लिए एक अलग कोसाइन ट्रांसफॉर्म (साथ ही उलटा) लागू करना चाहता हूं और मुझे आश्चर्य है कि यह करने का तरीका और कैसे है। मैंने पीआईएल और ओपनसीवी को देखा है लेकिन मुझे अभी भी समझ में नहीं आता कि इसका उपयोग कैसे किया जाए।मैं पायथन में किसी छवि को डीसीटी कैसे लागू करूं?

+0

पीआईएल और ओपनसीवी के बारे में बिल्कुल निश्चित नहीं है, लेकिन डीसीटी और उलटा डीसीटी दोनों लागू करना मूल रूप से संबंधित परिवर्तन मैट्रिक्स द्वारा स्रोत ब्लॉक गुणा कर रहा है। – agibalov

उत्तर

7

OpenCV से:

 
DCT(src, dst, flags) → None 

    Performs a forward or inverse Discrete Cosine transform of a 1D or 2D 
    floating-point array. 

    Parameters: 

     src (CvArr) – Source array, real 1D or 2D array 
     dst (CvArr) – Destination array of the same size and same type as the source 
     flags (int) – 

     Transformation flags, a combination of the following values 
      CV_DXT_FORWARD do a forward 1D or 2D transform. 
      CV_DXT_INVERSE do an inverse 1D or 2D transform. 
      CV_DXT_ROWS do a forward or inverse transform of every individual row of 
the input matrix. This flag allows user to transform multiple vectors simultaneously 
and can be used to decrease the overhead (which is sometimes several times larger 
than the processing itself), to do 3D and higher-dimensional transforms and so forth. 

Here is an example of it being used

डीसीटी scipy.fftpack में भी उपलब्ध है।

+0

क्या आप इसका उपयोग प्रदर्शित करने के लिए एक बुनियादी प्रोग्राम प्रदान कर सकते हैं? पाइथन शिकायत करता है कि मेरा गंतव्य सरणी खाली है। – jmnwong

+0

क्या आपने गंतव्य सरणी को सही आकार के रूप में दोबारा बदल दिया था? – agf

+0

अनिवार्य रूप से मैंने जो किया है वह इनपुट छवि का आकार बदलने के लिए पीआईएल का उपयोग करता है और फिर स्रोत बनाने के साथ-साथ एक खाली गंतव्य सरणी बनाने के लिए cv.CreateImageHeader का उपयोग करता है। सुनिश्चित नहीं है कि यह सही है या नहीं। – jmnwong